Info
Welcome to the generated API reference. Get Postman Collection
general
Display the installer welcome page.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/install"
const url = new URL("http://admin.zaherdairy.test/install");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (302):
null
HTTP Request
GET install
Display the Environment menu page.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/install/environment"
const url = new URL("http://admin.zaherdairy.test/install/environment");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (302):
null
HTTP Request
GET install/environment
Display the Environment page.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/install/environment/wizard"
const url = new URL("http://admin.zaherdairy.test/install/environment/wizard");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (302):
null
HTTP Request
GET install/environment/wizard
Processes the newly saved environment configuration (Form Wizard).
Example request:
curl -X POST "http://admin.zaherdairy.test/install/environment/saveWizard"
const url = new URL("http://admin.zaherdairy.test/install/environment/saveWizard");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST install/environment/saveWizard
Display the Environment page.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/install/environment/classic"
const url = new URL("http://admin.zaherdairy.test/install/environment/classic");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (302):
null
HTTP Request
GET install/environment/classic
Processes the newly saved environment configuration (Classic).
Example request:
curl -X POST "http://admin.zaherdairy.test/install/environment/saveClassic"
const url = new URL("http://admin.zaherdairy.test/install/environment/saveClassic");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST install/environment/saveClassic
Display the requirements page.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/install/requirements"
const url = new URL("http://admin.zaherdairy.test/install/requirements");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (302):
null
HTTP Request
GET install/requirements
Display the permissions check page.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/install/permissions"
const url = new URL("http://admin.zaherdairy.test/install/permissions");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (302):
null
HTTP Request
GET install/permissions
Migrate and seed the database.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/install/database"
const url = new URL("http://admin.zaherdairy.test/install/database");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (302):
null
HTTP Request
GET install/database
Update installed file and display finished view.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/install/final"
const url = new URL("http://admin.zaherdairy.test/install/final");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (302):
null
HTTP Request
GET install/final
Display the updater welcome page.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/update"
const url = new URL("http://admin.zaherdairy.test/update");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (500):
{
"message": "Server Error"
}
HTTP Request
GET update
Display the updater overview page.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/update/overview"
const url = new URL("http://admin.zaherdairy.test/update/overview");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (500):
{
"message": "Server Error"
}
HTTP Request
GET update/overview
Migrate and seed the database.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/update/database"
const url = new URL("http://admin.zaherdairy.test/update/database");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (302):
null
HTTP Request
GET update/database
Update installed file and display finished view.
Example request:
curl -X GET -G "http://admin.zaherdairy.test/update/final"
const url = new URL("http://admin.zaherdairy.test/update/final");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
null
HTTP Request
GET update/final
_debugbar/open
Example request:
curl -X GET -G "http://admin.zaherdairy.test/_debugbar/open"
const url = new URL("http://admin.zaherdairy.test/_debugbar/open");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
null
HTTP Request
GET _debugbar/open
Return Clockwork output
Example request:
curl -X GET -G "http://admin.zaherdairy.test/_debugbar/clockwork/1"
const url = new URL("http://admin.zaherdairy.test/_debugbar/clockwork/1");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
null
HTTP Request
GET _debugbar/clockwork/{id}
_debugbar/telescope/{id}
Example request:
curl -X GET -G "http://admin.zaherdairy.test/_debugbar/telescope/1"
const url = new URL("http://admin.zaherdairy.test/_debugbar/telescope/1");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
null
HTTP Request
GET _debugbar/telescope/{id}
Return the stylesheets for the Debugbar
Example request:
curl -X GET -G "http://admin.zaherdairy.test/_debugbar/assets/stylesheets"
const url = new URL("http://admin.zaherdairy.test/_debugbar/assets/stylesheets");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
null
HTTP Request
GET _debugbar/assets/stylesheets
Return the javascript for the Debugbar
Example request:
curl -X GET -G "http://admin.zaherdairy.test/_debugbar/assets/javascript"
const url = new URL("http://admin.zaherdairy.test/_debugbar/assets/javascript");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
null
HTTP Request
GET _debugbar/assets/javascript
Forget a cache key
Example request:
curl -X DELETE "http://admin.zaherdairy.test/_debugbar/cache/1/1"
const url = new URL("http://admin.zaherdairy.test/_debugbar/cache/1/1");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "DELETE",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
DELETE _debugbar/cache/{key}/{tags?}
api/driver/login
Example request:
curl -X POST "http://admin.zaherdairy.test/api/driver/login"
const url = new URL("http://admin.zaherdairy.test/api/driver/login");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/driver/login
Create a new user instance after a valid registration.
Example request:
curl -X POST "http://admin.zaherdairy.test/api/driver/register"
const url = new URL("http://admin.zaherdairy.test/api/driver/register");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/driver/register
api/driver/send_reset_link_email
Example request:
curl -X POST "http://admin.zaherdairy.test/api/driver/send_reset_link_email"
const url = new URL("http://admin.zaherdairy.test/api/driver/send_reset_link_email");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/driver/send_reset_link_email
api/driver/user
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/driver/user"
const url = new URL("http://admin.zaherdairy.test/api/driver/user");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (401):
{
"success": false,
"message": "User not found"
}
HTTP Request
GET api/driver/user
api/driver/logout
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/driver/logout"
const url = new URL("http://admin.zaherdairy.test/api/driver/logout");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (401):
{
"success": false,
"message": "User not found"
}
HTTP Request
GET api/driver/logout
api/driver/settings
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/driver/settings"
const url = new URL("http://admin.zaherdairy.test/api/driver/settings");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
{
"success": true,
"data": {
"app_name": "OTG Cart",
"enable_stripe": "1",
"default_tax": "10",
"default_currency": "$",
"fcm_key": "AAAAzqbo2OI:APA91bHwgnCZlFQ5aHvN-ewuyA2XLib95GjenV2N89c8EiucZTs-tPMrQN7yAnPPc3o1dZS9HVIzUeeTOYXIOswiIyP71oW83sT-VU1xV9iufi_FBl83eGaYT4Fpy6GIIi9qTfAY5F8w",
"enable_paypal": "1",
"main_color": "#c27474",
"main_dark_color": "#25d366",
"second_color": "#043832",
"second_dark_color": "#ccccdd",
"accent_color": "#8c98a8",
"accent_dark_color": "#9999aa",
"scaffold_dark_color": "#2c2c2c",
"scaffold_color": "#fafafa",
"google_maps_key": "AIzaSyAT07iMlfZ9bJt1gmGj9KhJDLFY8srI6dA",
"mobile_language": "en",
"app_version": "2.0.0",
"enable_version": "1",
"default_currency_decimal_digits": "2",
"currency_right": "0"
},
"message": "Settings retrieved successfully"
}
HTTP Request
GET api/driver/settings
api/manager/login
Example request:
curl -X POST "http://admin.zaherdairy.test/api/manager/login"
const url = new URL("http://admin.zaherdairy.test/api/manager/login");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/manager/login
Create a new user instance after a valid registration.
Example request:
curl -X POST "http://admin.zaherdairy.test/api/manager/register"
const url = new URL("http://admin.zaherdairy.test/api/manager/register");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/manager/register
api/manager/send_reset_link_email
Example request:
curl -X POST "http://admin.zaherdairy.test/api/manager/send_reset_link_email"
const url = new URL("http://admin.zaherdairy.test/api/manager/send_reset_link_email");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/manager/send_reset_link_email
api/manager/user
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/manager/user"
const url = new URL("http://admin.zaherdairy.test/api/manager/user");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (401):
{
"success": false,
"message": "User not found"
}
HTTP Request
GET api/manager/user
api/manager/logout
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/manager/logout"
const url = new URL("http://admin.zaherdairy.test/api/manager/logout");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (401):
{
"success": false,
"message": "User not found"
}
HTTP Request
GET api/manager/logout
api/manager/settings
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/manager/settings"
const url = new URL("http://admin.zaherdairy.test/api/manager/settings");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
{
"success": true,
"data": {
"app_name": "OTG Cart",
"enable_stripe": "1",
"default_tax": "10",
"default_currency": "$",
"fcm_key": "AAAAzqbo2OI:APA91bHwgnCZlFQ5aHvN-ewuyA2XLib95GjenV2N89c8EiucZTs-tPMrQN7yAnPPc3o1dZS9HVIzUeeTOYXIOswiIyP71oW83sT-VU1xV9iufi_FBl83eGaYT4Fpy6GIIi9qTfAY5F8w",
"enable_paypal": "1",
"main_color": "#c27474",
"main_dark_color": "#25d366",
"second_color": "#043832",
"second_dark_color": "#ccccdd",
"accent_color": "#8c98a8",
"accent_dark_color": "#9999aa",
"scaffold_dark_color": "#2c2c2c",
"scaffold_color": "#fafafa",
"google_maps_key": "AIzaSyAT07iMlfZ9bJt1gmGj9KhJDLFY8srI6dA",
"mobile_language": "en",
"app_version": "2.0.0",
"enable_version": "1",
"default_currency_decimal_digits": "2",
"currency_right": "0"
},
"message": "Settings retrieved successfully"
}
HTTP Request
GET api/manager/settings
api/login
Example request:
curl -X POST "http://admin.zaherdairy.test/api/login"
const url = new URL("http://admin.zaherdairy.test/api/login");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/login
Create a new user instance after a valid registration.
Example request:
curl -X POST "http://admin.zaherdairy.test/api/register"
const url = new URL("http://admin.zaherdairy.test/api/register");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/register
api/password/email
Example request:
curl -X POST "http://admin.zaherdairy.test/api/password/email"
const url = new URL("http://admin.zaherdairy.test/api/password/email");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/password/email
api/password/confirmcode
Example request:
curl -X POST "http://admin.zaherdairy.test/api/password/confirmcode"
const url = new URL("http://admin.zaherdairy.test/api/password/confirmcode");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/password/confirmcode
api/password/reset
Example request:
curl -X POST "http://admin.zaherdairy.test/api/password/reset"
const url = new URL("http://admin.zaherdairy.test/api/password/reset");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/password/reset
api/user
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/user"
const url = new URL("http://admin.zaherdairy.test/api/user");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (401):
{
"success": false,
"message": "User not found"
}
HTTP Request
GET api/user
api/logout
Example request:
curl -X POST "http://admin.zaherdairy.test/api/logout"
const url = new URL("http://admin.zaherdairy.test/api/logout");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/logout
api/settings
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/settings"
const url = new URL("http://admin.zaherdairy.test/api/settings");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
{
"success": true,
"data": {
"app_name": "OTG Cart",
"enable_stripe": "1",
"default_tax": "10",
"default_currency": "$",
"fcm_key": "AAAAzqbo2OI:APA91bHwgnCZlFQ5aHvN-ewuyA2XLib95GjenV2N89c8EiucZTs-tPMrQN7yAnPPc3o1dZS9HVIzUeeTOYXIOswiIyP71oW83sT-VU1xV9iufi_FBl83eGaYT4Fpy6GIIi9qTfAY5F8w",
"enable_paypal": "1",
"main_color": "#c27474",
"main_dark_color": "#25d366",
"second_color": "#043832",
"second_dark_color": "#ccccdd",
"accent_color": "#8c98a8",
"accent_dark_color": "#9999aa",
"scaffold_dark_color": "#2c2c2c",
"scaffold_color": "#fafafa",
"google_maps_key": "AIzaSyAT07iMlfZ9bJt1gmGj9KhJDLFY8srI6dA",
"mobile_language": "en",
"app_version": "2.0.0",
"enable_version": "1",
"default_currency_decimal_digits": "2",
"currency_right": "0"
},
"message": "Settings retrieved successfully"
}
HTTP Request
GET api/settings
Display a listing of the Field.
GET|HEAD /fields
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/fields"
const url = new URL("http://admin.zaherdairy.test/api/fields");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"name": "Grocery",
"description": "Eum similique maiores atque quia explicabo. Dolores quia placeat consequatur id quis perspiciatis. Ducimus sit ducimus officia labore maiores et porro. Est iusto natus nesciunt debitis consequuntur totam. Et illo et autem inventore earum corrupti.",
"created_at": "2020-04-11 23:03:21",
"updated_at": "2020-04-11 23:03:21",
"custom_fields": [],
"markets": []
},
{
"id": 2,
"name": "Pharmacy",
"description": "Eaque et aut natus. Minima blanditiis ut sunt distinctio ad. Quasi doloremque rerum ex rerum. Molestias similique similique aut rerum delectus blanditiis et. Dolorem et quas nostrum est nobis.",
"created_at": "2020-04-11 23:03:21",
"updated_at": "2020-04-11 23:03:21",
"custom_fields": [],
"markets": []
},
{
"id": 3,
"name": "Restaurant",
"description": "Est nihil omnis natus ducimus ducimus excepturi quos. Et praesentium in quia veniam. Tempore aut nesciunt consequatur pariatur recusandae. Voluptatem commodi eius quaerat est deleniti impedit. Qui quo harum est sequi incidunt labore eligendi cum.",
"created_at": "2020-04-11 23:03:21",
"updated_at": "2020-04-11 23:03:21",
"custom_fields": [],
"markets": []
},
{
"id": 4,
"name": "Store",
"description": "Ex nostrum suscipit aut et labore. Ut dolor ut eum eum voluptatem ex. Sapiente in tempora soluta voluptatem. Officia accusantium quae sit. Rerum esse ipsa molestias dolorem et est autem consequatur.",
"created_at": "2020-04-11 23:03:21",
"updated_at": "2020-04-11 23:03:21",
"custom_fields": [],
"markets": []
},
{
"id": 5,
"name": "Electronics",
"description": "Dolorum earum ut blanditiis blanditiis. Facere quis voluptates assumenda saepe. Ab aspernatur voluptatibus rem doloremque cum impedit. Itaque blanditiis commodi repudiandae asperiores. Modi atque placeat consectetur et aut blanditiis.",
"created_at": "2020-04-11 23:03:21",
"updated_at": "2020-04-11 23:03:21",
"custom_fields": [],
"markets": []
},
{
"id": 6,
"name": "Furniture",
"description": "Est et iste enim. Quam repudiandae commodi rerum non esse. Et in aut sequi est aspernatur. Facere non modi expedita asperiores. Ipsa laborum saepe deserunt qui consequatur voluptas inventore dolorum.",
"created_at": "2020-04-11 23:03:21",
"updated_at": "2020-04-11 23:03:21",
"custom_fields": [],
"markets": []
}
],
"message": "Fields retrieved successfully"
}
HTTP Request
GET api/fields
Display the specified Field.
GET|HEAD /fields/{id}
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/fields/1"
const url = new URL("http://admin.zaherdairy.test/api/fields/1");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
{
"success": true,
"data": {
"id": 1,
"name": "Grocery",
"description": "Eum similique maiores atque quia explicabo. Dolores quia placeat consequatur id quis perspiciatis. Ducimus sit ducimus officia labore maiores et porro. Est iusto natus nesciunt debitis consequuntur totam. Et illo et autem inventore earum corrupti.",
"created_at": "2020-04-11 23:03:21",
"updated_at": "2020-04-11 23:03:21",
"custom_fields": [],
"markets": []
},
"message": "Field retrieved successfully"
}
HTTP Request
GET api/fields/{field}
Display a listing of the Category.
GET|HEAD /categories
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/categories"
const url = new URL("http://admin.zaherdairy.test/api/categories");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
{
"success": true,
"data": [
{
"id": 7,
"name": "اغذيه جافه",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 1,
"Category_AR": "غذائى",
"Category_EN": null,
"Subcategory_Code": 1,
"Subcategoy_AR": "اغذيه جافه",
"Subcategoy_EN": null,
"products_count": 7081,
"custom_fields": [],
"has_media": false,
"media": []
},
{
"id": 8,
"name": "اغذيه طازجه",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 1,
"Category_AR": "غذائى",
"Category_EN": null,
"Subcategory_Code": 2,
"Subcategoy_AR": "اغذيه طازجه",
"Subcategoy_EN": null,
"products_count": 2322,
"custom_fields": [],
"has_media": false,
"media": []
},
{
"id": 9,
"name": "منزليه",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 2,
"Category_AR": "لا غذائى",
"Category_EN": null,
"Subcategory_Code": 3,
"Subcategoy_AR": "منزليه",
"Subcategoy_EN": null,
"products_count": 257,
"custom_fields": [],
"has_media": false,
"media": []
},
{
"id": 10,
"name": "تجميل",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 2,
"Category_AR": "لا غذائى",
"Category_EN": null,
"Subcategory_Code": 4,
"Subcategoy_AR": "تجميل",
"Subcategoy_EN": null,
"products_count": 914,
"custom_fields": [],
"has_media": false,
"media": []
},
{
"id": 11,
"name": "منظفات وورقيات",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 2,
"Category_AR": "لا غذائى",
"Category_EN": null,
"Subcategory_Code": 5,
"Subcategoy_AR": "منظفات وورقيات",
"Subcategoy_EN": null,
"products_count": 1301,
"custom_fields": [],
"has_media": false,
"media": []
},
{
"id": 12,
"name": "ديليفرى",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 2,
"Category_AR": "لا غذائى",
"Category_EN": null,
"Subcategory_Code": 6,
"Subcategoy_AR": "ديليفرى",
"Subcategoy_EN": null,
"products_count": 10,
"custom_fields": [],
"has_media": false,
"media": []
},
{
"id": 13,
"name": "اتصالات",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 2,
"Category_AR": "لا غذائى",
"Category_EN": null,
"Subcategory_Code": 7,
"Subcategoy_AR": "اتصالات",
"Subcategoy_EN": null,
"products_count": 17,
"custom_fields": [],
"has_media": false,
"media": []
},
{
"id": 14,
"name": "مستهلكات",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 2,
"Category_AR": "لا غذائى",
"Category_EN": null,
"Subcategory_Code": 8,
"Subcategoy_AR": "مستهلكات",
"Subcategoy_EN": null,
"products_count": 229,
"custom_fields": [],
"has_media": false,
"media": []
},
{
"id": 15,
"name": "اخرى",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 2,
"Category_AR": "لا غذائى",
"Category_EN": null,
"Subcategory_Code": 9,
"Subcategoy_AR": "اخرى",
"Subcategoy_EN": null,
"products_count": 72,
"custom_fields": [],
"has_media": false,
"media": []
},
{
"id": 16,
"name": "زاهر اغذية جافة",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 3,
"Category_AR": "البان زاهر",
"Category_EN": null,
"Subcategory_Code": 11,
"Subcategoy_AR": "زاهر اغذية جافة",
"Subcategoy_EN": null,
"products_count": 291,
"custom_fields": [],
"has_media": false,
"media": []
},
{
"id": 17,
"name": "زاهر اغذية طازجة",
"description": null,
"created_at": "2021-11-01 19:41:56",
"updated_at": "2021-11-01 19:41:56",
"Category_Code": 3,
"Category_AR": "البان زاهر",
"Category_EN": null,
"Subcategory_Code": 12,
"Subcategoy_AR": "زاهر اغذية طازجة",
"Subcategoy_EN": null,
"products_count": 645,
"custom_fields": [],
"has_media": false,
"media": []
}
],
"message": "Categories retrieved successfully"
}
HTTP Request
GET api/categories
Display the specified Category.
GET|HEAD /categories/{id}
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/categories/1"
const url = new URL("http://admin.zaherdairy.test/api/categories/1");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (404):
{
"success": false,
"message": "Category not found"
}
HTTP Request
GET api/categories/{category}
Display a listing of the Market.
GET|HEAD /markets
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/markets"
const url = new URL("http://admin.zaherdairy.test/api/markets");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
{
"success": true,
"data": [
{
"id": 11,
"name": "حسابات مركزية",
"description": "<p>e<\/p>",
"address": "q",
"latitude": "0",
"longitude": "0",
"phone": null,
"mobile": null,
"information": null,
"admin_commission": 0,
"delivery_fee": 0,
"delivery_range": 0,
"default_tax": 0,
"closed": false,
"active": true,
"available_for_delivery": true,
"created_at": "2021-11-01 19:41:37",
"updated_at": "2021-12-02 11:50:39",
"Branch_EN": "CostCenter",
"Branch_ID": 0,
"custom_fields": [],
"has_media": false,
"rate": null,
"media": []
}
],
"message": "Markets retrieved successfully"
}
HTTP Request
GET api/markets
Store a newly created Market in storage.
Example request:
curl -X POST "http://admin.zaherdairy.test/api/markets"
const url = new URL("http://admin.zaherdairy.test/api/markets");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "POST",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
POST api/markets
Display the specified Market.
GET|HEAD /markets/{id}
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/markets/1"
const url = new URL("http://admin.zaherdairy.test/api/markets/1");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (404):
{
"success": false,
"message": "Market not found"
}
HTTP Request
GET api/markets/{market}
Update the specified Market in storage.
Example request:
curl -X PUT "http://admin.zaherdairy.test/api/markets/1"
const url = new URL("http://admin.zaherdairy.test/api/markets/1");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "PUT",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
PUT api/markets/{market}
PATCH api/markets/{market}
Remove the specified Market from storage.
Example request:
curl -X DELETE "http://admin.zaherdairy.test/api/markets/1"
const url = new URL("http://admin.zaherdairy.test/api/markets/1");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "DELETE",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
HTTP Request
DELETE api/markets/{market}
Display a listing of the FaqCategory.
GET|HEAD /faqCategories
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/faq_categories"
const url = new URL("http://admin.zaherdairy.test/api/faq_categories");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
{
"success": true,
"data": [
{
"id": 1,
"name": "Products",
"created_at": "2019-08-31 20:31:52",
"updated_at": "2019-08-31 20:31:52",
"custom_fields": []
},
{
"id": 2,
"name": "Services",
"created_at": "2019-08-31 20:32:03",
"updated_at": "2019-08-31 20:32:03",
"custom_fields": []
},
{
"id": 3,
"name": "Delivery",
"created_at": "2019-08-31 20:32:11",
"updated_at": "2019-08-31 20:32:11",
"custom_fields": []
},
{
"id": 4,
"name": "Misc",
"created_at": "2019-08-31 20:32:17",
"updated_at": "2019-08-31 20:32:17",
"custom_fields": []
}
],
"message": "Faq Categories retrieved successfully"
}
HTTP Request
GET api/faq_categories
Display the specified FaqCategory.
GET|HEAD /faqCategories/{id}
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/faq_categories/1"
const url = new URL("http://admin.zaherdairy.test/api/faq_categories/1");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
{
"success": true,
"data": {
"id": 1,
"name": "Products",
"created_at": "2019-08-31 20:31:52",
"updated_at": "2019-08-31 20:31:52",
"custom_fields": []
},
"message": "Faq Category retrieved successfully"
}
HTTP Request
GET api/faq_categories/{faq_category}
Display a listing of the Product.
GET|HEAD /products/categories
Example request:
curl -X GET -G "http://admin.zaherdairy.test/api/products/categories"
const url = new URL("http://admin.zaherdairy.test/api/products/categories");
let headers = {
"Accept": "application/json",
"Content-Type": "application/json",
}
fetch(url, {
method: "GET",
headers: headers,
})
.then(response => response.json())
.then(json => console.log(json));
Example response (200):
{
"success": true,
"data": [
{
"id": 41,
"name": "ماكينه حلاقه فيوجن 1 موس",
"price": 124.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماكينه حلاقه فيوجن 1 موس",
"Product_EN": null,
"Product_Id": "00004113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 42,
"name": "بامبرز شرايط مقاس 3 * 2 حفاضه",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز شرايط مقاس 3 * 2 حفاضه",
"Product_EN": null,
"Product_Id": "00004114 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 43,
"name": "بامبرز شرايط مقاس 4 * 2 حفاضه - موقوف",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز شرايط مقاس 4 * 2 حفاضه - موقوف",
"Product_EN": null,
"Product_Id": "00004115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 44,
"name": "بامبرز شرايط مقاس 5 * 2 حفاضه - موقوف",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز شرايط مقاس 5 * 2 حفاضه - موقوف",
"Product_EN": null,
"Product_Id": "00004116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 45,
"name": "بامبرز قطع مقاس 1 يومي 21*8 حفاضه - موقوف",
"price": 34.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز قطع مقاس 1 يومي 21*8 حفاضه - موقوف",
"Product_EN": null,
"Product_Id": "00004119 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 46,
"name": "كورند بيف صن شاين 340 جم - موقوف",
"price": 40.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورند بيف صن شاين 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004120 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 47,
"name": "بيتى عصير تفاح بيور230 مل - موقوف",
"price": 3.65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير تفاح بيور230 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004121 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 48,
"name": "فانش مزيل بقع بودره 90 جم",
"price": 11.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش مزيل بقع بودره 90 جم",
"Product_EN": null,
"Product_Id": "00004125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 49,
"name": "فانش مزيل للبقع جل 100 مل",
"price": 8.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش مزيل للبقع جل 100 مل",
"Product_EN": null,
"Product_Id": "00004126 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 50,
"name": "هيلثى ذره حلوه 244 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى ذره حلوه 244 جم",
"Product_EN": null,
"Product_Id": "00004127 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 51,
"name": "اطياب دجاجة كامله حار 12 ق - موقوف",
"price": 87,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب دجاجة كامله حار 12 ق - موقوف",
"Product_EN": "Atyab Hot Whole Chicken 12 pieces",
"Product_Id": "00004128 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 52,
"name": "المغربى زيتون اسبانى 400 جم - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المغربى زيتون اسبانى 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 53,
"name": "الطاهيه كورند بيف 340جم - موقوف",
"price": 29.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه كورند بيف 340جم - موقوف",
"Product_EN": null,
"Product_Id": "00004130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 54,
"name": "حدائق كاليفورنيا تونه قطع فاتح 185جم - موقوف",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونه قطع فاتح 185جم - موقوف",
"Product_EN": null,
"Product_Id": "00004132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 55,
"name": "الطاهيه فاصوليا مطبوخه 400 جم",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه فاصوليا مطبوخه 400 جم",
"Product_EN": "Al Tahya Baked Beans 400 gm ",
"Product_Id": "00004133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 56,
"name": "الطاهيه حمص 540 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه حمص 540 جم",
"Product_EN": "Al Tahya Chickpeas 540 gm",
"Product_Id": "00004134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 57,
"name": "زاهر تشيز كيك توت - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تشيز كيك توت - موقوف",
"Product_EN": null,
"Product_Id": "00004135 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 58,
"name": "الطاهيه مشروم شرائح 800 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه مشروم شرائح 800 جم",
"Product_EN": "Al Tahya Pieces & Stems Mushrooms 800 gm",
"Product_Id": "00004136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 59,
"name": "الطاهيه ذرة حلوه 340 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه ذرة حلوه 340 جم",
"Product_EN": "Al Tahya Sweet Corn 340 gm ",
"Product_Id": "00004138 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 60,
"name": "اريال مسحوق يدوى داونى 1ك - موقوف",
"price": 23.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى داونى 1ك - موقوف",
"Product_EN": null,
"Product_Id": "00004139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 61,
"name": "اريال مسحوق اوتوماتيك الوان 2.5 ك - موقوف",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اوتوماتيك الوان 2.5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00004141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 62,
"name": "تايد مسحوق يدوى 550 جم - موقوف",
"price": 8.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى 550 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004142 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 63,
"name": "جيل ماك ثرى بشره ناعمه 200 ملل - موقوف",
"price": 58.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "جيل ماك ثرى بشره ناعمه 200 ملل - موقوف",
"Product_EN": null,
"Product_Id": "00004144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 64,
"name": "تايد مسحوق اوتوماتيك ليمون 2.5 كجم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق اوتوماتيك ليمون 2.5 كجم",
"Product_EN": null,
"Product_Id": "00004145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 65,
"name": "لمبادا ويفر محشو بكريمه الحليب 12ق - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا ويفر محشو بكريمه الحليب 12ق - موقوف",
"Product_EN": null,
"Product_Id": "00004146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 66,
"name": "اريال مسحوق يدوى 140جم - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 140جم - موقوف",
"Product_EN": null,
"Product_Id": "00004147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 67,
"name": "اريال مسحوق يدوى 65جم - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 65جم - موقوف",
"Product_EN": null,
"Product_Id": "00004148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 68,
"name": "لمبادا ويفر محشو بكريمه الحليب - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا ويفر محشو بكريمه الحليب - موقوف",
"Product_EN": null,
"Product_Id": "00004149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 69,
"name": "اريال مسحوق يدوى 400 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 70,
"name": "اريال مسحوق يدوى 70 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004151 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 71,
"name": "اريال مسحوق يدوى ياسمين 350 جم عرض - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 350 جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004152 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 72,
"name": "اولويز ماكسى الطويله جدا +2 فوطه عرض",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز ماكسى الطويله جدا +2 فوطه عرض",
"Product_EN": null,
"Product_Id": "00004155 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 73,
"name": "لمبادا ويفر شيكولاتة دبل 30جم - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا ويفر شيكولاتة دبل 30جم - موقوف",
"Product_EN": null,
"Product_Id": "00004157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 74,
"name": "لمبادا ويفر دبل اكستر 6 ق علبه - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا ويفر دبل اكستر 6 ق علبه - موقوف",
"Product_EN": null,
"Product_Id": "00004159 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 75,
"name": "لمبادا بسكويت شيكولاتة بيضاء 12ق - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا بسكويت شيكولاتة بيضاء 12ق - موقوف",
"Product_EN": null,
"Product_Id": "00004160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 76,
"name": "المراعى حليب خالى الدسم 1.4 لتر",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب خالى الدسم 1.4 لتر",
"Product_EN": "Al Marai Skimmed Milk 1.4 L",
"Product_Id": "00004161 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 77,
"name": "تيميز شوكو فليكس 30 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو فليكس 30 جم",
"Product_EN": "Temmy's Choco Flakes 30 gm",
"Product_Id": "00004162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 78,
"name": "اريال جيل داونى 3 لتر - موقوف",
"price": 74.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال جيل داونى 3 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 79,
"name": "انريجايزر حجر ريموت كارت AAA",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "انريجايزر حجر ريموت كارت AAA",
"Product_EN": "Energizer Alkaline 4 Pieces AAA",
"Product_Id": "00004165 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 80,
"name": "فيرى منظف اطباق اكياس 48جم - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى منظف اطباق اكياس 48جم - موقوف",
"Product_EN": null,
"Product_Id": "00004166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 81,
"name": "براونيز كيك شيكولاتة 100 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براونيز كيك شيكولاتة 100 جم",
"Product_EN": "Brownies Cake Chocolate 100 gm",
"Product_Id": "00004167 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 82,
"name": "سيلفر ورنيش اسود 75 مل",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "سيلفر ورنيش اسود 75 مل",
"Product_EN": null,
"Product_Id": "00004168 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 83,
"name": "العراقى بصل بكلز وزن - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى بصل بكلز وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 84,
"name": "الرشيدى الميزان حلاوه 615جم + حلاوه اسبريد 320 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان حلاوه 615جم + حلاوه اسبريد 320 جم",
"Product_EN": "El Rashidi El Mizan Tahina 615 g + Spread 320",
"Product_Id": "00004171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 85,
"name": "زاهر زيتون كالاماتا جامبو ممتاز وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر زيتون كالاماتا جامبو ممتاز وزن",
"Product_EN": "Zaher Kalamata Olive Jumbo - Scalable ",
"Product_Id": "00004172 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 86,
"name": "زاهر زيتون اسبانى مخلل طبيعى وزن",
"price": 55.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر زيتون اسبانى مخلل طبيعى وزن",
"Product_EN": "Zaher Pickled Spanish Olive - Weight",
"Product_Id": "00004173 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 87,
"name": "خيار قشه ممتاز وزن",
"price": 68.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "خيار قشه ممتاز وزن",
"Product_EN": "Zaher Pickled Small Cucumber 500 g",
"Product_Id": "00004174 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 88,
"name": "فانش مزيل بقع 450 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش مزيل بقع 450 مل",
"Product_EN": null,
"Product_Id": "00004175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 89,
"name": "حدائق كاليفورنيا فول ساده 450 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا فول ساده 450 جم",
"Product_EN": "California Garden Plain Medammes Fava Beans 450 gm",
"Product_Id": "00004176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 90,
"name": "روابى سمن بيضاء 1.5 كجم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روابى سمن بيضاء 1.5 كجم",
"Product_EN": "Rawaby White Ghee 1.5 Kg",
"Product_Id": "00004177 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 91,
"name": "توينكيز كيك شيكولاتة اكستر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينكيز كيك شيكولاتة اكستر",
"Product_EN": null,
"Product_Id": "00004178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 92,
"name": "توينكيز كيك فراولة اكستر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينكيز كيك فراولة اكستر",
"Product_EN": null,
"Product_Id": "00004179 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 93,
"name": "فريسكا بسكويت ويفر بكريمه الحلاوه 25 - 27 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريسكا بسكويت ويفر بكريمه الحلاوه 25 - 27 جم",
"Product_EN": "Fresca Biscuits Wafer With Cream Halawa 25 - 27 gm",
"Product_Id": "00004180 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 94,
"name": "بارلى ميكس مشروب شعير كراميل ظرف - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بارلى ميكس مشروب شعير كراميل ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00004181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 95,
"name": "مارينا مناديل تواليت اقتصادى 2 بكرة",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مارينا مناديل تواليت اقتصادى 2 بكرة",
"Product_EN": null,
"Product_Id": "00004182 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 96,
"name": "طرشى بلدى وزن - موقوف",
"price": 12.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طرشى بلدى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004183 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 97,
"name": "صولا بونبون كراميل \/ قهوه \/ كولا - موقوف",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا بونبون كراميل \/ قهوه \/ كولا - موقوف",
"Product_EN": null,
"Product_Id": "00004184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 98,
"name": "صولا لبان oppa - موقوف",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا لبان oppa - موقوف",
"Product_EN": null,
"Product_Id": "00004185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 99,
"name": "صولا بونبون كراميل - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا بونبون كراميل - موقوف",
"Product_EN": null,
"Product_Id": "00004186 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 100,
"name": "صولا بونبون قهوه - موقوف",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا بونبون قهوه - موقوف",
"Product_EN": null,
"Product_Id": "00004187 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 101,
"name": "صولا بونبون كولا - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا بونبون كولا - موقوف",
"Product_EN": null,
"Product_Id": "00004188 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 102,
"name": "صولا لبان oppa علبه - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا لبان oppa علبه - موقوف",
"Product_EN": null,
"Product_Id": "00004190 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 103,
"name": "روابى سمنه بيضاء 750 جم",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روابى سمنه بيضاء 750 جم",
"Product_EN": "Rawaby White Ghee 750 gm",
"Product_Id": "00004191 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 104,
"name": "روابى سمن نباتى ظرف 55 جم",
"price": 1.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روابى سمن نباتى ظرف 55 جم",
"Product_EN": "Rawaby Vegetable Ghee Situation 55 gm ",
"Product_Id": "00004193 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 105,
"name": "ان سى زد سمنة بقرى طبيعى 100% - موقوف",
"price": 99.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ان سى زد سمنة بقرى طبيعى 100% - موقوف",
"Product_EN": null,
"Product_Id": "00004194 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 106,
"name": "باندا جبنة فيتا بالزعتر 250 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة فيتا بالزعتر 250 جم",
"Product_EN": null,
"Product_Id": "00004198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 107,
"name": "قوت القلوب سمن نباتى 700 جم",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قوت القلوب سمن نباتى 700 جم",
"Product_EN": "Koot El Kloop Vegetable Ghee 700 gm",
"Product_Id": "00004199 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 108,
"name": "هلا زيت عباد الشمس 500 مل",
"price": 11.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هلا زيت عباد الشمس 500 مل",
"Product_EN": "Hala Sunflower Oil 500 ml",
"Product_Id": "00004200 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 109,
"name": "هدية زيت 800 مل - موقوف",
"price": 15.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هدية زيت 800 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004201 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 110,
"name": "ريتش بيك مافينز كيك 3ق",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك مافينز كيك 3ق",
"Product_EN": null,
"Product_Id": "00004202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 111,
"name": "ديمه بسكويت فراوله 63 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت فراوله 63 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 112,
"name": "ديمه بسكويت بالكريمة 63 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت بالكريمة 63 جم",
"Product_EN": null,
"Product_Id": "00004205 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 113,
"name": "شاتو بسكويت 140 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاتو بسكويت 140 جم",
"Product_EN": null,
"Product_Id": "00004206 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 114,
"name": "روعه مكرونة فرن 350 جم - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روعه مكرونة فرن 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 115,
"name": "زاهر صوص ايس كريم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر صوص ايس كريم",
"Product_EN": null,
"Product_Id": "00004213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 116,
"name": "زاهر بسكويت ايس كريم فانليا - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسكويت ايس كريم فانليا - موقوف",
"Product_EN": null,
"Product_Id": "00004214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 117,
"name": "بسمه فراوله مجمد 400 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه فراوله مجمد 400 جم",
"Product_EN": "Basma Frozen Strawberries 400 g",
"Product_Id": "00004215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 118,
"name": "كوكى جناح دجاج بارد 700 جم - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى جناح دجاج بارد 700 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 119,
"name": "ريتش بيك مافينز فانليا 3 ق",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك مافينز فانليا 3 ق",
"Product_EN": null,
"Product_Id": "00004217 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 120,
"name": "الشمعدان بسكويت شيكولاتة كرسبى",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان بسكويت شيكولاتة كرسبى",
"Product_EN": null,
"Product_Id": "00004218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 121,
"name": "الشمعدان ويفر بكريمه اللبن ",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان ويفر بكريمه اللبن ",
"Product_EN": null,
"Product_Id": "00004219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 122,
"name": "بيك رولز بالباربكيو 40 - 43 جم ",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز بالباربكيو 40 - 43 جم ",
"Product_EN": "Bake Stix BBQ 40 - 43 gm",
"Product_Id": "00004220 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 123,
"name": "الشمعدان بسكويت تسالى ",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان بسكويت تسالى ",
"Product_EN": null,
"Product_Id": "00004221 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 124,
"name": "كرانشى بطاطس بطعم الطماطم 20 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى بطاطس بطعم الطماطم 20 جم",
"Product_EN": null,
"Product_Id": "00004222 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 125,
"name": "كرانشى بطاطس بطعم الجبنه 20 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى بطاطس بطعم الجبنه 20 جم",
"Product_EN": null,
"Product_Id": "00004223 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 126,
"name": "كرانشى بطاطس بطعم السجق الحار 42 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى بطاطس بطعم السجق الحار 42 جم",
"Product_EN": null,
"Product_Id": "00004224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 127,
"name": "حلايب جبنة ملح خفيف وزن - موقوف",
"price": 36.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلايب جبنة ملح خفيف وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 128,
"name": "جهينة عصير رمان بيور 235 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير رمان بيور 235 مل",
"Product_EN": "Juhayna Pure Pomegranate Juice 235 ml",
"Product_Id": "00004227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 129,
"name": "نستله نيدو حليب مجفف 300 جم",
"price": 48.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نيدو حليب مجفف 300 جم",
"Product_EN": null,
"Product_Id": "00004228 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 130,
"name": "تاج الملوك شاى ناعم 40 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تاج الملوك شاى ناعم 40 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004229 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 131,
"name": "القيصر حلاوه بلدى ساده وزن - موقوف",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "القيصر حلاوه بلدى ساده وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004231 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 132,
"name": "القيصر حلاوه بلدى شيكولاتة وزن - موقوف",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "القيصر حلاوه بلدى شيكولاتة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004232 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 133,
"name": "القيصر حلاوه بلدى سودانى وزن - موقوف",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "القيصر حلاوه بلدى سودانى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004233 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 134,
"name": "القيصر حلاوه ساده 1 كجم - موقوف",
"price": 30.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القيصر حلاوه ساده 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00004234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 135,
"name": "القيصر حلاوة شيكولاتة 1 كجم - موقوف",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القيصر حلاوة شيكولاتة 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00004235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 136,
"name": "القيصر حلاوه سودانى 1 كجم - موقوف",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القيصر حلاوه سودانى 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00004236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 137,
"name": "اريال مسحوق يدوى 80 جم - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004237 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 138,
"name": "بسكو مصر بسكويت لوكس كراميل ",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت لوكس كراميل ",
"Product_EN": null,
"Product_Id": "00004238 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 139,
"name": "بسكو مصر بسكويت كراميل لوكس 12ق ",
"price": 20.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت كراميل لوكس 12ق ",
"Product_EN": null,
"Product_Id": "00004239 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 140,
"name": "بسكو مصر",
"price": 19.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر",
"Product_EN": null,
"Product_Id": "00004240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 141,
"name": "بسكو مصر نايس بسكويت جوز هند 4 ق ",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر نايس بسكويت جوز هند 4 ق ",
"Product_EN": null,
"Product_Id": "00004241 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 142,
"name": "مقدم حجز",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 12,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 6,
"Subcategory": "ديليفرى",
"Product_AR": "مقدم حجز",
"Product_EN": null,
"Product_Id": "00004242 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 143,
"name": "شنطه الخير",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شنطه الخير",
"Product_EN": null,
"Product_Id": "00004243 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 144,
"name": "لافاش جبنة مثلثات 64 ق",
"price": 106,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة مثلثات 64 ق",
"Product_EN": "LaVache Triangle Cheese 64 Pieces ",
"Product_Id": "00004245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 145,
"name": "صنى زيت للقلى 1.75 لتر",
"price": 47.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صنى زيت للقلى 1.75 لتر",
"Product_EN": "Sunny Oil For Frying 1.75 L ",
"Product_Id": "00004246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 146,
"name": "باندا جبنه 2+1 ق 250 جم عرض",
"price": 11.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنه 2+1 ق 250 جم عرض",
"Product_EN": null,
"Product_Id": "00004247 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 147,
"name": "الامام الذهبى ارز 1 كيلو - موقوف",
"price": 9.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الامام الذهبى ارز 1 كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00004248 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 148,
"name": "خيرات اسوان بلح جاف ممتاز 800 جم",
"price": 12.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "خيرات اسوان بلح جاف ممتاز 800 جم",
"Product_EN": null,
"Product_Id": "00004249 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 149,
"name": "رويال ارز ابيض ممتاز 1 ك - موقوف",
"price": 9.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال ارز ابيض ممتاز 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00004250 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 150,
"name": "التوحيد بلح علبة 750 جم - موقوف",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "التوحيد بلح علبة 750 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 151,
"name": "فنش مسحوق اطباق 1 كجم",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فنش مسحوق اطباق 1 كجم",
"Product_EN": null,
"Product_Id": "00004257 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 152,
"name": "كريستال سمن نباتى ابيض 350 جم",
"price": 9.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال سمن نباتى ابيض 350 جم",
"Product_EN": "Crystal White Vegetable Ghee 350 gm",
"Product_Id": "00004258 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 153,
"name": "كريستال سمن نباتى اصفر 350 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال سمن نباتى اصفر 350 جم",
"Product_EN": "Crystal Yellow Vegetable Ghee 350 gm",
"Product_Id": "00004259 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 154,
"name": "حلوانى معمول بالتمر 50 جم 2 ق",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى معمول بالتمر 50 جم 2 ق",
"Product_EN": "Halwani Maamoul Dates 50 gm 2 Pieces",
"Product_Id": "00004260 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 155,
"name": "توينجز شاى اخضر نقى 50 جم 25 فتله - موقوف",
"price": 50.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينجز شاى اخضر نقى 50 جم 25 فتله - موقوف",
"Product_EN": null,
"Product_Id": "00004261 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 156,
"name": "توينجز شاى اخضر بالنعناع 37.50 جم 25 فتله - موقوف",
"price": 50.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينجز شاى اخضر بالنعناع 37.50 جم 25 فتله - موقوف",
"Product_EN": null,
"Product_Id": "00004262 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 157,
"name": "توينجز شاى ايرل جراى50 جم 25 فتله - موقوف",
"price": 44.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينجز شاى ايرل جراى50 جم 25 فتله - موقوف",
"Product_EN": null,
"Product_Id": "00004263 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 158,
"name": "حدائق كاليفورنيا تونة قطع 185 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونة قطع 185 جم",
"Product_EN": "California Garden Tuna Chunks 185 gm",
"Product_Id": "00004264 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 159,
"name": "حسن وحسين فول تدميس 400 جم - موقوف",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حسن وحسين فول تدميس 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004265 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 160,
"name": "شنطه زاهر 82.50",
"price": 82.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شنطه زاهر 82.50",
"Product_EN": "shanta zaher 82.5",
"Product_Id": "00004269 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 161,
"name": "قراميش زيت صويا 750 مل",
"price": 13.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قراميش زيت صويا 750 مل",
"Product_EN": "Garameesh Soybean Oil 750 ml",
"Product_Id": "00004270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 162,
"name": "تمور المروة 500 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمور المروة 500 جم",
"Product_EN": null,
"Product_Id": "00004273 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 163,
"name": "دانا بانيه 1 كجم بارد - موقوف",
"price": 62.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانا بانيه 1 كجم بارد - موقوف",
"Product_EN": null,
"Product_Id": "00004274 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 164,
"name": "دانا بانيه 400 جم بارد - موقوف",
"price": 25.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانا بانيه 400 جم بارد - موقوف",
"Product_EN": null,
"Product_Id": "00004275 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 165,
"name": "دانا بانيه 1 كجم كيس - موقوف",
"price": 43.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانا بانيه 1 كجم كيس - موقوف",
"Product_EN": null,
"Product_Id": "00004276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 166,
"name": "دانا بانيه 1 كجم حار كيس - موقوف",
"price": 43.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانا بانيه 1 كجم حار كيس - موقوف",
"Product_EN": null,
"Product_Id": "00004277 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 167,
"name": "دانا ناجتس 1 كجم حار - موقوف",
"price": 49.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانا ناجتس 1 كجم حار - موقوف",
"Product_EN": null,
"Product_Id": "00004278 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 168,
"name": "دانا ناجتس 400 جم - موقوف",
"price": 25.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانا ناجتس 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 169,
"name": "دانا ناجتس اشكال 400 جم - موقوف",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانا ناجتس اشكال 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 170,
"name": "دانا دبوس 700 جم بارد - موقوف",
"price": 41.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانا دبوس 700 جم بارد - موقوف",
"Product_EN": null,
"Product_Id": "00004281 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 171,
"name": "دانا ستريبس 400 جم حار - موقوف",
"price": 32.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانا ستريبس 400 جم حار - موقوف",
"Product_EN": null,
"Product_Id": "00004282 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 172,
"name": "نستله دولسيكا شياكه - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله دولسيكا شياكه - موقوف",
"Product_EN": null,
"Product_Id": "00004283 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 173,
"name": "نستله دولسيكا فراوله - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله دولسيكا فراوله - موقوف",
"Product_EN": null,
"Product_Id": "00004285 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 174,
"name": "نستله دولسيكا ايس كريم اصلى شيكولاتة",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله دولسيكا ايس كريم اصلى شيكولاتة",
"Product_EN": null,
"Product_Id": "00004286 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 175,
"name": "نستله باراديس ايس كريم 140 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله باراديس ايس كريم 140 جم",
"Product_EN": null,
"Product_Id": "00004287 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 176,
"name": "نستله كيمو كونو فانليا 105 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله كيمو كونو فانليا 105 جم",
"Product_EN": null,
"Product_Id": "00004288 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 177,
"name": "كيمو كونو فانليا 105 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيمو كونو فانليا 105 جم",
"Product_EN": null,
"Product_Id": "00004289 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 178,
"name": "دولسيكا اسكويز مانجو 60 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دولسيكا اسكويز مانجو 60 جم",
"Product_EN": null,
"Product_Id": "00004290 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 179,
"name": "اسكويز اب ايس كريم مانجو ",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اسكويز اب ايس كريم مانجو ",
"Product_EN": null,
"Product_Id": "00004291 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 180,
"name": "نستله اكستريم كونو 125 جم - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله اكستريم كونو 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004292 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 181,
"name": "نستله بوبس ايس كريم 80 جم - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله بوبس ايس كريم 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004293 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 182,
"name": "نستلة ميجا شيكولاتة بيضاء",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة ميجا شيكولاتة بيضاء",
"Product_EN": null,
"Product_Id": "00004294 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 183,
"name": "نستله ميجا كراميل - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله ميجا كراميل - موقوف",
"Product_EN": null,
"Product_Id": "00004295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 184,
"name": "نستله ميجا شيكولاتة",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله ميجا شيكولاتة",
"Product_EN": null,
"Product_Id": "00004296 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 185,
"name": "فيرى مركز سائل تنظيف اطباق ليمون 450 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى مركز سائل تنظيف اطباق ليمون 450 مل",
"Product_EN": null,
"Product_Id": "00004297 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 186,
"name": "تيميز سويت فليكس 30 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز سويت فليكس 30 جم",
"Product_EN": "Temmy's Sweet Flakes 30 gm",
"Product_Id": "00004298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 187,
"name": "تيميز بليله قرفه 45 جم - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز بليله قرفه 45 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 188,
"name": "بسكو مصر بسكويت فريش شيكولاتة",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت فريش شيكولاتة",
"Product_EN": null,
"Product_Id": "00004300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 189,
"name": "كوكس جيلى اناناس 80 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس جيلى اناناس 80 جم",
"Product_EN": null,
"Product_Id": "00004301 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 190,
"name": "كوكس جيلى فراوله 80 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس جيلى فراوله 80 جم",
"Product_EN": null,
"Product_Id": "00004302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 191,
"name": "كوكس جيلى برتقال 80 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس جيلى برتقال 80 جم",
"Product_EN": null,
"Product_Id": "00004303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 192,
"name": "الرشيدى حلاوة 300 جم+ مربى 340 جم - موقوف",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى حلاوة 300 جم+ مربى 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004306 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 193,
"name": "باستو باتيه بالجبنه والشطه - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باستو باتيه بالجبنه والشطه - موقوف",
"Product_EN": null,
"Product_Id": "00004308 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 194,
"name": "باستو باتيه بالجبنه والزيتون - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باستو باتيه بالجبنه والزيتون - موقوف",
"Product_EN": null,
"Product_Id": "00004309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 195,
"name": "باستو باتيه بالجبنه الفرنسيه - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باستو باتيه بالجبنه الفرنسيه - موقوف",
"Product_EN": null,
"Product_Id": "00004310 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 196,
"name": "باستو باتيه بالجبنه المطبوخه - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باستو باتيه بالجبنه المطبوخه - موقوف",
"Product_EN": null,
"Product_Id": "00004311 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 197,
"name": "باستو باتيه بالشيكولاتة والبندق - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باستو باتيه بالشيكولاتة والبندق - موقوف",
"Product_EN": null,
"Product_Id": "00004312 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 198,
"name": "باستو باتيه بالقشطه والعسل - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باستو باتيه بالقشطه والعسل - موقوف",
"Product_EN": null,
"Product_Id": "00004313 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 199,
"name": "باستو باتيه بالفراوله والقشطه - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باستو باتيه بالفراوله والقشطه - موقوف",
"Product_EN": null,
"Product_Id": "00004314 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 200,
"name": "الضحى زيتون محشى وزن - موقوف",
"price": 24.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الضحى زيتون محشى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004315 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 201,
"name": "الضحى زيتون اخضرسليم وزن - موقوف",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الضحى زيتون اخضرسليم وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 202,
"name": "الضحى ليمون بالعصفر وزن - موقوف",
"price": 8.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الضحى ليمون بالعصفر وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 203,
"name": "الضحى زيتون اسبانى وزن - موقوف",
"price": 24.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الضحى زيتون اسبانى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004319 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 204,
"name": "الضحى زيتون كلاماتا وزن - موقوف",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الضحى زيتون كلاماتا وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004320 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 205,
"name": "الضحى زيتون اسود حلقات وزن - موقوف",
"price": 28.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الضحى زيتون اسود حلقات وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004321 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 206,
"name": "الرشيدى حلاوه بار 26 جم *12 - موقوف",
"price": 0.2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى حلاوه بار 26 جم *12 - موقوف",
"Product_EN": null,
"Product_Id": "00004323 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 207,
"name": "شيتوس كرانشى صغير 30 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس كرانشى صغير 30 جم",
"Product_EN": null,
"Product_Id": "00004326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 208,
"name": "المروه بلح جاف 900 جم",
"price": 27.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المروه بلح جاف 900 جم",
"Product_EN": null,
"Product_Id": "00004327 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 209,
"name": "تيميز كورن فليكس 150 جم",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز كورن فليكس 150 جم",
"Product_EN": "Temmy's Corn Flakes 150 gm",
"Product_Id": "00004328 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 210,
"name": "داونى منعم احساس رومانسى 1 لتر - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم احساس رومانسى 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004329 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 211,
"name": "البوادى طحينه 165 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى طحينه 165 جم",
"Product_EN": null,
"Product_Id": "00004330 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 212,
"name": "اولكر ويفر بكريمه الفانليا 10 ق",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر ويفر بكريمه الفانليا 10 ق",
"Product_EN": null,
"Product_Id": "00004331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 213,
"name": "بيتى عصير اناناس 250 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير اناناس 250 مل",
"Product_EN": "Beyti Pineapple Juice 250 ml",
"Product_Id": "00004332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 214,
"name": "بيتى عصير برتقال بيور250 مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير برتقال بيور250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004333 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 215,
"name": "صن شاين اكسبريس تونه قطع 150 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين اكسبريس تونه قطع 150 جم",
"Product_EN": "Sunshine Express Tuna Chunks 150 gm",
"Product_Id": "00004334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 216,
"name": "ماريو تونه قطع سهلة 140 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماريو تونه قطع سهلة 140 جم",
"Product_EN": "Mario Easy Open Tuna Chunks 140 gm",
"Product_Id": "00004335 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 217,
"name": "شيبسى ميكس شيدر صغير",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى ميكس شيدر صغير",
"Product_EN": null,
"Product_Id": "00004336 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 218,
"name": "امريكانا فول مدمس زيت وليمون وكمون 400 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فول مدمس زيت وليمون وكمون 400 جم",
"Product_EN": null,
"Product_Id": "00004337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 219,
"name": "امريكانا فول مدمس اسكندرانى بالطحينه 400 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فول مدمس اسكندرانى بالطحينه 400 جم",
"Product_EN": null,
"Product_Id": "00004338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 220,
"name": "امريكانا فول مدمس بالصلصه والتسبيكه 400 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فول مدمس بالصلصه والتسبيكه 400 جم",
"Product_EN": null,
"Product_Id": "00004339 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 221,
"name": "امريكانا فول مدمس زيت زيتون 400 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فول مدمس زيت زيتون 400 جم",
"Product_EN": null,
"Product_Id": "00004340 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 222,
"name": "امريكانا فول مدمس بالصلصه والزيت 400 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فول مدمس بالصلصه والزيت 400 جم",
"Product_EN": null,
"Product_Id": "00004341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 223,
"name": "امريكانا حمص بالطحينه 400 جم",
"price": 11.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا حمص بالطحينه 400 جم",
"Product_EN": null,
"Product_Id": "00004342 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 224,
"name": "امريكانا فول حمص مسلوق 400 جم",
"price": 8.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فول حمص مسلوق 400 جم",
"Product_EN": null,
"Product_Id": "00004343 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 225,
"name": "هارفست فول مدمس بزيت نباتى 400 جم",
"price": 5.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس بزيت نباتى 400 جم",
"Product_EN": null,
"Product_Id": "00004344 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 226,
"name": "هارفست فول مدمس بزيت الزيتون 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس بزيت الزيتون 400 جم",
"Product_EN": null,
"Product_Id": "00004345 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 227,
"name": "هارفست فول مدمس بالفلفل الحار 400 جم",
"price": 5.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس بالفلفل الحار 400 جم",
"Product_EN": null,
"Product_Id": "00004346 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 228,
"name": "هارفست فول مدمس دندراوى 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس دندراوى 400 جم",
"Product_EN": null,
"Product_Id": "00004348 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 229,
"name": "هارفست فول مدمس مصفى 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس مصفى 400 جم",
"Product_EN": null,
"Product_Id": "00004349 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 230,
"name": "هارفست فول مدمس لبنانى 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس لبنانى 400 جم",
"Product_EN": null,
"Product_Id": "00004351 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 231,
"name": "هارفست فول مدمس سوهاجى 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس سوهاجى 400 جم",
"Product_EN": null,
"Product_Id": "00004352 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 232,
"name": "هارفست فول مدمس مكسيكى 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس مكسيكى 400 جم",
"Product_EN": null,
"Product_Id": "00004353 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 233,
"name": "البوادى حلاوه طحينيه بار",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه طحينيه بار",
"Product_EN": null,
"Product_Id": "00004356 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 234,
"name": "زينه مناديل تواليت مضغوط 6 بكرة",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل تواليت مضغوط 6 بكرة",
"Product_EN": null,
"Product_Id": "00004357 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 235,
"name": "الملكه شعرية 400 جم - موقوف ",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه شعرية 400 جم - موقوف ",
"Product_EN": null,
"Product_Id": "00004358 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 236,
"name": "التوحيد بلح 1.50 كجم - موقوف",
"price": 43.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "التوحيد بلح 1.50 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00004359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 237,
"name": "برسيل جل 3 لتر + برسيل بلاك 1 لترعرض - موقوف",
"price": 89.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل 3 لتر + برسيل بلاك 1 لترعرض - موقوف",
"Product_EN": null,
"Product_Id": "00004360 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 238,
"name": "طعمه جبنه شرائح برجر200 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمه جبنه شرائح برجر200 جم",
"Product_EN": "Teama Burger Cheese Slices 200 gm",
"Product_Id": "00004361 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 239,
"name": "طعمة جبنة سبريد زيتون اسود 125جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنة سبريد زيتون اسود 125جم - موقوف",
"Product_EN": null,
"Product_Id": "00004362 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 240,
"name": "طعمة جبنة سبريد بالبسطرمة 125جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنة سبريد بالبسطرمة 125جم - موقوف",
"Product_EN": null,
"Product_Id": "00004363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 241,
"name": "طعمة سبريد بالفلفل الاحمر 125جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة سبريد بالفلفل الاحمر 125جم - موقوف",
"Product_EN": null,
"Product_Id": "00004364 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 242,
"name": "طعمة سبريد بالشيدر 125 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة سبريد بالشيدر 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004365 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 243,
"name": "بيض احمر - سايب",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيض احمر - سايب",
"Product_EN": null,
"Product_Id": "00004366 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 244,
"name": "زاهر عصير مانجو بيور 1 لتر - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير مانجو بيور 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004367 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 245,
"name": "زاهر عصير مانجو بيور 1\/2 لتر - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير مانجو بيور 1\/2 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 246,
"name": "زاهر عصير فراوله بيور 1لتر - موقوف",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير فراوله بيور 1لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004369 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 247,
"name": "زاهر عصير فراوله بيور 1\/2 لتر - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير فراوله بيور 1\/2 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004370 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 248,
"name": "العلى جوزه الطيب 7 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى جوزه الطيب 7 جم",
"Product_EN": null,
"Product_Id": "00004371 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 249,
"name": "ليبتون شاى100+20 فتلة عرض - موقوف",
"price": 45.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى100+20 فتلة عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004372 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 250,
"name": "تيميز فروت رينجز30 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز فروت رينجز30 جم",
"Product_EN": "Temmy's Fruit Rings 30 gm",
"Product_Id": "00004373 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 251,
"name": "تيميز شوكو سكوبس 30 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو سكوبس 30 جم",
"Product_EN": "Temmy's Choco Scoops 30 gm",
"Product_Id": "00004374 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 252,
"name": "برسيل مسحوق اتوماتيك 800 جم ( موقوف )",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك 800 جم ( موقوف )",
"Product_EN": null,
"Product_Id": "00004376 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 253,
"name": "باندا جبنة فيتا بالزيتون 500 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة فيتا بالزيتون 500 جم",
"Product_EN": null,
"Product_Id": "00004377 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 254,
"name": "لورد ماكينه حلاقه حصيره",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لورد ماكينه حلاقه حصيره",
"Product_EN": null,
"Product_Id": "00004378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 255,
"name": "ميكس مقرمشات 85 جم ",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميكس مقرمشات 85 جم ",
"Product_EN": null,
"Product_Id": "00004379 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 256,
"name": "كلوريل مبيض ملابس 1150 ملى 1ق+1 عرض - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل مبيض ملابس 1150 ملى 1ق+1 عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 257,
"name": "توك بسكويت بالملح 23 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توك بسكويت بالملح 23 جم",
"Product_EN": "TUC Biscuits Salted 23 gm",
"Product_Id": "00004383 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 258,
"name": "ايزى كير مناديل 80 منديل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل 80 منديل",
"Product_EN": "Easy Care Wipes 80 Wipes",
"Product_Id": "00004384 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 259,
"name": "الربيع عصير مانجو 1 لتر - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير مانجو 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004385 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 260,
"name": "الربيع عصير جوافه 1 لتر - موقوف",
"price": 9.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير جوافه 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004386 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 261,
"name": "الربيع عصير تفاح 1 لتر زجاج - موقوف",
"price": 9.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير تفاح 1 لتر زجاج - موقوف",
"Product_EN": null,
"Product_Id": "00004387 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 262,
"name": "الربيع عصير كوكتيل 1 لتر - موقوف",
"price": 9.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير كوكتيل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 263,
"name": "الربيع عصير مانجو 250مل - موقوف",
"price": 2.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير مانجو 250مل - موقوف",
"Product_EN": null,
"Product_Id": "00004389 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 264,
"name": "الربيع عصير جوافه 250مل - موقوف",
"price": 2.85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير جوافه 250مل - موقوف",
"Product_EN": null,
"Product_Id": "00004390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 265,
"name": "الربيع عصير تفاح 250مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير تفاح 250مل - موقوف",
"Product_EN": null,
"Product_Id": "00004391 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 266,
"name": "الربيع عصير كوكتيل 250مل (موقوف)",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير كوكتيل 250مل (موقوف)",
"Product_EN": null,
"Product_Id": "00004392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 267,
"name": "الربيع صلصه 50 جم ظرف - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع صلصه 50 جم ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00004393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 268,
"name": "الربيع صلصه برطمان 300 جم - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع صلصه برطمان 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 269,
"name": "الربيع مربى تين 350 جم - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع مربى تين 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004395 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 270,
"name": "الربيع مربى فراوله 350 جم - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع مربى فراوله 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 271,
"name": "الربيع حلاوه شيكولاتة 350 جم - موقوف",
"price": 14.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع حلاوه شيكولاتة 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 272,
"name": "الربيع حلاوه فستق 335 جم - موقوف",
"price": 23.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع حلاوه فستق 335 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 273,
"name": "الربيع حلاوه بندق 350 جم - موقوف",
"price": 21.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع حلاوه بندق 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004399 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 274,
"name": "الربيع حلاوه لوز 350 جم - موقوف",
"price": 21.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع حلاوه لوز 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 275,
"name": "الربيع طحينه 700 جم - موقوف",
"price": 34.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع طحينه 700 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 276,
"name": "الربيع لبن 450 جم كيس - موقوف",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الربيع لبن 450 جم كيس - موقوف",
"Product_EN": null,
"Product_Id": "00004402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 277,
"name": "بشاير عصير مانجو 200 مل",
"price": 1.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بشاير عصير مانجو 200 مل",
"Product_EN": "Bashayer Mango Juice 200 ml",
"Product_Id": "00004403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 278,
"name": "بشاير عصير برتقال 200 مل",
"price": 1.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بشاير عصير برتقال 200 مل",
"Product_EN": "Bashayer Orange Juice 200 ml",
"Product_Id": "00004405 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 279,
"name": "بشاير عصير جوافه 200 مل",
"price": 1.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بشاير عصير جوافه 200 مل",
"Product_EN": "Bashayer Guava Juice 200 ml",
"Product_Id": "00004406 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 280,
"name": "عبور لاند جبنه فيتا شطه 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا شطه 125 جم",
"Product_EN": "Obour Land Chili Feta Cheese 125 gm",
"Product_Id": "00004407 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 281,
"name": "الخير ملح 250جم كيس - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الخير ملح 250جم كيس - موقوف",
"Product_EN": null,
"Product_Id": "00004408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 282,
"name": "الخير ملح 1 كجم كيس - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الخير ملح 1 كجم كيس - موقوف",
"Product_EN": null,
"Product_Id": "00004409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 283,
"name": "سفانة زيت خليط 800 مل - موقوف",
"price": 20.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفانة زيت خليط 800 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 284,
"name": "المثالى فول مدمس 400 جم - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى فول مدمس 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004411 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 285,
"name": "المراعى زبادى فراولة 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى فراولة 105 جم",
"Product_EN": "Almarai Yogurt Strawberry 105 gm",
"Product_Id": "00004412 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 286,
"name": "المراعى زبادى سكر 75 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى سكر 75 جم",
"Product_EN": "Almarai Yogurt Sugar 75 gm",
"Product_Id": "00004413 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 287,
"name": "المراعى زبادى كراميل 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى كراميل 105 جم",
"Product_EN": "Almarai Yogurt Caramel 105 gm",
"Product_Id": "00004414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 288,
"name": "المراعى زبادى تارت 105 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى تارت 105 جم",
"Product_EN": "Almarai Yogurt Tart 105 gm",
"Product_Id": "00004415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 289,
"name": "المراعى زبادى فراولة 100 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى فراولة 100 جم",
"Product_EN": "Almarai Yogurt Strawberry 100 gm",
"Product_Id": "00004416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 290,
"name": "المراعى زبادى خوخ 105 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى خوخ 105 جم",
"Product_EN": "Almarai Yogurt Peach 105 gm",
"Product_Id": "00004417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 291,
"name": "المراعى زبادى مانجو 105 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى مانجو 105 جم",
"Product_EN": "Almarai Yogurt Mango 105 gm",
"Product_Id": "00004418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 292,
"name": "نستله نسكافيه كابتشينو 10 ظرف - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه كابتشينو 10 ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00004420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 293,
"name": "نستله كابتشينو موكا 18.5 جم علبه - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله كابتشينو موكا 18.5 جم علبه - موقوف",
"Product_EN": null,
"Product_Id": "00004421 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 294,
"name": "بوك قشطه نباتى الدهن 170 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بوك قشطه نباتى الدهن 170 جم",
"Product_EN": "Puck Cream With Vegetable Oil 170 gm ",
"Product_Id": "00004422 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 295,
"name": "زاهر موس شيكولاتة - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر موس شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00004423 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 296,
"name": "زاهر موس فانليا - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر موس فانليا - موقوف",
"Product_EN": null,
"Product_Id": "00004424 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 297,
"name": "زاهر موس فراولة - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر موس فراولة - موقوف",
"Product_EN": null,
"Product_Id": "00004425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 298,
"name": "زاهر موس كراميل - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر موس كراميل - موقوف",
"Product_EN": null,
"Product_Id": "00004426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 299,
"name": "زينه مناديل تواليت اقتصادى 24 بكرة",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل تواليت اقتصادى 24 بكرة",
"Product_EN": null,
"Product_Id": "00004427 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 300,
"name": "نستله نسكافيه كابتشينو سريعة التحضير 18 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه كابتشينو سريعة التحضير 18 جم",
"Product_EN": "Nestle Nescafe Cappuccino Instant 18 gm",
"Product_Id": "00004428 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 301,
"name": "نستله نسكافيه كابتشينو جولد فانيليا 18 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه كابتشينو جولد فانيليا 18 جم",
"Product_EN": "Nestle Nescafe Cappuccino Gold Vanilla 18 gm",
"Product_Id": "00004429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 302,
"name": "كادبورى مارفيلوس شيكولاته بحلوى مطرقعه 160 جم",
"price": 510,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى مارفيلوس شيكولاته بحلوى مطرقعه 160 جم",
"Product_EN": "Cadbury Marvelous Chocolate Crackers 160 gm",
"Product_Id": "00004430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 303,
"name": "حدائق كاليفورنيا فول مدمس بالخلطه اللبنانيه 450 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا فول مدمس بالخلطه اللبنانيه 450 جم",
"Product_EN": "California Fava Beans Lebanese Recipe 450 gm ",
"Product_Id": "00004431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 304,
"name": "العراقى طرشى بلدى وزن - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى طرشى بلدى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 305,
"name": "بيض احمر طبق - سعر البورصه - موقوف",
"price": 35.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيض احمر طبق - سعر البورصه - موقوف",
"Product_EN": null,
"Product_Id": "00004434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 306,
"name": "بيض ابيض طبق - سعر البورصه - موقوف",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيض ابيض طبق - سعر البورصه - موقوف",
"Product_EN": null,
"Product_Id": "00004435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 307,
"name": "شيبسى ميكس شيدر 40 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى ميكس شيدر 40 جم",
"Product_EN": null,
"Product_Id": "00004436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 308,
"name": "دوريتوس بالصلصه المكسيكى الحاره",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس بالصلصه المكسيكى الحاره",
"Product_EN": null,
"Product_Id": "00004437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 309,
"name": "صن بايتس طماطم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن بايتس طماطم",
"Product_EN": null,
"Product_Id": "00004438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 310,
"name": "لمارعصير رمان واناناس 230 مل",
"price": 6.65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمارعصير رمان واناناس 230 مل",
"Product_EN": "Lamar Pomegranate w Pineapple Juice 230 ml",
"Product_Id": "00004439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 311,
"name": "جليد معطر جو ورد 300ملل",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد معطر جو ورد 300ملل",
"Product_EN": null,
"Product_Id": "00004440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 312,
"name": "هيد اندشولدرز ضد التساقط 400 مل - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اندشولدرز ضد التساقط 400 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 313,
"name": "احمد تى شاى افطار ناعم 40 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى افطار ناعم 40 جم",
"Product_EN": "Ahmad Tea London Blend 40 gm",
"Product_Id": "00004442 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 314,
"name": "الرشيدى الميزان حلاوة سبريد 150 جم",
"price": 10.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان حلاوة سبريد 150 جم",
"Product_EN": "El Rashidi El Mizan Plain Spread Halawa 150 gm",
"Product_Id": "00004443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 315,
"name": "كريستال هوت صوص 88 مل - موقوف",
"price": 11.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال هوت صوص 88 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 316,
"name": "دومتى جبنة فيتا بلس 125 جم - موقوف",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنة فيتا بلس 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 317,
"name": "باندا جبنة قشطه كوب 240جم",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة قشطه كوب 240جم",
"Product_EN": null,
"Product_Id": "00004447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 318,
"name": "زينه مناديل متعددة الاستخدامات جامبو بكرة (XL)",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل متعددة الاستخدامات جامبو بكرة (XL)",
"Product_EN": null,
"Product_Id": "00004448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 319,
"name": "البوادى حلاوه طحينيه 165 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه طحينيه 165 جم",
"Product_EN": null,
"Product_Id": "00004449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 320,
"name": "نستله نيدو حليب مجفف 159 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نيدو حليب مجفف 159 جم",
"Product_EN": null,
"Product_Id": "00004450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 321,
"name": "كرودو بيتس بسكويت 2 صباع - موقوف",
"price": 27.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرودو بيتس بسكويت 2 صباع - موقوف",
"Product_EN": null,
"Product_Id": "00004451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 322,
"name": "كرودو بيتس بسكويت 2 صابع - موقوف",
"price": 28.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرودو بيتس بسكويت 2 صابع - موقوف",
"Product_EN": null,
"Product_Id": "00004452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 323,
"name": "كرودو بيتس بسكويت 1 صباع علبه *12 - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرودو بيتس بسكويت 1 صباع علبه *12 - موقوف",
"Product_EN": null,
"Product_Id": "00004453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 324,
"name": "كرودو بيتس بسكويت 1 صباع - موقوف",
"price": 22.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرودو بيتس بسكويت 1 صباع - موقوف",
"Product_EN": null,
"Product_Id": "00004454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 325,
"name": "كرودو بيتس بسكويت علبه *6 - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرودو بيتس بسكويت علبه *6 - موقوف",
"Product_EN": null,
"Product_Id": "00004455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 326,
"name": "فارم فريتس بسلة ساده 400 جم - موقوف",
"price": 8.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس بسلة ساده 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 327,
"name": "فارم فريتس بسلة بالجزر 400 جم - موقوف",
"price": 6.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس بسلة بالجزر 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 328,
"name": "فارم فريتس خضار مشكل 3 صنف 400 جم - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس خضار مشكل 3 صنف 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 329,
"name": "فارم فريتس مشكل بالذرة 4 صنف 400 جم - موقوف",
"price": 6.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس مشكل بالذرة 4 صنف 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 330,
"name": "فارم فريتس فاصوليا 400 جم - موقوف",
"price": 5.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس فاصوليا 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 331,
"name": "فارم فريتس شوربة خضار 400 جم - موقوف",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس شوربة خضار 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 332,
"name": "فارم فريتس بامية زيرو 400 جم - موقوف",
"price": 13.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس بامية زيرو 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 333,
"name": "فارم فريتس ممتازه 400 جم - موقوف",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس ممتازه 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 334,
"name": "فارم فريتس ملوخية 400 جم - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس ملوخية 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 335,
"name": "فارم فريتس سبانخ 400 جم - موقوف",
"price": 4.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس سبانخ 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 336,
"name": "فارم فريتس ورق عنب 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس ورق عنب 400 جم",
"Product_EN": null,
"Product_Id": "00004468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 337,
"name": "جهينة زبادى مكس سكر 75 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى مكس سكر 75 جم",
"Product_EN": "Juhayna Mix Sugar Yogurt 75 gm",
"Product_Id": "00004470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 338,
"name": "الفتح خل طبيعى 1 لتر - موقوف",
"price": 1.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:31",
"updated_at": "2021-11-01 19:45:31",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفتح خل طبيعى 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 339,
"name": "بشاير عصير كوكتيل 200 مل",
"price": 1.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بشاير عصير كوكتيل 200 مل",
"Product_EN": "Bashayer Cocktail Juice 200 ml",
"Product_Id": "00004472 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 340,
"name": "اطياب سجق شرقى بقرى 350 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب سجق شرقى بقرى 350 جم",
"Product_EN": "Atyab Oriental Sausage 350 g",
"Product_Id": "00004473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 341,
"name": "كنور شوربة كريمة الفطر 75 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور شوربة كريمة الفطر 75 جم",
"Product_EN": "Knorr Creamy Mushroom Soup 75 gm",
"Product_Id": "00004474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 342,
"name": "لافاش قشطه 350 جم ",
"price": 33.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش قشطه 350 جم ",
"Product_EN": "LaVash Cream 350 gm",
"Product_Id": "00004475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 343,
"name": "لافاش شيدر 350 جم - موقوف",
"price": 23.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش شيدر 350 جم - موقوف",
"Product_EN": "LaVash Cheddar 350 gm",
"Product_Id": "00004476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 344,
"name": "لافاش جبنة كريمى سبريد 350 جم",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كريمى سبريد 350 جم",
"Product_EN": "LaVash Cream Cheese Spread 350 gm",
"Product_Id": "00004477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 345,
"name": "فودينا لانشون ساده وزن - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فودينا لانشون ساده وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 346,
"name": "لافاش جبنة كريمى سبريد 200جم ",
"price": 19.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كريمى سبريد 200جم ",
"Product_EN": "LaVash Cream Cheese Spread 200 gm",
"Product_Id": "00004480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 347,
"name": "زاهر جبنه براميلى فلفل وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه براميلى فلفل وزن",
"Product_EN": "Zaher Barameli Cheese w Pepper - Scalable",
"Product_Id": "00004481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 348,
"name": "فيروز مشروب شعير توت 330 مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز مشروب شعير توت 330 مل",
"Product_EN": null,
"Product_Id": "00004482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 349,
"name": "دوريتوس بالجبنة المتبلة",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس بالجبنة المتبلة",
"Product_EN": null,
"Product_Id": "00004483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 350,
"name": "بيك رولز شطه وليمون",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز شطه وليمون",
"Product_EN": null,
"Product_Id": "00004484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 351,
"name": "الشمعدان ويفر محشو شيكولاتة علبه *6 - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان ويفر محشو شيكولاتة علبه *6 - موقوف",
"Product_EN": null,
"Product_Id": "00004485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 352,
"name": "الشمعدان ويفر محشو بالكاكاوعلبه *6",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان ويفر محشو بالكاكاوعلبه *6",
"Product_EN": null,
"Product_Id": "00004486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 353,
"name": "الشمعدان بسكويت نواعم - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان بسكويت نواعم - موقوف",
"Product_EN": null,
"Product_Id": "00004487 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 354,
"name": "الشمعدان بسكويت نواعم علبه *12",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان بسكويت نواعم علبه *12",
"Product_EN": null,
"Product_Id": "00004488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 355,
"name": "ديمه بسكويت بالفراوله 110 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت بالفراوله 110 جم",
"Product_EN": null,
"Product_Id": "00004489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 356,
"name": "عبد المعبود بن محوج مخصوص وسط 200 جم ",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج مخصوص وسط 200 جم ",
"Product_EN": "Abd El Maabud Medium Roast Coffee 200 gm",
"Product_Id": "00004490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 357,
"name": "برسيل مسحوق يدوى 240 جم - موقوف",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى 240 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 358,
"name": "ديتول صابون جددى نشاطك 90 جم",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون جددى نشاطك 90 جم",
"Product_EN": null,
"Product_Id": "00004492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 359,
"name": "لوكس صابون سحر الجمال 170 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون سحر الجمال 170 جم",
"Product_EN": "LUX Magical Beauty Soap 170 gm",
"Product_Id": "00004493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 360,
"name": "دريم مسحوق ام على 140 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق ام على 140 جم",
"Product_EN": "Dream Om Ali Powder 140 gm",
"Product_Id": "00004494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 361,
"name": "حليب جاموسى وزن - كود موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "حليب جاموسى وزن - كود موقوف",
"Product_EN": null,
"Product_Id": "00004495 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 362,
"name": "حليب بقرى وزن - كود موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "حليب بقرى وزن - كود موقوف",
"Product_EN": null,
"Product_Id": "00004496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 363,
"name": "ريد مبيد للحشرات الزاحفه 400 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ريد مبيد للحشرات الزاحفه 400 مل",
"Product_EN": null,
"Product_Id": "00004497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 364,
"name": "اريال مسحوق اتوماتيك داونى 500 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك داونى 500 جم",
"Product_EN": null,
"Product_Id": "00004498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 365,
"name": "تايد مسحوق اتوماتيك 2.5 كجم مركز - موقوف",
"price": 61.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق اتوماتيك 2.5 كجم مركز - موقوف",
"Product_EN": null,
"Product_Id": "00004499 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 366,
"name": "شنط كبيره وزن",
"price": 36.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شنط كبيره وزن",
"Product_EN": null,
"Product_Id": "00004501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 367,
"name": "شنط وسط وزن",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شنط وسط وزن",
"Product_EN": null,
"Product_Id": "00004503 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 368,
"name": "شنط صيدلية صغيره وزن",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شنط صيدلية صغيره وزن",
"Product_EN": null,
"Product_Id": "00004505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 369,
"name": "زاهر اكياس لبن مطبوعة وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر اكياس لبن مطبوعة وزن",
"Product_EN": null,
"Product_Id": "00004506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 370,
"name": "المطبخ برغل ناعم 350 جم - موقوف",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ برغل ناعم 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004507 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 371,
"name": "المطبخ عدس اصفر 350 جم - موقوف",
"price": 10.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ عدس اصفر 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 372,
"name": "المطبخ عدس بجبة 350 جم - موقوف",
"price": 10.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ عدس بجبة 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 373,
"name": "المطبخ فريك 350 جم - موقوف",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ فريك 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 374,
"name": "المطبخ فول تدميس 350 جم - موقوف",
"price": 7.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ فول تدميس 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 375,
"name": "زاهر حلويات مهلبيه قرع عسل وسط",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات مهلبيه قرع عسل وسط",
"Product_EN": "Zaher Muhallabia w Pumpkin - Medium Size",
"Product_Id": "00004512 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 376,
"name": "زاهر جبنه رومى مبشور 125 جم - موقوف",
"price": 9.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه رومى مبشور 125 جم - موقوف",
"Product_EN": "Zaher Grated Roumi Cheese 125 g",
"Product_Id": "00004513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 377,
"name": "باندا جبنة براميلى 250 جم",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة براميلى 250 جم",
"Product_EN": null,
"Product_Id": "00004515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 378,
"name": "باندا جبنه فيتا بالزيتون 250 جم",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنه فيتا بالزيتون 250 جم",
"Product_EN": null,
"Product_Id": "00004516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 379,
"name": "فيتراك مربى فراوله 450 جم _ موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 450 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00004517 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 380,
"name": "فيتراك مربى تين 450جم - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 450جم - موقوف",
"Product_EN": null,
"Product_Id": "00004518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 381,
"name": "فيتراك مربى فراوله 900 جم - موقوف",
"price": 21.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 382,
"name": "فيتراك شربات كركدية 770 مل",
"price": 20.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات كركدية 770 مل",
"Product_EN": null,
"Product_Id": "00004521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 383,
"name": "فيتراك شربات خروب 770 مل",
"price": 25.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات خروب 770 مل",
"Product_EN": null,
"Product_Id": "00004522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 384,
"name": "زاهر تشيز كيك توت احمر مثلثات - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تشيز كيك توت احمر مثلثات - موقوف",
"Product_EN": null,
"Product_Id": "00004523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 385,
"name": "زاهر تشيز كيك توت ازرق مثلثات - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تشيز كيك توت ازرق مثلثات - موقوف",
"Product_EN": null,
"Product_Id": "00004524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 386,
"name": "بليدج سائل رخام وسيراميك 750ملل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بليدج سائل رخام وسيراميك 750ملل",
"Product_EN": null,
"Product_Id": "00004526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 387,
"name": "افانتى جبنه بيضاء براميلى 1 كجم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى جبنه بيضاء براميلى 1 كجم",
"Product_EN": null,
"Product_Id": "00004527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 388,
"name": "افانتى جبنه بيضاء فيتا 1 كجم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى جبنه بيضاء فيتا 1 كجم",
"Product_EN": null,
"Product_Id": "00004528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 389,
"name": "الربيع عصير كوكتيل 250مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير كوكتيل 250مل - موقوف",
"Product_EN": null,
"Product_Id": "00004530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 390,
"name": "بسمه قرنبيط مجمد 400 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه قرنبيط مجمد 400 جم",
"Product_EN": "Basma Frozen Cauliflower 400 g",
"Product_Id": "00004531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 391,
"name": "لاندنا جوده ميلد وزن - موقوف",
"price": 105.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندنا جوده ميلد وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 392,
"name": "كامى صابون فينتاج 125 جم - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامى صابون فينتاج 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 393,
"name": "كامى صابون ديناميك 125 جم - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامى صابون ديناميك 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 394,
"name": "ليبتون شاى 50 فتلة - موقوف",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 50 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00004535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 395,
"name": "برسيل مسحوق عالى الرغوه 625 جم - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق عالى الرغوه 625 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 396,
"name": "باناسونيك حجر طرش ازرق 2ق",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "باناسونيك حجر طرش ازرق 2ق",
"Product_EN": null,
"Product_Id": "00004537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 397,
"name": "جهينة لبن ميكس فراولة 3ق عرض - موقوف",
"price": 11.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة لبن ميكس فراولة 3ق عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 398,
"name": "ديفاتول مطهر 1+1 ق 500 ملى عرض - موقوف",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديفاتول مطهر 1+1 ق 500 ملى عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 399,
"name": "كليوباترا كوين صابون 125 جم ازرق",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كليوباترا كوين صابون 125 جم ازرق",
"Product_EN": null,
"Product_Id": "00004540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 400,
"name": "رقه طوفى 10 جم",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رقه طوفى 10 جم",
"Product_EN": null,
"Product_Id": "00004542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 401,
"name": "رقه طوفى 10 جم علبه *450 ق",
"price": 112.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رقه طوفى 10 جم علبه *450 ق",
"Product_EN": null,
"Product_Id": "00004543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 402,
"name": "اتصالات كارت شحن 15 جنيه - موقوف",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 13,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 7,
"Subcategory": "اتصالات",
"Product_AR": "اتصالات كارت شحن 15 جنيه - موقوف",
"Product_EN": null,
"Product_Id": "00004544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 403,
"name": "لويد شاى اخضر باليمون 20كيس",
"price": 13.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لويد شاى اخضر باليمون 20كيس",
"Product_EN": null,
"Product_Id": "00004545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 404,
"name": "بيتو منظف اطباق 3 لتر",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بيتو منظف اطباق 3 لتر",
"Product_EN": null,
"Product_Id": "00004547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 405,
"name": "فيتراك مربى كريمى تين 420 جم",
"price": 10.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى كريمى تين 420 جم",
"Product_EN": null,
"Product_Id": "00004548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 406,
"name": "فيتراك مربى كريمى 380 جم عرض - موقوف",
"price": 10.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى كريمى 380 جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 407,
"name": "الطاهيه لانشون لحم بقرى 340 جم - موقوف",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه لانشون لحم بقرى 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 408,
"name": "ريتش بيك عيش فينو 6 ق",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك عيش فينو 6 ق",
"Product_EN": null,
"Product_Id": "00004552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 409,
"name": "الطاهية لانشون دجاج 340 جم - موقوف",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية لانشون دجاج 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 410,
"name": "كريستال صلصه الفول الصويا 295 مل - موقوف",
"price": 41.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال صلصه الفول الصويا 295 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 411,
"name": "كريستال صوص اللحم 283 مل - موقوف",
"price": 41.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال صوص اللحم 283 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 412,
"name": "زاهر كنافه عثمانى - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافه عثمانى - موقوف",
"Product_EN": null,
"Product_Id": "00004556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 413,
"name": "احمد تى شاى افطار 25 فتلة",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى افطار 25 فتلة",
"Product_EN": "Ahmad Tea English Breakfast Tea 25 Bags",
"Product_Id": "00004557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 414,
"name": "احمد تى شاى افطار انجليزى 25 فتلة",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى افطار انجليزى 25 فتلة",
"Product_EN": "Ahmad Tea Black Tea English Breakfast 25 Bags",
"Product_Id": "00004558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 415,
"name": "احمد تى شاى اخضر بالياسمين 25 فتلة",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر بالياسمين 25 فتلة",
"Product_EN": "Ahmad Tea Green Tea Jasmine 25 Bags",
"Product_Id": "00004559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 416,
"name": "احمد تى شاى اخضر بالنعناع 25 فتلة",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر بالنعناع 25 فتلة",
"Product_EN": "Ahmad Tea Green Tea & Mint 25 Bags",
"Product_Id": "00004560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 417,
"name": "احمد تى شاى افطار انجليزى 50 فتلة",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى افطار انجليزى 50 فتلة",
"Product_EN": "Ahmad Tea English Breakfast Tea 50 Bags",
"Product_Id": "00004561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 418,
"name": "احمد تى شاى افطار انجليزى 50 فتلة",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى افطار انجليزى 50 فتلة",
"Product_EN": "Ahmad Tea Black Tea English Breakfast 50 Bags",
"Product_Id": "00004562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 419,
"name": "اوكسى مسحوق اوتوماتيك 3 كجم",
"price": 82,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق اوتوماتيك 3 كجم",
"Product_EN": null,
"Product_Id": "00010439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 420,
"name": "اوكسى مسحوق اوتوماتيك 8 كجم + 2 كجم",
"price": 215,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق اوتوماتيك 8 كجم + 2 كجم",
"Product_EN": null,
"Product_Id": "00010440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 421,
"name": "دوش صابون تواليت 60 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوش صابون تواليت 60 جم - موقوف",
"Product_EN": null,
"Product_Id": "00010441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 422,
"name": "دوش صابون تواليت 60 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوش صابون تواليت 60 جم",
"Product_EN": null,
"Product_Id": "00010442 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 423,
"name": "دوش صابون تواليت 100 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوش صابون تواليت 100 جم",
"Product_EN": null,
"Product_Id": "00010443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 424,
"name": "اوكسى مسحوق يدوى 825 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوى 825 جم",
"Product_EN": null,
"Product_Id": "00010445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 425,
"name": "اوكسى مسحوق اوتوماتيك 1100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق اوتوماتيك 1100 جم",
"Product_EN": null,
"Product_Id": "00010446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 426,
"name": "اوكسى مسحوق اوتوماتيك 2.150",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق اوتوماتيك 2.150",
"Product_EN": null,
"Product_Id": "00010447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 427,
"name": "اوكسى جل اتوماتيك 900 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى جل اتوماتيك 900 مل",
"Product_EN": null,
"Product_Id": "00010448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 428,
"name": "اوكسى مسحوق اوتوماتيك 4كجم",
"price": 104,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق اوتوماتيك 4كجم",
"Product_EN": null,
"Product_Id": "00010449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 429,
"name": "اوكسى مسحوق يدوى 350 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوى 350 جم",
"Product_EN": null,
"Product_Id": "00010450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 430,
"name": "اوكسى مسحوق يدوي 60 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوي 60 جم",
"Product_EN": null,
"Product_Id": "00010451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 431,
"name": "اوكسى مسحوق يدوى 95 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوى 95 جم",
"Product_EN": null,
"Product_Id": "00010452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 432,
"name": "اوكسى مسحوق يدوى 170 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوى 170 جم - موقوف",
"Product_EN": null,
"Product_Id": "00010453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 433,
"name": "اوكسى مسحوق يدوى 575 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوى 575 جم",
"Product_EN": null,
"Product_Id": "00010454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 434,
"name": "ريفولى سائل تنظيف ايدى عود 500 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريفولى سائل تنظيف ايدى عود 500 مل",
"Product_EN": null,
"Product_Id": "00010455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 435,
"name": "ريفولى صابون 175 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريفولى صابون 175 جم",
"Product_EN": null,
"Product_Id": "00010456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 436,
"name": "اريال يدوى ياسمين 1كجم",
"price": 27.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال يدوى ياسمين 1كجم",
"Product_EN": null,
"Product_Id": "00010457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 437,
"name": "اريال جل عطر اصلى 1.8 كجم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال جل عطر اصلى 1.8 كجم",
"Product_EN": null,
"Product_Id": "00010458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 438,
"name": "الويز الترا فوط صحيه طويل 32 فوطه",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز الترا فوط صحيه طويل 32 فوطه",
"Product_EN": null,
"Product_Id": "00010459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 439,
"name": "الويز التر الطويل جدا3+1 هدية كواترو 28 فوطه",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز التر الطويل جدا3+1 هدية كواترو 28 فوطه",
"Product_EN": null,
"Product_Id": "00010461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 440,
"name": "الولويز الترا فوط صحيه طويل 16 فوطه",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الولويز الترا فوط صحيه طويل 16 فوطه",
"Product_EN": null,
"Product_Id": "00010463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 441,
"name": "الويز ملمس قطنى فردى طويل نعومه الريش 16*8 فوطه",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ملمس قطنى فردى طويل نعومه الريش 16*8 فوطه",
"Product_EN": "",
"Product_Id": "00010464 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 442,
"name": "الويز ماكس دوبل 16*18 ( موقوف )",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ماكس دوبل 16*18 ( موقوف )",
"Product_EN": null,
"Product_Id": "00010465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 443,
"name": "كرست معجون حمايه التسوس 125 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كرست معجون حمايه التسوس 125 مل",
"Product_EN": null,
"Product_Id": "00010466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 444,
"name": "داونى مركز منعم ملابس نسيم الوادى 1.5 لتر",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز منعم ملابس نسيم الوادى 1.5 لتر",
"Product_EN": null,
"Product_Id": "00010467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 445,
"name": "داونى منعم ملابس مركز الرفاهية 1 لتر عرض",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم ملابس مركز الرفاهية 1 لتر عرض",
"Product_EN": null,
"Product_Id": "00010468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 446,
"name": "داونى منعم ملابس مركز احساسالرومانسيه 1.380",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم ملابس مركز احساسالرومانسيه 1.380",
"Product_EN": null,
"Product_Id": "00010469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 447,
"name": "داونى مركز منعم ملابس احساس الاسترخاء 880 مل",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز منعم ملابس احساس الاسترخاء 880 مل",
"Product_EN": null,
"Product_Id": "00010470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 448,
"name": "فيرى ليمون اخضر 1 لتر",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى ليمون اخضر 1 لتر",
"Product_EN": null,
"Product_Id": "00010471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 449,
"name": "فيرى سائل تنظيف اطباق ليمون 500 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى سائل تنظيف اطباق ليمون 500 مل",
"Product_EN": null,
"Product_Id": "00010472 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 450,
"name": "بلوتو بلاس ماكينه حلاقه حريمى 5 ق",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بلوتو بلاس ماكينه حلاقه حريمى 5 ق",
"Product_EN": null,
"Product_Id": "00010473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 451,
"name": "فيوجن ماكينه حلاقه حمايه للوجه",
"price": 195,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيوجن ماكينه حلاقه حمايه للوجه",
"Product_EN": null,
"Product_Id": "00010474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 452,
"name": "كارت امواس بروشيبد 4 موس",
"price": 275,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كارت امواس بروشيبد 4 موس",
"Product_EN": null,
"Product_Id": "00010475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 453,
"name": "ماك ثرى ماكينه حلاقه تربو 1 موس",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماك ثرى ماكينه حلاقه تربو 1 موس",
"Product_EN": null,
"Product_Id": "00010476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 454,
"name": "ماك ثرى ماكينه حلاقه 4 موس",
"price": 152,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماك ثرى ماكينه حلاقه 4 موس",
"Product_EN": null,
"Product_Id": "00010477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 455,
"name": "بلوتو بلاس ماكينه حلاقه 15+5",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بلوتو بلاس ماكينه حلاقه 15+5",
"Product_EN": null,
"Product_Id": "00010478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 456,
"name": "بلوتو بلاس ماكينه حلاقه 5 ق",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بلوتو بلاس ماكينه حلاقه 5 ق",
"Product_EN": null,
"Product_Id": "00010479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 457,
"name": "بلوتو بلاس ماكينه حلاقه 10 ق",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بلوتو بلاس ماكينه حلاقه 10 ق",
"Product_EN": null,
"Product_Id": "00010480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 458,
"name": "فيوجن باور كارت امواس 4 موس",
"price": 245,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيوجن باور كارت امواس 4 موس",
"Product_EN": null,
"Product_Id": "00010481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 459,
"name": "كارت امواس فيوجن باور 8 موس",
"price": 382,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كارت امواس فيوجن باور 8 موس",
"Product_EN": null,
"Product_Id": "00010482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 460,
"name": "بروجلايد باور ستيلر",
"price": 284,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بروجلايد باور ستيلر",
"Product_EN": null,
"Product_Id": "00010483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 461,
"name": "بلو ثرى ماكينه حلاقه 6 ماكينه",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بلو ثرى ماكينه حلاقه 6 ماكينه",
"Product_EN": null,
"Product_Id": "00010484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 462,
"name": "بلو ثرى ماكينه حلاقه حساس 9 ماكينه",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بلو ثرى ماكينه حلاقه حساس 9 ماكينه",
"Product_EN": null,
"Product_Id": "00010485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 463,
"name": "بلو ثرى حساس كيس 9 ماكينه",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بلو ثرى حساس كيس 9 ماكينه",
"Product_EN": null,
"Product_Id": "00010486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 464,
"name": "فينوس ماكينه سيمبلى 1 موس",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فينوس ماكينه سيمبلى 1 موس",
"Product_EN": null,
"Product_Id": "00010487 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 465,
"name": "ماكينه حلاقه فينوس 2 موس",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماكينه حلاقه فينوس 2 موس",
"Product_EN": null,
"Product_Id": "00010488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 466,
"name": "فينوس ماكينه حساس حريمى كارت 3",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فينوس ماكينه حساس حريمى كارت 3",
"Product_EN": null,
"Product_Id": "00010490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 467,
"name": "بروجليد ماكينه حلاقه عادى 1 موس",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بروجليد ماكينه حلاقه عادى 1 موس",
"Product_EN": null,
"Product_Id": "00010491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 468,
"name": "فينوس ماكينه سيمبل حريمى",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فينوس ماكينه سيمبل حريمى",
"Product_EN": null,
"Product_Id": "00010492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 469,
"name": "فيوجن 2 امواس",
"price": 112,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيوجن 2 امواس",
"Product_EN": null,
"Product_Id": "00010494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 470,
"name": "جل حلاقه للبشره الحساسه 200 مل",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "جل حلاقه للبشره الحساسه 200 مل",
"Product_EN": null,
"Product_Id": "00010496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 471,
"name": "ماك ثرى جل حلاقه راحه اضافيه 200 مل",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماك ثرى جل حلاقه راحه اضافيه 200 مل",
"Product_EN": null,
"Product_Id": "00010497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 472,
"name": "ماك ثرى جل بشره حساسه 200 مل",
"price": 67.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماك ثرى جل بشره حساسه 200 مل",
"Product_EN": null,
"Product_Id": "00010498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 473,
"name": "رو بطاطس هيكورى مدخن 50 -57 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس هيكورى مدخن 50 -57 جم",
"Product_EN": null,
"Product_Id": "00010500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 474,
"name": "رو بطاطس ملح بحر 50-57 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس ملح بحر 50-57 جم",
"Product_EN": null,
"Product_Id": "00010501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 475,
"name": "فارم فريتس شيبس 500 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس شيبس 500 جم",
"Product_EN": null,
"Product_Id": "00010502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 476,
"name": "فارم فريتس الوميت 2.5 كجم",
"price": 63,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس الوميت 2.5 كجم",
"Product_EN": null,
"Product_Id": "00010503 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 477,
"name": "فارم فريتس كرنكل 1 كجم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس كرنكل 1 كجم",
"Product_EN": null,
"Product_Id": "00010504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 478,
"name": "فارم فريتس ودجز 750 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس ودجز 750 جم",
"Product_EN": null,
"Product_Id": "00010505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 479,
"name": "فارم فريتس ستيك هاوس",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس ستيك هاوس",
"Product_EN": null,
"Product_Id": "00010506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 480,
"name": "كيت كات شوكولاتة 4 أصابع 5+1",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة 4 أصابع 5+1",
"Product_EN": "Kit Kat Chocolate 4 Fingers 5+1",
"Product_Id": "00010507 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 481,
"name": "ماكنتوش شوكولاتة علبة 375 جم",
"price": 133,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكنتوش شوكولاتة علبة 375 جم",
"Product_EN": "Mackintosh's Chocolate Can 375 gm",
"Product_Id": "00010508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 482,
"name": "ماكنتوش شوكولاتة كواليتى 850 جم",
"price": 288,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكنتوش شوكولاتة كواليتى 850 جم",
"Product_EN": "Mackintosh's Quality Chocolate 850 gm",
"Product_Id": "00010509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 483,
"name": "كيت كات ميني مومنتس شوكولاته 272 جم ",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات ميني مومنتس شوكولاته 272 جم ",
"Product_EN": "Kit Kat Mini Moments Chocolate 272 gm",
"Product_Id": "00010510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 484,
"name": "كيت كات مينى مومنتس 255 جم",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات مينى مومنتس 255 جم",
"Product_EN": "Kit Kat Mini Moments Desserts 15 Pieces 255 gm",
"Product_Id": "00010511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 485,
"name": "مينى مينيز 232 جم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مينى مينيز 232 جم",
"Product_EN": "Mini Minis 232 gm",
"Product_Id": "00010513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 486,
"name": "مارى بسكويت ساده 28 جم قطعه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مارى بسكويت ساده 28 جم قطعه",
"Product_EN": null,
"Product_Id": "00010515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 487,
"name": "اولكر بسكويت شاى سادة",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت شاى سادة",
"Product_EN": null,
"Product_Id": "00010516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 488,
"name": "ثينز دايجستف 93 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ثينز دايجستف 93 جم",
"Product_EN": null,
"Product_Id": "00010517 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 489,
"name": "دايجستيف لايت مينى 60 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستيف لايت مينى 60 جم",
"Product_EN": null,
"Product_Id": "00010518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 490,
"name": "ماكنتوش شوكولاتة كيس 200 جم",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكنتوش شوكولاتة كيس 200 جم",
"Product_EN": "Mackintosh's Chocolate Bag 200 gm",
"Product_Id": "00010519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 491,
"name": "حلوانى ستيك برجر بقرى 4 ق",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى ستيك برجر بقرى 4 ق",
"Product_EN": "Halwani Steak Burger Beef 4 Pieces",
"Product_Id": "00010520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 492,
"name": "حلوانى سوسيس كوكتيل بقرى 350 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى سوسيس كوكتيل بقرى 350 جم",
"Product_EN": "Halwani Beef Cocktail Sausage 350 gm",
"Product_Id": "00010521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 493,
"name": "حلوانى برجر بقرى جامبو 2 كجم 20 ق",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى برجر بقرى جامبو 2 كجم 20 ق",
"Product_EN": "Halwani Jumbo Burger 2 kg - 20 Pieces",
"Product_Id": "00010522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 494,
"name": "كيت كات مينى توينز 110 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات مينى توينز 110 جم",
"Product_EN": "Kit Kat Mini Twins 110 gm",
"Product_Id": "00010524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 495,
"name": "اندومى شعريه سريعه التحضير بطعم السجق 70 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير بطعم السجق 70 جم",
"Product_EN": null,
"Product_Id": "00010525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 496,
"name": "زاهر زيتون اسبانى مخلل طبيعى زجاج 400 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر زيتون اسبانى مخلل طبيعى زجاج 400 جم",
"Product_EN": null,
"Product_Id": "00010526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 497,
"name": "زاهر زيتون اسبانى مخلل طبيعى زجاج 600 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر زيتون اسبانى مخلل طبيعى زجاج 600 جم",
"Product_EN": null,
"Product_Id": "00010527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 498,
"name": "زاهر فلفل شيرى زجاج 400 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر فلفل شيرى زجاج 400 جم",
"Product_EN": null,
"Product_Id": "00010529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 499,
"name": "زاهر فلفل شيرى زجاج 600 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر فلفل شيرى زجاج 600 جم",
"Product_EN": null,
"Product_Id": "00010530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 500,
"name": "زاهر شمع عسل 250 جم - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر شمع عسل 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00010531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 501,
"name": "نسكافيه اربيانا قهوه عربى بنكهه الهيل ظرف 17 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه اربيانا قهوه عربى بنكهه الهيل ظرف 17 جم",
"Product_EN": null,
"Product_Id": "00010532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 502,
"name": "نيدو حليب مجفف 700 جم",
"price": 98,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيدو حليب مجفف 700 جم",
"Product_EN": null,
"Product_Id": "00010533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 503,
"name": "نيدو حليب بودره 1.500+ كيس 450 جم هديه",
"price": 188,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيدو حليب بودره 1.500+ كيس 450 جم هديه",
"Product_EN": null,
"Product_Id": "00010534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 504,
"name": "نستله سيريلاك تمر وقمح مع اللبن 125 جم",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله سيريلاك تمر وقمح مع اللبن 125 جم",
"Product_EN": null,
"Product_Id": "00010535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 505,
"name": "نستله سيريلاك 3 فواكه وقمح مع اللبن 250 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله سيريلاك 3 فواكه وقمح مع اللبن 250 جم",
"Product_EN": null,
"Product_Id": "00010537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 506,
"name": "نستلة سيريلاك عسل وقمح مع اللبن 250 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستلة سيريلاك عسل وقمح مع اللبن 250 جم",
"Product_EN": null,
"Product_Id": "00010538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 507,
"name": "نسكافيه جولد ديكاف قهوة سريعه التحضير برطمان 100جم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه جولد ديكاف قهوة سريعه التحضير برطمان 100جم",
"Product_EN": null,
"Product_Id": "00010539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 508,
"name": "لافاش كيرى جبنه اورانج 40 ق",
"price": 44.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش كيرى جبنه اورانج 40 ق",
"Product_EN": "LaVash Kiri Orange Cheese 40 Pieces",
"Product_Id": "00010540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 509,
"name": "كيرى جبنه مثلثات كريمى 8 ق",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مثلثات كريمى 8 ق",
"Product_EN": "Kiri Creamy Triangle Cheese 8 Pieces",
"Product_Id": "00010541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 510,
"name": "كيرى جبنه مثلثات كريمى 16 ق - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مثلثات كريمى 16 ق - موقوف",
"Product_EN": "Kiri Creamy Triangle Cheese 16 Pieces",
"Product_Id": "00010542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 511,
"name": "ابو الولد جبنه مثلثات 40 قطعه",
"price": 35.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابو الولد جبنه مثلثات 40 قطعه",
"Product_EN": "Abu El Walad Triangle Cheese 40 Pieces",
"Product_Id": "00010543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 512,
"name": "اللحيمى برجر جامبو 15 ق",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى برجر جامبو 15 ق",
"Product_EN": "Elleheimy Burger Jumbo 15 Pieces ",
"Product_Id": "00010544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 513,
"name": "اللحيمى سجق شرقى 850 جم",
"price": 67.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى سجق شرقى 850 جم",
"Product_EN": "Elleheimy Oriental Sausages 850 gm",
"Product_Id": "00010545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 514,
"name": "ريتش ممبار ارز 600 جم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش ممبار ارز 600 جم",
"Product_EN": "Rich Rice Mombar 600 gm",
"Product_Id": "00010546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 515,
"name": "ريتش كفته ارز 700 جم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش كفته ارز 700 جم",
"Product_EN": "Rich Rice Kofta 700 gm",
"Product_Id": "00010547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 516,
"name": "ريتش كفته داوود باشا 500 جم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش كفته داوود باشا 500 جم",
"Product_EN": "Rich Kofta DawooD Pasha 500 gm ",
"Product_Id": "00010548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 517,
"name": "ريتش حواوشى 2 رغيف",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش حواوشى 2 رغيف",
"Product_EN": "Rich Hawawshi 2 Loaves",
"Product_Id": "00010549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 518,
"name": "فلوتس شوكولاتة 4+1 مجانا 22.5 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلوتس شوكولاتة 4+1 مجانا 22.5 جم",
"Product_EN": "Flutes Chocolate 4+1 Free 22.5 gm",
"Product_Id": "00010550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 519,
"name": "باونتى شوكولاته جوز هند 28.5 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باونتى شوكولاته جوز هند 28.5 جم",
"Product_EN": "Bounty Chocolate Coconut 28.5 gm",
"Product_Id": "00010551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 520,
"name": "الزهار سمبوسك 3 ق شرنك مجلة",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الزهار سمبوسك 3 ق شرنك مجلة",
"Product_EN": "Zahar Sambousek 3 Pieces",
"Product_Id": "00010552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 521,
"name": "عطاره . لوبيا بلدى وزن",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لوبيا بلدى وزن",
"Product_EN": "Attara Black Eyed Peas Baladi - Scalable ",
"Product_Id": "00010553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 522,
"name": "عطاره . عدس بجبة مستورد وزن",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . عدس بجبة مستورد وزن",
"Product_EN": " Brown Lentils Imported - Scalable ",
"Product_Id": "00010554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 523,
"name": "عطاره . فول مدشوش وزن",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فول مدشوش وزن",
"Product_EN": "Crushed Beans - Scalable ",
"Product_Id": "00010555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 524,
"name": "ذره فيشار وزن",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ذره فيشار وزن",
"Product_EN": "Pop Corn - Scalable",
"Product_Id": "00010556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 525,
"name": "عطاره . فريك اخضر وزن",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فريك اخضر وزن",
"Product_EN": "Freekeh Green Imported - Scalable",
"Product_Id": "00010557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 526,
"name": "فريك بلدى وزن",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريك بلدى وزن",
"Product_EN": "Freekeh Baladi - Scalable ",
"Product_Id": "00010558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 527,
"name": "موقوف - فريك بلدى وزن",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موقوف - فريك بلدى وزن",
"Product_EN": null,
"Product_Id": "00010559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 528,
"name": "عطاره . ترمس مستورد وزن",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ترمس مستورد وزن",
"Product_EN": "Lupine Imported - Scalable ",
"Product_Id": "00010560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 529,
"name": "عطاره . حلبه وزن",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . حلبه وزن",
"Product_EN": null,
"Product_Id": "00010561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 530,
"name": "حمص الشام صغير وزن ",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حمص الشام صغير وزن ",
"Product_EN": "Chickpeas Small - Scalable",
"Product_Id": "00010562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 531,
"name": "عطاره . حمص الشام كبير وزن",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . حمص الشام كبير وزن",
"Product_EN": "Chickpeas Large - Scalable",
"Product_Id": "00010563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 532,
"name": "ارز بسمتى رقم 3 وزن - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ارز بسمتى رقم 3 وزن - موقوف",
"Product_EN": null,
"Product_Id": "00010564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 533,
"name": "عطاره . ارز بلدى عريض وزن",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ارز بلدى عريض وزن",
"Product_EN": "Rice Baladi Wide - Scalable ",
"Product_Id": "00010565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 534,
"name": "عطاره . قمح مبشور وزن",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . قمح مبشور وزن",
"Product_EN": "Hulled Wheat - Scalable ",
"Product_Id": "00010566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 535,
"name": "اطياب شيش دجاج مشوى 1 كجم",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب شيش دجاج مشوى 1 كجم",
"Product_EN": "Atyab Grilled Chicken Shish Fully Cooked 1 Kg",
"Product_Id": "00010567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 536,
"name": "اطياب صدور بانيه حار 2 كجم",
"price": 165,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب صدور بانيه حار 2 كجم",
"Product_EN": "Atyab Hot Crispy Chicken Pane 2 Kg",
"Product_Id": "00010568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 537,
"name": "اطياب صدور بانيه بارد 2 كجم",
"price": 183,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب صدور بانيه بارد 2 كجم",
"Product_EN": "Atyab Craspy Chicken Pane 2 Kg",
"Product_Id": "00010569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 538,
"name": "اطياب وجبة دجاج بارد جردل 9 ق",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب وجبة دجاج بارد جردل 9 ق",
"Product_EN": "Atyab Whole Chicken Fried 9 pieces",
"Product_Id": "00010570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 539,
"name": "اطياب وجبة دجاج حار جردل 9 ق",
"price": 112,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب وجبة دجاج حار جردل 9 ق",
"Product_EN": "Atyab Hot Whole Chicken Fried 9 pieces",
"Product_Id": "00010571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 540,
"name": "اطياب برجر بقرى جامبو 1.5 كجم",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب برجر بقرى جامبو 1.5 كجم",
"Product_EN": "Atyab Jumbo Beef Burger 1.500 Kg",
"Product_Id": "00010572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 541,
"name": "اطياب شاورمه دجاج 350 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب شاورمه دجاج 350 جم",
"Product_EN": "Atyab Chicken Shawerma 350 g",
"Product_Id": "00010573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 542,
"name": "اطياب فيلية دجاج مشوى 500 جم",
"price": 83,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب فيلية دجاج مشوى 500 جم",
"Product_EN": "Atyab Grilled Chicken Fillet 500 g",
"Product_Id": "00010574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 543,
"name": "عبور لاند جبنه قشطه سبريد كوب 240 جم ",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه قشطه سبريد كوب 240 جم ",
"Product_EN": "Obour Land Spread Creamy Cheese 240 gm",
"Product_Id": "00010575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 544,
"name": "عبور لاند جبنه رومى سبريد كوب 240 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه رومى سبريد كوب 240 جم",
"Product_EN": "Obour Land Spread Roumy Cheese 240 gm",
"Product_Id": "00010576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 545,
"name": "عبور لاند جبنه شيدر سبريد كوب 240 جم ",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه شيدر سبريد كوب 240 جم ",
"Product_EN": "Obour Land Spread Cheddar Cheese 240 gm",
"Product_Id": "00010577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 546,
"name": "ايزيس شاى رجيم 2 + 1 عرض",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس شاى رجيم 2 + 1 عرض",
"Product_EN": "Isis Diet Tea ( 2+1 ) Offer",
"Product_Id": "00010578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 547,
"name": "هيلثى فاصوليا حمراء 400 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى فاصوليا حمراء 400 جم",
"Product_EN": null,
"Product_Id": "00010579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 548,
"name": "هيلثى فاصوليا بالصلصه 400 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى فاصوليا بالصلصه 400 جم",
"Product_EN": null,
"Product_Id": "00010580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 549,
"name": "هيلثى فاصوليا بيضاء 400 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى فاصوليا بيضاء 400 جم",
"Product_EN": null,
"Product_Id": "00010581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 550,
"name": "توينتى فور ورق عنب نباتى 900 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "توينتى فور ورق عنب نباتى 900 جم",
"Product_EN": null,
"Product_Id": "00010582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 551,
"name": "كوكو كوين حليب جوز هند 290 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكو كوين حليب جوز هند 290 مل",
"Product_EN": null,
"Product_Id": "00010583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 552,
"name": "لاف ايت بسكويت بالشيكولاته 88 جم",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لاف ايت بسكويت بالشيكولاته 88 جم",
"Product_EN": null,
"Product_Id": "00010584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 553,
"name": "لاف ايت بسكويت بالتوت 88 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لاف ايت بسكويت بالتوت 88 جم",
"Product_EN": null,
"Product_Id": "00010585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 554,
"name": "شيكى لوب بسكويت مارشميلو 120 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيكى لوب بسكويت مارشميلو 120 جم",
"Product_EN": null,
"Product_Id": "00010586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 555,
"name": "فوفو شيكولاته + لعبه 20جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فوفو شيكولاته + لعبه 20جم",
"Product_EN": null,
"Product_Id": "00010587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 556,
"name": "مستر بوتيتو بطاطس حار 45جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مستر بوتيتو بطاطس حار 45جم",
"Product_EN": null,
"Product_Id": "00010588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 557,
"name": "مستر بوتيتو بطاطس حار 45جم - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مستر بوتيتو بطاطس حار 45جم - موقوف",
"Product_EN": null,
"Product_Id": "00010592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 558,
"name": "فيتراك مربى التوت الاحمر 450 جم",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى التوت الاحمر 450 جم",
"Product_EN": null,
"Product_Id": "00010594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 559,
"name": "فيتراك مربى التوت الازرق 450 جم",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى التوت الازرق 450 جم",
"Product_EN": null,
"Product_Id": "00010595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 560,
"name": "فيتراك مربى الكريز الاسود 450 جم",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى الكريز الاسود 450 جم",
"Product_EN": null,
"Product_Id": "00010596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 561,
"name": "باناسونيك حجر طرش 2ق كارت",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "باناسونيك حجر طرش 2ق كارت",
"Product_EN": null,
"Product_Id": "00010597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 562,
"name": "فريدا معطر مانجو بابايا 460 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا معطر مانجو بابايا 460 مل",
"Product_EN": null,
"Product_Id": "00010598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 563,
"name": "فريده معطر ياسمين 460 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريده معطر ياسمين 460 مل",
"Product_EN": null,
"Product_Id": "00010599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 564,
"name": "فريده معطر زنبق 460 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريده معطر زنبق 460 مل",
"Product_EN": null,
"Product_Id": "00010600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 565,
"name": "كرانشئ فراخ 3 ج",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشئ فراخ 3 ج",
"Product_EN": null,
"Product_Id": "00010601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 566,
"name": "كرانشئ طماطم 3 ج",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشئ طماطم 3 ج",
"Product_EN": null,
"Product_Id": "00010602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 567,
"name": "كرانشئ جبنة متبلة",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشئ جبنة متبلة",
"Product_EN": null,
"Product_Id": "00010603 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 568,
"name": "كرانشى شيش كباب",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى شيش كباب",
"Product_EN": null,
"Product_Id": "00010604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 569,
"name": "كرانشى فلفل حلو",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى فلفل حلو",
"Product_EN": null,
"Product_Id": "00010605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 570,
"name": "كرانشى برجر",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى برجر",
"Product_EN": null,
"Product_Id": "00010606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 571,
"name": "دوريتوس جبنة الناتشو",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس جبنة الناتشو",
"Product_EN": null,
"Product_Id": "00010607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 572,
"name": "شيتوس كرانشى",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس كرانشى",
"Product_EN": null,
"Product_Id": "00010609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 573,
"name": "صن بايتس ليمون زعتر",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن بايتس ليمون زعتر",
"Product_EN": null,
"Product_Id": "00010610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 574,
"name": "بلح احمر وزن",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بلح احمر وزن",
"Product_EN": null,
"Product_Id": "00010611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 575,
"name": "نكتارين مستورد وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نكتارين مستورد وزن",
"Product_EN": null,
"Product_Id": "00010612 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 576,
"name": "بطاطا وزن",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بطاطا وزن",
"Product_EN": null,
"Product_Id": "00010613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 577,
"name": "ليمون بلدى وزن",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ليمون بلدى وزن",
"Product_EN": null,
"Product_Id": "00010617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 578,
"name": "باذنجان عروس ابيض وزن",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باذنجان عروس ابيض وزن",
"Product_EN": null,
"Product_Id": "00010618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 579,
"name": "باذنجان عروس اسود وزن",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باذنجان عروس اسود وزن",
"Product_EN": null,
"Product_Id": "00010619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 580,
"name": "روز مارى 1 ق",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "روز مارى 1 ق",
"Product_EN": null,
"Product_Id": "00010620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 581,
"name": "زعتر 1 ق",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زعتر 1 ق",
"Product_EN": null,
"Product_Id": "00010621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 582,
"name": "عطاره . ارز بسمتى رقم 2 وزن",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ارز بسمتى رقم 2 وزن",
"Product_EN": "Rice Basmati Number 2 - Scalable",
"Product_Id": "00010622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 583,
"name": "عطاره . فاصوليا بيضاء وزن",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فاصوليا بيضاء وزن",
"Product_EN": "Abu Al-layl Beans - Scalable ",
"Product_Id": "00010623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 584,
"name": "وادى فود صلصه طماطم برطمان 360 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود صلصه طماطم برطمان 360 جم",
"Product_EN": null,
"Product_Id": "00010624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 585,
"name": "كاكا وزن",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كاكا وزن",
"Product_EN": null,
"Product_Id": "00010625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 586,
"name": "جريب فروت وزن",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جريب فروت وزن",
"Product_EN": null,
"Product_Id": "00010627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 587,
"name": "ثوم صينى شبكة 200 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثوم صينى شبكة 200 جم",
"Product_EN": null,
"Product_Id": "00010628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 588,
"name": "باذنجان رومى وزن",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باذنجان رومى وزن",
"Product_EN": null,
"Product_Id": "00010629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 589,
"name": "برتقال بصره وزن",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برتقال بصره وزن",
"Product_EN": null,
"Product_Id": "00010630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 590,
"name": "موز مستورد وزن",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "موز مستورد وزن",
"Product_EN": null,
"Product_Id": "00010631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 591,
"name": "تفاح ايطالى \/ رويال سكرى وزن",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تفاح ايطالى \/ رويال سكرى وزن",
"Product_EN": null,
"Product_Id": "00010632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 592,
"name": "جرين لاند فيتا بسطرمه تتراباك 500 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند فيتا بسطرمه تتراباك 500 جم",
"Product_EN": "Green Land Cheese Feta Pastrami 500 gm",
"Product_Id": "00010633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 593,
"name": "جرين لاند جبنه فيتا لايت 250 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه فيتا لايت 250 جم",
"Product_EN": "Greenland Light Feta Cheese 250 gm",
"Product_Id": "00010635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 594,
"name": "جرين لاند جبنه موزريلا 325 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه موزريلا 325 جم",
"Product_EN": "Green Land Mozzarella Cheese 200 gm",
"Product_Id": "00010637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 595,
"name": "جرين لاند جبنه فيتا زيتون تتراباك 500 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه فيتا زيتون تتراباك 500 جم",
"Product_EN": "Green Land Feta Cheese Olives 500 gm",
"Product_Id": "00010638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 596,
"name": "هيربال بلسم بحليب جوز الهند 400 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال بلسم بحليب جوز الهند 400 مل",
"Product_EN": null,
"Product_Id": "00010640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 597,
"name": "هيربال شامبو بزيت المورينجا 400 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال شامبو بزيت المورينجا 400 مل",
"Product_EN": null,
"Product_Id": "00010641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 598,
"name": "هيربال شامبو بزيت المورينجا 400 مل - موقوف",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال شامبو بزيت المورينجا 400 مل - موقوف",
"Product_EN": null,
"Product_Id": "00010642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 599,
"name": "هيربال شامبو فاكهه البن العربى 400 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال شامبو فاكهه البن العربى 400 مل",
"Product_EN": null,
"Product_Id": "00010644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 600,
"name": "هيربال شامبو فاكهه البن العربى 400 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال شامبو فاكهه البن العربى 400 مل",
"Product_EN": null,
"Product_Id": "00010645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 601,
"name": "اورال بى فيجن 40 ناعم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى فيجن 40 ناعم",
"Product_EN": null,
"Product_Id": "00010646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 602,
"name": "اورال بى رفيعه جدا",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى رفيعه جدا",
"Product_EN": null,
"Product_Id": "00010648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 603,
"name": "اورال بى اكسبيرت 40 متوسط 3 فرشة ",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى اكسبيرت 40 متوسط 3 فرشة ",
"Product_EN": null,
"Product_Id": "00010649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 604,
"name": "اورال بى ثلاثى الابعاد برو فليكس لوكس 38 ناعم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى ثلاثى الابعاد برو فليكس لوكس 38 ناعم",
"Product_EN": null,
"Product_Id": "00010651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 605,
"name": "بامبرز جامبو م 1 3*60 حفاضه",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بامبرز جامبو م 1 3*60 حفاضه",
"Product_EN": null,
"Product_Id": "00010652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 606,
"name": "بامبرز عنايه مميزه حفاضات اطفال مقاس 3 - 64 حفاظه",
"price": 195,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز عنايه مميزه حفاضات اطفال مقاس 3 - 64 حفاظه",
"Product_EN": null,
"Product_Id": "00010655 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 607,
"name": "بامبرز عنايه مميزه حفاضات اطفال مقاس 4 - 64 حفاظه",
"price": 195,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز عنايه مميزه حفاضات اطفال مقاس 4 - 64 حفاظه",
"Product_EN": null,
"Product_Id": "00010656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 608,
"name": "بامبرز عنايه مميزه حفاضات اطفال مقاس 5 - 60 حفاظه",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز عنايه مميزه حفاضات اطفال مقاس 5 - 60 حفاظه",
"Product_EN": null,
"Product_Id": "00010657 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 609,
"name": "بامبرز بانتس مقاس 3*62 حفاضه",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز بانتس مقاس 3*62 حفاضه",
"Product_EN": null,
"Product_Id": "00010658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 610,
"name": "بامبرز بانتس حفاضات اطفال مقاس 6 - 48 حفاظه",
"price": 173,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز بانتس حفاضات اطفال مقاس 6 - 48 حفاظه",
"Product_EN": null,
"Product_Id": "00010659 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 611,
"name": "مناديل بامبرز 3*4*65",
"price": 103,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مناديل بامبرز 3*4*65",
"Product_EN": null,
"Product_Id": "00010660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 612,
"name": "بامبرز عنايه جامبو مقاس 6*44",
"price": 240,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز عنايه جامبو مقاس 6*44",
"Product_EN": null,
"Product_Id": "00010661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 613,
"name": "بانتين بديل الزيت ملكى 180 مل",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بديل الزيت ملكى 180 مل",
"Product_EN": null,
"Product_Id": "00010663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 614,
"name": "بانتين بديل زيت ملكى 350 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بديل زيت ملكى 350 مل",
"Product_EN": null,
"Product_Id": "00010664 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 615,
"name": "بانتين بديل الزيت ناعم وحريرى 350 مل",
"price": 40.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بديل الزيت ناعم وحريرى 350 مل",
"Product_EN": null,
"Product_Id": "00010666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 616,
"name": "بانتين بديل الزيت عنايه مرطبه 350 مل",
"price": 40.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بديل الزيت عنايه مرطبه 350 مل",
"Product_EN": null,
"Product_Id": "00010667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 617,
"name": "بانتين بديل الزيت عنايه نظيفه 180 مل",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بديل الزيت عنايه نظيفه 180 مل",
"Product_EN": null,
"Product_Id": "00010668 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 618,
"name": "بانتين بلسم ملكى 360 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بلسم ملكى 360 مل",
"Product_EN": null,
"Product_Id": "00010669 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 619,
"name": "بانتين بلسم ملكى 180 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بلسم ملكى 180 مل",
"Product_EN": null,
"Product_Id": "00010670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 620,
"name": "بانتين بلسم ضد التساقط 180 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بلسم ضد التساقط 180 مل",
"Product_EN": null,
"Product_Id": "00010671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 621,
"name": "بانتين بلسم ناعم حريرى 180 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بلسم ناعم حريرى 180 مل",
"Product_EN": null,
"Product_Id": "00010672 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 622,
"name": "تايد مسحوق يدوى 350 جم +اريال 170 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى 350 جم +اريال 170 جم",
"Product_EN": null,
"Product_Id": "00010674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 623,
"name": "تايد مسحوق اتوماتيك ياسمين 4 كجم",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق اتوماتيك ياسمين 4 كجم",
"Product_EN": null,
"Product_Id": "00010675 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 624,
"name": "تايد جيل اصلى 2.5 كجم - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد جيل اصلى 2.5 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00010676 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 625,
"name": "تايد جل اوتوماتيك اصلى 1.8 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد جل اوتوماتيك اصلى 1.8 كجم",
"Product_EN": null,
"Product_Id": "00010677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 626,
"name": "الويز ماسيه الطويل 7*24",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ماسيه الطويل 7*24",
"Product_EN": null,
"Product_Id": "00010679 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 627,
"name": "الدار فيلية دجاج مجمد 1 كجم",
"price": 76,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدار فيلية دجاج مجمد 1 كجم",
"Product_EN": null,
"Product_Id": "00010682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 628,
"name": "الدار دجاج مجمد 950 - 1000 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدار دجاج مجمد 950 - 1000 جم",
"Product_EN": null,
"Product_Id": "00010683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 629,
"name": "سيلينا حمام سوبر جامبو 2 ق",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سيلينا حمام سوبر جامبو 2 ق",
"Product_EN": null,
"Product_Id": "00010684 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 630,
"name": "سيلينا ارانب بلدى مجمد وزن",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سيلينا ارانب بلدى مجمد وزن",
"Product_EN": null,
"Product_Id": "00010685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 631,
"name": "العابد ديك رومى وزن",
"price": 69,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العابد ديك رومى وزن",
"Product_EN": null,
"Product_Id": "00010686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 632,
"name": "لحم ضانى وزن - بوم استلام",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لحم ضانى وزن - بوم استلام",
"Product_EN": null,
"Product_Id": "00010687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 633,
"name": "زند بقرى وزن - بوم استلام",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زند بقرى وزن - بوم استلام",
"Product_EN": null,
"Product_Id": "00010688 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 634,
"name": "توسيطه بقرى وزن - بوم استلام",
"price": 116,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "توسيطه بقرى وزن - بوم استلام",
"Product_EN": null,
"Product_Id": "00010689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 635,
"name": "كبده مشكل بلدى وزن - بوم استلام",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كبده مشكل بلدى وزن - بوم استلام",
"Product_EN": null,
"Product_Id": "00010690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 636,
"name": "عطاره - لبان ذكر وزن - موقوف",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - لبان ذكر وزن - موقوف",
"Product_EN": "Attara gum Male - Scalable ",
"Product_Id": "00010691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 637,
"name": "عطاره - الكابتن حبة البركة 30 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن حبة البركة 30 جم",
"Product_EN": "Attara - Captain Black Seed 30 gm",
"Product_Id": "00010692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 638,
"name": "عطاره - روزا زيت النمل علبة",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - روزا زيت النمل علبة",
"Product_EN": "Attara - Rosa Oil Ant ",
"Product_Id": "00010693 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 639,
"name": "عطاره - ليلتى مخمرية 20 جم علبة",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - ليلتى مخمرية 20 جم علبة",
"Product_EN": "Attara Laylaty Makhmariya 20 gm ",
"Product_Id": "00010694 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 640,
"name": "افانتى جبنه براميلى سادة طبيعى 800 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى جبنه براميلى سادة طبيعى 800 جم",
"Product_EN": null,
"Product_Id": "00010695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 641,
"name": "عطاره - فلفل اسود مطحون وزن - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - فلفل اسود مطحون وزن - موقوف",
"Product_EN": "Attara Milled Black Pepper - Scalable ",
"Product_Id": "00010696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 642,
"name": "عطاره - كسبره ناعمه وزن - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - كسبره ناعمه وزن - موقوف",
"Product_EN": "Attara Coriander - Scalable ",
"Product_Id": "00010697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 643,
"name": "عطاره - كبابه صينى وزن",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - كبابه صينى وزن",
"Product_EN": "Attara Cubeba Chinese - Scalable",
"Product_Id": "00010698 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 644,
"name": "عطاره . زعتر وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زعتر وزن",
"Product_EN": "Attara Thyme Arishy - Scalable ",
"Product_Id": "00010699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 645,
"name": "عطاره - زر ورد باكستانى وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - زر ورد باكستانى وزن",
"Product_EN": "Attara Red Rose Flowers Pakistani - Scalable",
"Product_Id": "00010700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 646,
"name": "عطاره - قرفة عود سيجار وزن",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - قرفة عود سيجار وزن",
"Product_EN": "Attara Cicar Cinnamin - Scalable",
"Product_Id": "00010701 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 647,
"name": "عطاره - جنزبيل وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - جنزبيل وزن",
"Product_EN": "Attara Ginger - Scalable",
"Product_Id": "00010702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 648,
"name": "عطاره - مربى خرز البقر",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - مربى خرز البقر",
"Product_EN": "Attara Cow's Beads Jam ",
"Product_Id": "00010703 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 649,
"name": "عطاره - زعفران اسبانى - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - زعفران اسبانى - موقوف",
"Product_EN": "Attara Spanish Saffron ",
"Product_Id": "00010704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 650,
"name": "عطاره - فول صويا ارجنتينى وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - فول صويا ارجنتينى وزن",
"Product_EN": "Attara Argentine Soybean - Scalable ",
"Product_Id": "00010705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 651,
"name": "عطاره . ينسون وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ينسون وزن",
"Product_EN": "Attara Anise - Scalable ",
"Product_Id": "00010706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 652,
"name": "عطاره - دوم اسوانى وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - دوم اسوانى وزن",
"Product_EN": "Attara Dom Aswany - Scalable ",
"Product_Id": "00010707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 653,
"name": "عطاره - سمسم محمص وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - سمسم محمص وزن",
"Product_EN": "Attara Roasted Sesame - Scalable ",
"Product_Id": "00010708 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 654,
"name": "عطاره - سمسم ابيض هندى وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - سمسم ابيض هندى وزن",
"Product_EN": "Attara Indian white sesame - Scalable ",
"Product_Id": "00010709 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 655,
"name": "عطاره - فول سودانى وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - فول سودانى وزن",
"Product_EN": "Attara Peanut - Scalable ",
"Product_Id": "00010710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 656,
"name": "عطاره - فنكوش وزن",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - فنكوش وزن",
"Product_EN": "Attara Plain Funkoush - Scalable ",
"Product_Id": "00010711 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 657,
"name": "عطاره - فنكوش الوان وزن - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - فنكوش الوان وزن - موقوف",
"Product_EN": "Attara Funkoush Colors - Scalable ",
"Product_Id": "00010712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 658,
"name": "عطاره - كاكاو اسبانى وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - كاكاو اسبانى وزن",
"Product_EN": "Attara Spanish Cocoa - Scalable ",
"Product_Id": "00010713 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 659,
"name": "عطاره - كاكاو ماليزى وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - كاكاو ماليزى وزن",
"Product_EN": "Attara Malaysian Cocoa - Scalable ",
"Product_Id": "00010714 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 660,
"name": "عطاره - فانيليا سايبه وزن",
"price": 800,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - فانيليا سايبه وزن",
"Product_EN": "Attara Vanilla Sayb - Scalable ",
"Product_Id": "00010715 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 661,
"name": "عطاره - ملح صينى خشن وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - ملح صينى خشن وزن",
"Product_EN": "Attara Chinese Coarse Salt - Scalable ",
"Product_Id": "00010716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 662,
"name": "عطاره - ملح ليمون وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - ملح ليمون وزن",
"Product_EN": "Attara Lemon Salt - Scalable ",
"Product_Id": "00010717 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 663,
"name": "عطاره - كربوناتو وزن",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - كربوناتو وزن",
"Product_EN": "Attara Carbonato - Scalable ",
"Product_Id": "00010718 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 664,
"name": "عطاره - سلاميكا وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - سلاميكا وزن",
"Product_EN": "Attara Salmica - Scalable ",
"Product_Id": "00010719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 665,
"name": "عطاره - مرمرية وزن",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - مرمرية وزن",
"Product_EN": "Attara Sagebrush - Scalable ",
"Product_Id": "00010720 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 666,
"name": "عطاره - حبه البركه وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - حبه البركه وزن",
"Product_EN": "Attara Black Seed - Scalable ",
"Product_Id": "00010721 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 667,
"name": "عطاره - عصفر وزن",
"price": 360,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - عصفر وزن",
"Product_EN": "Attara Aousfr - Scalable ",
"Product_Id": "00010722 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 668,
"name": "عطاره - حجر قدم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - حجر قدم",
"Product_EN": "Attara Foot Stone ",
"Product_Id": "00010723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 669,
"name": "عطاره - قرنفل وزن",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - قرنفل وزن",
"Product_EN": "Attara Cloves - Scalable ",
"Product_Id": "00010724 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 670,
"name": "عطاره - بابريكا اسبانى وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - بابريكا اسبانى وزن",
"Product_EN": "Attara Spanish Paprika - Scalable ",
"Product_Id": "00010725 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 671,
"name": "عطاره . ليمون مجفف وزن",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ليمون مجفف وزن",
"Product_EN": "Attara Dried Lemon - Scalable ",
"Product_Id": "00010726 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 672,
"name": "عطاره - نعناع مجفف وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - نعناع مجفف وزن",
"Product_EN": "Attara Dried Mint - Scalable ",
"Product_Id": "00010727 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 673,
"name": "عطاره - زهرة البابونج وزن",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - زهرة البابونج وزن",
"Product_EN": "Attara Chamomile Flower - Scalable ",
"Product_Id": "00010728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 674,
"name": "عطاره - شمر وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - شمر وزن",
"Product_EN": "Attara Fennel - Scalable ",
"Product_Id": "00010729 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 675,
"name": "عطاره . كراويه وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كراويه وزن",
"Product_EN": "Attara Caraway - Scalable ",
"Product_Id": "00010730 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 676,
"name": "عطاره - ينسون نجمه وزن",
"price": 400,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - ينسون نجمه وزن",
"Product_EN": "Attara Star Anise - Scalable ",
"Product_Id": "00010731 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 677,
"name": "عطاره - مستكه يونانى وزن",
"price": 6500,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - مستكه يونانى وزن",
"Product_EN": "Attara Greek Mastic - Scalable ",
"Product_Id": "00010732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 678,
"name": "عطاره - كمون حصى وزن - موقوف",
"price": 74,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - كمون حصى وزن - موقوف",
"Product_EN": "Attara Gravel Cumin - Scalable ",
"Product_Id": "00010733 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 679,
"name": "عطاره - شاورما السبع بهارات وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - شاورما السبع بهارات وزن",
"Product_EN": "Attara Seven Spices Shawarma - Scalable ",
"Product_Id": "00010734 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 680,
"name": "عطاره - بهارات فراخ وزن",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - بهارات فراخ وزن",
"Product_EN": "Attara Chicken Spices - Scalable ",
"Product_Id": "00010735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 681,
"name": "عطاره - بهارات سمك وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - بهارات سمك وزن",
"Product_EN": "Attara Fish Spices - Scalable ",
"Product_Id": "00010736 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 682,
"name": "عطاره - بهارت محشى وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - بهارت محشى وزن",
"Product_EN": "Attara Stuffed Spices - Scalable ",
"Product_Id": "00010737 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 683,
"name": "عطاره . كارى هندى وزن",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كارى هندى وزن",
"Product_EN": "Atara Indian Turmeric - Scalable ",
"Product_Id": "00010738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 684,
"name": "عطاره - كركم هندى مطحون وزن",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - كركم هندى مطحون وزن",
"Product_EN": "Attara Indian Ground Turmeric - Scalable ",
"Product_Id": "00010739 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 685,
"name": "عطاره - بهارات لحمه وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - بهارات لحمه وزن",
"Product_EN": "Attara Meat Spices - Scalable ",
"Product_Id": "00010740 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 686,
"name": "عطاره - بخور منجله عيدان 2*1",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - بخور منجله عيدان 2*1",
"Product_EN": "Attara - Incense Mangalah Chopsticks 2*1",
"Product_Id": "00010741 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 687,
"name": "عطاره - بخور اصلى عود",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - بخور اصلى عود",
"Product_EN": "Attara - Incense Original Oud",
"Product_Id": "00010742 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 688,
"name": "عطاره - جاينت اويل زيت مفاصل 40 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - جاينت اويل زيت مفاصل 40 مل",
"Product_EN": "Attara - Giant Oil Joint Oil 40 ml",
"Product_Id": "00010743 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 689,
"name": "عطاره - بلانتا الكابتن لوسيون للتخسيس",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - بلانتا الكابتن لوسيون للتخسيس",
"Product_EN": "Attara - Planta El Captain Lotion for slimming",
"Product_Id": "00010744 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 690,
"name": "عطاره - الليفه المغربيه الاصليه",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الليفه المغربيه الاصليه",
"Product_EN": "Attara - Original Moroccan loofah",
"Product_Id": "00010745 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 691,
"name": "عطاره - الكابتن زيت لبان الدكر 30 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت لبان الدكر 30 مل",
"Product_EN": "Attara - El Captain Frankincense Oil 30 ml",
"Product_Id": "00010746 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 692,
"name": "عطاره - الكابتن زيت الكركم 30 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت الكركم 30 مل",
"Product_EN": "Attara - El Captain Turmeric Oil 30 ml",
"Product_Id": "00010747 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 693,
"name": "عطاره - الكابتن زيت ياسمين 30 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت ياسمين 30 مل",
"Product_EN": "Attara - El Captain Jasmine Oil 30 ml",
"Product_Id": "00010748 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 694,
"name": "عطاره - الكابتن زيت كافور 30 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت كافور 30 مل",
"Product_EN": "Attara - El Captain Camphor Oil 30 ml",
"Product_Id": "00010749 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 695,
"name": "عطاره - الكابتن زيت جوزه الطيب 30 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت جوزه الطيب 30 مل",
"Product_EN": "Attara - El Captain Nutmeg Oil 30 ml",
"Product_Id": "00010750 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 696,
"name": "عطاره - الكابتن زيت بقدونس 30 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت بقدونس 30 مل",
"Product_EN": "Attara - El Captain Parsley Oil 30 ml",
"Product_Id": "00010751 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 697,
"name": "عطاره - الكابتن زيت البصل 30 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت البصل 30 مل",
"Product_EN": "Attara - El Captain Onion Oil 30 ml",
"Product_Id": "00010752 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 698,
"name": "عطاره - الكابتن زيت القرفه 30 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت القرفه 30 مل",
"Product_EN": "Attara - El Captain Cinnamon Oil 30 ml",
"Product_Id": "00010753 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 699,
"name": "عطاره - الكابتن زيت سمسم 30 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت سمسم 30 مل",
"Product_EN": "Attara - El Captain Sesame Oil 30 ml",
"Product_Id": "00010754 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 700,
"name": "عطاره - الكابتن زيت خروع 30 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت خروع 30 مل",
"Product_EN": "Attara - El Captain Castor Oil 30 ml",
"Product_Id": "00010755 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 701,
"name": "عطاره - الكابتن زيت حب رشاد 30 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت حب رشاد 30 مل",
"Product_EN": "Attara - El Captain Rashad Rosehip Oil 30 ml",
"Product_Id": "00010756 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 702,
"name": "عطاره - الكابتن زيت خس 30 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت خس 30 مل",
"Product_EN": "Attara - El Captain Lettuce Oil 30 ml",
"Product_Id": "00010757 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 703,
"name": "عطاره - الكابتن الجينسينج زيت 30 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن الجينسينج زيت 30 مل",
"Product_EN": "Attara - El Captain Ginseng Oil 30 ml",
"Product_Id": "00010758 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 704,
"name": "عطاره - الكابتن زيت جوز الهند 30 مل",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت جوز الهند 30 مل",
"Product_EN": "Attara - El Captain Coconut Oil 30 ml",
"Product_Id": "00010759 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 705,
"name": "عطاره - الكابتن زيت الخزامى اللافندر 30مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت الخزامى اللافندر 30مل",
"Product_EN": "Attara - El Captain Lavender Oil 30 ml",
"Product_Id": "00010760 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 706,
"name": "عطاره - الكابتن زيت الورد 30 مل",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - الكابتن زيت الورد 30 مل",
"Product_EN": "Attara - El Captain Rose Oil 30 ml",
"Product_Id": "00010761 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 707,
"name": "عطاره . الكابتن زيت قرنفل 30 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت قرنفل 30 مل",
"Product_EN": "Attar - El Captain Clove Oil 30 ml",
"Product_Id": "00010762 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 708,
"name": "عطاره . الكابتن زيت لوز مر 30 مل",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت لوز مر 30 مل",
"Product_EN": "Attara - El Captain Bitter Almond Oil 30 ml",
"Product_Id": "00010763 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 709,
"name": "عطاره . الكابتن زيت فل وياسمين 30 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت فل وياسمين 30 مل",
"Product_EN": "Attara - El Capitan Oil Phil & Jasmine 30 ml",
"Product_Id": "00010764 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 710,
"name": "عطاره . الكابتن حصى البان اكليل 30 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن حصى البان اكليل 30 مل",
"Product_EN": "Attara - El Captain Pebbles Dairy Wreath 30 ml",
"Product_Id": "00010765 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 711,
"name": "عطاره . الكابتن جوجوبا 30 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن جوجوبا 30 مل",
"Product_EN": "Attara - El Captain Jojoba 30 ml",
"Product_Id": "00010766 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 712,
"name": "عطاره . الكابتن زيت لوز حلو 30 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت لوز حلو 30 مل",
"Product_EN": "Attara - El Captain Sweet Almond Oil 30 ml",
"Product_Id": "00010767 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 713,
"name": "عطاره . الكابتن زيت السعد 30 مل",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت السعد 30 مل",
"Product_EN": "Attara - El Captain Al Saad Oil 30 ml",
"Product_Id": "00010768 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 714,
"name": "عطاره . الكابتن زيت صبار 30 مل",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت صبار 30 مل",
"Product_EN": "Attara - El Captain Aloe Vera Oil 30 ml",
"Product_Id": "00010769 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 715,
"name": "عطاره . الكابتن شجره الشاى 30 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن شجره الشاى 30 مل",
"Product_EN": "Attara - El Captain Tea Tree 30 ml",
"Product_Id": "00010770 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 716,
"name": "عطاره . الكابتن زيت نعناع 30 مل",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت نعناع 30 مل",
"Product_EN": "Attara - El Captain Peppermint Oil 30 ml",
"Product_Id": "00010771 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 717,
"name": "عطاره . الكابتن زيت بذور الكتان 60 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت بذور الكتان 60 مل",
"Product_EN": "Attara - El Captain Flaxseed Oil 60 ml",
"Product_Id": "00010772 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 718,
"name": "عطاره . الكابتن زيت جنين القمح 30 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت جنين القمح 30 مل",
"Product_EN": "Attara - El Captain Wheat Germ Oil 30 ml",
"Product_Id": "00010773 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 719,
"name": "عطاره . الكابتن زيت الثوم 30 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت الثوم 30 مل",
"Product_EN": "Attara -El Captain Garlic oil 30 ml",
"Product_Id": "00010774 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 720,
"name": "عطاره . الكابتن زيت جزر 30 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت جزر 30 مل",
"Product_EN": "Attara - El Captain Carrot Oil 30 ml",
"Product_Id": "00010775 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 721,
"name": "عطاره . الكابتن زيت الشاي الاخضر 30 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت الشاي الاخضر 30 مل",
"Product_EN": "Attara - El Captain Green Tea Oil 30ml",
"Product_Id": "00010776 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 722,
"name": "عطاره . الكابتن زيت زنجبيل 30 مل - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت زنجبيل 30 مل - موقوف",
"Product_EN": "",
"Product_Id": "00010777 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 723,
"name": "عطاره . الكابتن دهان الحنظل 50 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن دهان الحنظل 50 جم",
"Product_EN": "Attara - El Captain Bitter Melon 50 gm",
"Product_Id": "00010779 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 724,
"name": "عطاره . الكابتن دهان الحنظل 30 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن دهان الحنظل 30 جم",
"Product_EN": "Attara - El Captain Bitter Melon 50 gm",
"Product_Id": "00010780 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 725,
"name": "عطاره . الكابتن كريم بدهن النعام 60 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن كريم بدهن النعام 60 جم",
"Product_EN": "Attar. El Captain Cream Ostrich Fat 60 gm",
"Product_Id": "00010781 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 726,
"name": "عطاره . صابون فحم اسود ",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . صابون فحم اسود ",
"Product_EN": "Attara - Black Charcoal Soap ",
"Product_Id": "00010782 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 727,
"name": "عطاره . صابون لمبادا بالاعشاب 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . صابون لمبادا بالاعشاب 90 جم",
"Product_EN": "Attara - Lambada Herbal Soap 90 gm",
"Product_Id": "00010783 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 728,
"name": "عطاره . صابون لمبادا السبع زيوت 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . صابون لمبادا السبع زيوت 90 جم",
"Product_EN": "Attara - Lambada Seven Oils Soap 90gm",
"Product_Id": "00010784 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 729,
"name": "عطاره . سواك النور",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . سواك النور",
"Product_EN": "Attara - Siwak Al Noor",
"Product_Id": "00010785 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 730,
"name": "عطاره . ابو العلا شاى اخضر 100 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ابو العلا شاى اخضر 100 جم",
"Product_EN": "Attara - Abu Ela green tea 100 gm",
"Product_Id": "00010786 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 731,
"name": "عطاره . ابو العلا شاى اخضر 250 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ابو العلا شاى اخضر 250 جم",
"Product_EN": "Attara - Abu Ela green tea 250 gm",
"Product_Id": "00010787 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 732,
"name": "عطاره . كركمين اعشاب 115 جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كركمين اعشاب 115 جم",
"Product_EN": "Attara - Herbal Curcumin 115 gm",
"Product_Id": "00010788 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 733,
"name": "عطاره . حلبه مغات وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . حلبه مغات وزن",
"Product_EN": " Attara Fenugreek Maghat - Scalable ",
"Product_Id": "00010789 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 734,
"name": "عطاره . مغات عراقى وزن",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مغات عراقى وزن",
"Product_EN": "Attara Maghat Iraqi - Scalable ",
"Product_Id": "00010790 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 735,
"name": "عطاره . شطه ناعمه وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شطه ناعمه وزن",
"Product_EN": "Attara Chili - Scalable",
"Product_Id": "00010791 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 736,
"name": "عطاره . جوزه الطيب مطحون وزن - موقوف",
"price": 550,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . جوزه الطيب مطحون وزن - موقوف",
"Product_EN": "Attara Nutmeg Powder - Scalable",
"Product_Id": "00010792 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 737,
"name": "عطاره . زهره بنفسج وزن",
"price": 240,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زهره بنفسج وزن",
"Product_EN": "Attara Violet Flower- Scalable",
"Product_Id": "00010793 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 738,
"name": "عطاره . تيليو وزن",
"price": 660,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . تيليو وزن",
"Product_EN": "Attara Tilia - Scalable",
"Product_Id": "00010794 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 739,
"name": "عطاره . زبيب ايرانى وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زبيب ايرانى وزن",
"Product_EN": "Attara Iranian Raisin - Scalable",
"Product_Id": "00010795 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 740,
"name": "عطاره . جوز الهند وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . جوز الهند وزن",
"Product_EN": "Attara Coconut - Scalable ",
"Product_Id": "00010796 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 741,
"name": "عطاره . اسبغول وزن",
"price": 400,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . اسبغول وزن",
"Product_EN": "Attara Ispaghula Husk - Scalable ",
"Product_Id": "00010797 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 742,
"name": "عطاره . نخاع الجمل برطمان",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . نخاع الجمل برطمان",
"Product_EN": "Attara - Camel Marrow Jar",
"Product_Id": "00010798 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 743,
"name": "عطاره . شطه قرون وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شطه قرون وزن",
"Product_EN": "Attara Red Chili - Scalable ",
"Product_Id": "00010800 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 744,
"name": "عطاره . قناع الطمى المغربى 100 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . قناع الطمى المغربى 100 جم",
"Product_EN": "Attara - Moroccan Mud Mask 100 gm",
"Product_Id": "00010801 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 745,
"name": "عطاره . مستكه ايرانى 10 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مستكه ايرانى 10 جم",
"Product_EN": "Attara - Iranian Mastic 10 gm",
"Product_Id": "00010802 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 746,
"name": "عطاره . قناع ريماس الحنه البيضاء 60 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . قناع ريماس الحنه البيضاء 60 جم",
"Product_EN": "Attara - Remas White Henna Mask 60 gm",
"Product_Id": "00010803 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 747,
"name": "عطاره . عنبر بخور الاصلي",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . عنبر بخور الاصلي",
"Product_EN": "Attara - Amber Incense Original ",
"Product_Id": "00010804 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 748,
"name": "عطاره . بخور مسك ابيض الاصلي - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور مسك ابيض الاصلي - موقوف",
"Product_EN": null,
"Product_Id": "00010805 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 749,
"name": "عطاره . بخور مسك ابيض الاصلي",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور مسك ابيض الاصلي",
"Product_EN": "Attara - Original White Mask Incense",
"Product_Id": "00010806 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 750,
"name": "عطاره . اسانس بخور ورد",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . اسانس بخور ورد",
"Product_EN": "Attara - Rose incense Asanss",
"Product_Id": "00010807 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 751,
"name": "عطاره . اسانس بخور لافندر",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . اسانس بخور لافندر",
"Product_EN": "Attara - Lavender Incense Asanss",
"Product_Id": "00010808 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 752,
"name": "عطاره . اسانس بخور عود",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . اسانس بخور عود",
"Product_EN": "Attara - Incense Sticks Asanss",
"Product_Id": "00010809 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 753,
"name": "عطاره . اسانس بخور عنبر ",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . اسانس بخور عنبر ",
"Product_EN": "Attara - Incense Sticks Asanss",
"Product_Id": "00010810 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 754,
"name": "عطاره . بخور شيخ العرب",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور شيخ العرب",
"Product_EN": "Attara - Incense Sheikh Al Arab",
"Product_Id": "00010811 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 755,
"name": "عطاره . بخور عطر الشام",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور عطر الشام",
"Product_EN": "Attara - Incense Sham Perfume ",
"Product_Id": "00010812 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 756,
"name": "عطاره . الطاحونه سكر نبات 40 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الطاحونه سكر نبات 40 جم",
"Product_EN": "Attara - The Mill Plant Sugar 40 gm",
"Product_Id": "00010813 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 757,
"name": "عطاره . جنزبيل فريش وزن",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . جنزبيل فريش وزن",
"Product_EN": "Attara Fresh Ginger - Scalable",
"Product_Id": "00010814 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 758,
"name": "عطاره . كريز احمر وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كريز احمر وزن",
"Product_EN": "Attara Red Cherry - Scalable ",
"Product_Id": "00010815 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 759,
"name": "عطاره . زعفران اسبانى 10 جم 1 ق",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:32",
"updated_at": "2021-11-01 19:45:32",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زعفران اسبانى 10 جم 1 ق",
"Product_EN": "Attara - Spanish Saffron 10 gm",
"Product_Id": "00010817 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 760,
"name": "الزهار جلاش الى 350 جم - عرض",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الزهار جلاش الى 350 جم - عرض",
"Product_EN": null,
"Product_Id": "00010819 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 761,
"name": "ميلكا شوكولاتة كرسبي كراميل وسوداني 100 جم.",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة كرسبي كراميل وسوداني 100 جم.",
"Product_EN": "Milka Peanut Crispy Caramel Chocolate 90 gm",
"Product_Id": "00010820 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 762,
"name": "ميلكا شوكولاتة كريمه و بسكويت 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة كريمه و بسكويت 100 جم",
"Product_EN": "Milka Chocolate Cream & Biscuit 100 gm",
"Product_Id": "00010821 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 763,
"name": "ميلكا شوكولاتة موس 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة موس 100 جم",
"Product_EN": "Milka Chocolate Mousse 100 gm",
"Product_Id": "00010822 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 764,
"name": "ميلكا شوكولاتة اوريو حشو 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة اوريو حشو 100 جم",
"Product_EN": "Milka OREO Chocolate Filling 100 gm",
"Product_Id": "00010823 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 765,
"name": "ميلكا بابلى بحشو الشيكولاته بيضاء 95 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بابلى بحشو الشيكولاته بيضاء 95 جم",
"Product_EN": "Milka Bubbly with White Chocolate Filling 95 gm",
"Product_Id": "00010824 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 766,
"name": "ميلكا شوكولاتة بابلى كوكس 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بابلى كوكس 100 جم",
"Product_EN": "Milka Bubbly Cook's Chocolate 100 gm",
"Product_Id": "00010825 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 767,
"name": "تاج السلطانة خبز لبنانى صغير",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تاج السلطانة خبز لبنانى صغير",
"Product_EN": null,
"Product_Id": "00010826 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 768,
"name": "تاج السلطانة خبز لبنانى دايت",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تاج السلطانة خبز لبنانى دايت",
"Product_EN": null,
"Product_Id": "00010827 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 769,
"name": "لاكتيل دويتو زبادي بالفراولة والتوت 220 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو زبادي بالفراولة والتوت 220 جم",
"Product_EN": "Lactel Duetto Strawberry Yogurt Blueberry 220 gm",
"Product_Id": "00007390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 770,
"name": "نستله جو ميكس فراوله و موز 200 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله جو ميكس فراوله و موز 200 مل",
"Product_EN": "Nestle Go Mix Strawberry & Banana 200 ml",
"Product_Id": "00007391 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 771,
"name": "نستله جو ميكس خوخ ومشمش 200 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله جو ميكس خوخ ومشمش 200 جم",
"Product_EN": "Nestle Go Mix Peach & Apricot 200 gm",
"Product_Id": "00007392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 772,
"name": "نستله جو ميكس مانجو وخوخ 200 جم ",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله جو ميكس مانجو وخوخ 200 جم ",
"Product_EN": "Nestle Go Mix Mango & Peach 200 gm",
"Product_Id": "00007393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 773,
"name": "نستله زبادى لايرز فراوله 105 جم ",
"price": 3.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى لايرز فراوله 105 جم ",
"Product_EN": "Nestle Yogurt Layers Strawberry 105 gm",
"Product_Id": "00007394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 774,
"name": "نستله زبادى لايرز توت 105 جم ",
"price": 3.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى لايرز توت 105 جم ",
"Product_EN": "Nestle Yogurt Layers Raspberry 105 g",
"Product_Id": "00007395 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 775,
"name": "ابو قوس حليب مبخر 170 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو قوس حليب مبخر 170 جم",
"Product_EN": "Rainbow Evaporated Milk 170 gm",
"Product_Id": "00007396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 776,
"name": "كادبورى فليك شيكولاتة 32 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى فليك شيكولاتة 32 جم",
"Product_EN": "Cadbury Flake Chocolate 32 gm",
"Product_Id": "00007397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 777,
"name": "ميمكس بونبون كريمة القهوة",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميمكس بونبون كريمة القهوة",
"Product_EN": null,
"Product_Id": "00007398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 778,
"name": "ديتول مطهر 250 مل عرض",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر 250 مل عرض",
"Product_EN": null,
"Product_Id": "00007399 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 779,
"name": "سفن اب بلاستيك 2.5 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب بلاستيك 2.5 لتر",
"Product_EN": null,
"Product_Id": "00007400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 780,
"name": "زاهر بسكويت بلدى فاخر 600جم - علبة - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسكويت بلدى فاخر 600جم - علبة - موقوف",
"Product_EN": null,
"Product_Id": "00007401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 781,
"name": "زاهر بسكويت بلدى فاخر 1 ك - علبة - موقوف",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسكويت بلدى فاخر 1 ك - علبة - موقوف",
"Product_EN": null,
"Product_Id": "00007402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 782,
"name": "كامى شاور 2*1 فراوله 1 لتر",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامى شاور 2*1 فراوله 1 لتر",
"Product_EN": "Cammy Shower 2*1 Strawberry 1 L ",
"Product_Id": "00007403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 783,
"name": "كامى شاور اناقه 1 لتر",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامى شاور اناقه 1 لتر",
"Product_EN": "Camay Shower Vintage 1 L ",
"Product_Id": "00007404 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 784,
"name": "كامى شاور 2*1 رومانسيه 1 لتر",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامى شاور 2*1 رومانسيه 1 لتر",
"Product_EN": "Camay Shower 2*1 Romantique 1 L ",
"Product_Id": "00007405 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 785,
"name": "بريل منظف اطباق 1 لتر - موقوف",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007406 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 786,
"name": "جنرال منظف ارضيات فواكه 730 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال منظف ارضيات فواكه 730 جم",
"Product_EN": null,
"Product_Id": "00007407 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 787,
"name": "جينرال منظف سائل فواكهة750 مل",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف سائل فواكهة750 مل",
"Product_EN": null,
"Product_Id": "00007408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 788,
"name": "جينرال منظف سائل ياسمين750 مل - موقوف",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف سائل ياسمين750 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 789,
"name": "برسيل مسحوق جيل 1 لتر - موقوف",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق جيل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 790,
"name": "برسيل جل اوتوماتيك لافندر 2.6 كجم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اوتوماتيك لافندر 2.6 كجم",
"Product_EN": null,
"Product_Id": "00007411 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 791,
"name": "بريل سائل تنطيف اطباق بلسم 600 مل",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل سائل تنطيف اطباق بلسم 600 مل",
"Product_EN": null,
"Product_Id": "00007412 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 792,
"name": "بريل منظف اطباق ليمون 600 مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق ليمون 600 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007413 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 793,
"name": "دانون زبادى طبيعى 105 جم - وفر 8ج عرض - موقوف",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى 105 جم - وفر 8ج عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 794,
"name": "زاهر طبق العيد مشكل 1.600 كجم - موقوف",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر طبق العيد مشكل 1.600 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00007415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 795,
"name": "فيبا منظف سائل 2 لتر عرض - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا منظف سائل 2 لتر عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 796,
"name": "علبة كرتون م 28 * 28 * 4",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علبة كرتون م 28 * 28 * 4",
"Product_EN": null,
"Product_Id": "00007417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 797,
"name": "زينه مناديل مطبخ اقتصادى سفنجة 2 بكرة",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل مطبخ اقتصادى سفنجة 2 بكرة",
"Product_EN": null,
"Product_Id": "00007418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 798,
"name": "زينه مناديل جيب فراولة 10 مناديل",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل جيب فراولة 10 مناديل",
"Product_EN": null,
"Product_Id": "00007419 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 799,
"name": "زينه مناديل 550 م 3ق عرض - موقوف",
"price": 38.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل 550 م 3ق عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 800,
"name": "كادبورى شوكولاتة مينى سادة 192 جم - كيس",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى شوكولاتة مينى سادة 192 جم - كيس",
"Product_EN": "Cadbury Chocolate Mini 192 gm - Sachet",
"Product_Id": "00007421 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 801,
"name": "كادبورى شوكولاتة مينى بندق 192 جم - كيس",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى شوكولاتة مينى بندق 192 جم - كيس",
"Product_EN": "Cadbury Chocolate Hazelnut Mini 192 gm - Sachet",
"Product_Id": "00007422 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 802,
"name": "قتيلو جبنة اسطنبولى بالفلفل 250جم",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنة اسطنبولى بالفلفل 250جم",
"Product_EN": null,
"Product_Id": "00007423 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 803,
"name": "قتيلو جبنة دمياطى 250 جم",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنة دمياطى 250 جم",
"Product_EN": null,
"Product_Id": "00007424 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 804,
"name": "قتيلو جبنة براميلى 250 جم",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنة براميلى 250 جم",
"Product_EN": null,
"Product_Id": "00007425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 805,
"name": "قتيلو جبنة فيتا لايت 250 جم",
"price": 18.7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنة فيتا لايت 250 جم",
"Product_EN": null,
"Product_Id": "00007426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 806,
"name": "قتيلو مش دمياطى بالقشدة 250 جم",
"price": 12.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو مش دمياطى بالقشدة 250 جم",
"Product_EN": null,
"Product_Id": "00007427 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 807,
"name": "قتيلو قشدة طازجة 250 جم",
"price": 14.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو قشدة طازجة 250 جم",
"Product_EN": null,
"Product_Id": "00007428 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 808,
"name": "قتيلو جبنة كريمى 250 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنة كريمى 250 جم",
"Product_EN": null,
"Product_Id": "00007429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 809,
"name": "قتيلو جبنة ملح خفيف 250 جم",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنة ملح خفيف 250 جم",
"Product_EN": null,
"Product_Id": "00007430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 810,
"name": "قتيلو مورتة طبيعى 250 جم",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو مورتة طبيعى 250 جم",
"Product_EN": null,
"Product_Id": "00007431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 811,
"name": "زاهر سبيلية 800 جم - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سبيلية 800 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 812,
"name": "كمفورت ازرق 3 لتر + 2 صابونه - عرض",
"price": 73,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت ازرق 3 لتر + 2 صابونه - عرض",
"Product_EN": "Comfort Blue 3 L + 2 Soup - Offer ",
"Product_Id": "00007433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 813,
"name": "كمفورت روز 3 لتر + 2 صابونه - عرض ",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت روز 3 لتر + 2 صابونه - عرض ",
"Product_EN": "Comfort Rose 3 L + 2 Soup - Offer ",
"Product_Id": "00007434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 814,
"name": "زاهر غريبة بلدى فاخر 1 ك - موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر غريبة بلدى فاخر 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00007435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 815,
"name": "ريجينا لازانيا 500 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا لازانيا 500 جم",
"Product_EN": "Regina Lasagne 500 gm",
"Product_Id": "00007436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 816,
"name": "زاهر كعك عين جمل 1ك - موقوف",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كعك عين جمل 1ك - موقوف",
"Product_EN": null,
"Product_Id": "00007437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 817,
"name": "المراعى حليب كامل الدسم 1.5 لتر",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب كامل الدسم 1.5 لتر",
"Product_EN": "Al Marai Full Cream Milk 1.5 L ",
"Product_Id": "00007438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 818,
"name": "زاهر كعك عين جمل 500 جم - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كعك عين جمل 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 819,
"name": "فانش سائل مزيل بقع 450 مل",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش سائل مزيل بقع 450 مل",
"Product_EN": null,
"Product_Id": "00007440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 820,
"name": "بسكو مصر بسكويت ويفر بالشيكولاتة",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت ويفر بالشيكولاتة",
"Product_EN": null,
"Product_Id": "00007441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 821,
"name": "ابل الحلال سجق شرقى 350جم",
"price": 37.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابل الحلال سجق شرقى 350جم",
"Product_EN": null,
"Product_Id": "00007443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 822,
"name": "ابل الحلال كفته ارز 400 جم ",
"price": 37.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابل الحلال كفته ارز 400 جم ",
"Product_EN": null,
"Product_Id": "00007444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 823,
"name": "ابل الحلال برجر بلدى 8 ق",
"price": 37.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابل الحلال برجر بلدى 8 ق",
"Product_EN": null,
"Product_Id": "00007445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 824,
"name": "لورباك زبدة 400 جم",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لورباك زبدة 400 جم",
"Product_EN": "Lurpak Butter 400 gm",
"Product_Id": "00007446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 825,
"name": "زاهر باتية سوسيس مينى 6 ق - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر باتية سوسيس مينى 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00007447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 826,
"name": "بريل ليمون منظف 2.5 ك خصم 2جنيه -موقوف",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل ليمون منظف 2.5 ك خصم 2جنيه -موقوف",
"Product_EN": null,
"Product_Id": "00007448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 827,
"name": "جينرال منظف بريميا 730 مل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف بريميا 730 مل",
"Product_EN": null,
"Product_Id": "00007449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 828,
"name": "برسيل ابيض 3 ك - موقوف",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل ابيض 3 ك - موقوف",
"Product_EN": null,
"Product_Id": "00007450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 829,
"name": "برسيل مسحوق 5 ك - موقوف",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق 5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00007451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 830,
"name": "برسيل مسحوق يدوى 325 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى 325 جم",
"Product_EN": null,
"Product_Id": "00007452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 831,
"name": "سبرايت زيرو 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت زيرو 330 مل",
"Product_EN": "Sprite Zero 330 ml",
"Product_Id": "00007453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 832,
"name": "كوكا كولا كريز 250 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكا كولا كريز 250 مل",
"Product_EN": "Coca-Cola Craze 250 ml",
"Product_Id": "00007454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 833,
"name": "ايزى كلين سائل غسيل ايدى ليمون 450 مل - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايزى كلين سائل غسيل ايدى ليمون 450 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 834,
"name": "ايزى كلين سائل غسيل ايدى مارين 450 مل - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايزى كلين سائل غسيل ايدى مارين 450 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 835,
"name": "دوف بلسم 350ملى - موقوف",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف بلسم 350ملى - موقوف",
"Product_EN": null,
"Product_Id": "00007457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 836,
"name": "دوف شامبو بالزيت المغذي للعناية بالشعر 400 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو بالزيت المغذي للعناية بالشعر 400 مل",
"Product_EN": "Dove Nourishing Oil Care Shampoo 400 ml",
"Product_Id": "00007458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 837,
"name": "صانسيلك شامبو 2*1 اللوز والعسل 350 مل",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو 2*1 اللوز والعسل 350 مل",
"Product_EN": "Sunsilk Shampoo 2 * 1 Almond & Honey 350 ml",
"Product_Id": "00007459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 838,
"name": "صانسيلك شامبو ناعم وانسيابى 350 مل +زيت 75 مل عرض",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو ناعم وانسيابى 350 مل +زيت 75 مل عرض",
"Product_EN": "Sunsilk Shampoo Soft & Smooth 350 ml + Oil 75 ml",
"Product_Id": "00007460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 839,
"name": "تريزيمى شامبو 500مل - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريزيمى شامبو 500مل - موقوف",
"Product_EN": null,
"Product_Id": "00007461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 840,
"name": "تريزيمى بلسم 500مل - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريزيمى بلسم 500مل - موقوف",
"Product_EN": null,
"Product_Id": "00007462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 841,
"name": "سيجنال معجون اسنان 50مل +فرشه هديه - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان 50مل +فرشه هديه - موقوف",
"Product_EN": null,
"Product_Id": "00007463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 842,
"name": "دوف سائل غسيل ايدي 450 مل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف سائل غسيل ايدي 450 مل",
"Product_EN": "Dove hand washing liquid 450 ml",
"Product_Id": "00007464 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 843,
"name": "لوكس صابون كريمه 170جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون كريمه 170جم",
"Product_EN": "LUX Cream Soap 170 gm",
"Product_Id": "00007465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 844,
"name": "لوكس صابون سحر الجمال 170 جم - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون سحر الجمال 170 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 845,
"name": "لوكس شاور حلم السعاده 500 مل",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس شاور حلم السعاده 500 مل",
"Product_EN": "LUX Shower Dream Delight 500 ml",
"Product_Id": "00007467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 846,
"name": "لوكس شاور سحر الجمال 500 مل ",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس شاور سحر الجمال 500 مل ",
"Product_EN": "LUX Shower Magical Beauty 500 ml",
"Product_Id": "00007468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 847,
"name": "لوكس سائل استحمام لمسة ناعمه 500 مل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس سائل استحمام لمسة ناعمه 500 مل",
"Product_EN": "LUX Shower Soft Touch 500 ml",
"Product_Id": "00007469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 848,
"name": "لوكس سائل غسيل ايدى لمسه ذهبيه 500 مل",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس سائل غسيل ايدى لمسه ذهبيه 500 مل",
"Product_EN": "Lux Hand Wash Liquid Gold Touch 500 ml",
"Product_Id": "00007470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 849,
"name": "كمفورت 1 لتر ازرق +مشابك هديه",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت 1 لتر ازرق +مشابك هديه",
"Product_EN": "Comfort Blue 1 L + Clips Free",
"Product_Id": "00007471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 850,
"name": "هيرو مربى تين 340جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى تين 340جم",
"Product_EN": null,
"Product_Id": "00007472 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 851,
"name": "هيرو مربى توت ازرق 340 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى توت ازرق 340 جم",
"Product_EN": "Hero Blueberry Jam jar 350 gm",
"Product_Id": "00007473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 852,
"name": "رول مفرش سفرة عادى اتش باك100*100",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "رول مفرش سفرة عادى اتش باك100*100",
"Product_EN": null,
"Product_Id": "00007474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 853,
"name": "الخليجية كوب ربل بلاستيك 180مل",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "الخليجية كوب ربل بلاستيك 180مل",
"Product_EN": null,
"Product_Id": "00007475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 854,
"name": "تايد مسحوق بودر ياسمين 2.500 كجم",
"price": 69,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق بودر ياسمين 2.500 كجم",
"Product_EN": null,
"Product_Id": "00007476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 855,
"name": "لمار حليب اللوز 1 لتر",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لمار حليب اللوز 1 لتر",
"Product_EN": "Lamar Almond Milk 1 Liter",
"Product_Id": "00007477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 856,
"name": "بتروكلين منظف اطباق 10 لتر",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بتروكلين منظف اطباق 10 لتر",
"Product_EN": null,
"Product_Id": "00007478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 857,
"name": "بتروجيرم 1 لتر مطهر ارضيات",
"price": 13.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بتروجيرم 1 لتر مطهر ارضيات",
"Product_EN": null,
"Product_Id": "00007479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 858,
"name": "الفهيد حلاوه طحينيه وزن - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الفهيد حلاوه طحينيه وزن - موقوف",
"Product_EN": null,
"Product_Id": "00007480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 859,
"name": "زاهر حلاوة مكسرات وزن",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر حلاوة مكسرات وزن",
"Product_EN": "Zaher Halawa w Nuts - Scalable ",
"Product_Id": "00007481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 860,
"name": "كابتشينو تحميص فرنسى 13 جم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كابتشينو تحميص فرنسى 13 جم",
"Product_EN": null,
"Product_Id": "00007483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 861,
"name": "علي كافيه كابشينو لاتيه ظرف 14.5 جم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "علي كافيه كابشينو لاتيه ظرف 14.5 جم",
"Product_EN": null,
"Product_Id": "00007484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 862,
"name": "علي كافيه كابتشينو توينز 25 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "علي كافيه كابتشينو توينز 25 جم",
"Product_EN": null,
"Product_Id": "00007485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 863,
"name": "روبارليس زبده فول سودانى ناعمه 340 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روبارليس زبده فول سودانى ناعمه 340 جم",
"Product_EN": null,
"Product_Id": "00007486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 864,
"name": "روبارليس زبده فول سودانى خشنه 340 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روبارليس زبده فول سودانى خشنه 340 جم",
"Product_EN": null,
"Product_Id": "00007487 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 865,
"name": "حلوانى كوردن بلو دجاج 400 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى كوردن بلو دجاج 400 جم",
"Product_EN": "Halwani Chicken Cordon Bleu 400 gm",
"Product_Id": "00007488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 866,
"name": "حلوانى تشيكن بوبس دجاج 400 جم",
"price": 42.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى تشيكن بوبس دجاج 400 جم",
"Product_EN": "Halwani Crunchy Chicken Pops 400 gm ",
"Product_Id": "00007489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 867,
"name": "حلوانى تشيكن بيتزا دجاج 400 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى تشيكن بيتزا دجاج 400 جم",
"Product_EN": "Halwani Chicken Pizza 400 gm ",
"Product_Id": "00007490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 868,
"name": "زاهر سيرفيس افراد - 15 ج",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 12,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 6,
"Subcategory": "ديليفرى",
"Product_AR": "زاهر سيرفيس افراد - 15 ج",
"Product_EN": null,
"Product_Id": "00007491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 869,
"name": "هاريبو جولد بيرز جيلى 17 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جولد بيرز جيلى 17 جم",
"Product_EN": "Haribo Gold Bears Jelly 17 gm",
"Product_Id": "00007492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 870,
"name": "ديتول مطهر اصلى 250 مل جديد",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر اصلى 250 مل جديد",
"Product_EN": null,
"Product_Id": "00007493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 871,
"name": "ديتول مطهر اصلى 500 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر اصلى 500 مل",
"Product_EN": null,
"Product_Id": "00007494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 872,
"name": "دولسىيكا شيكولاتة 20 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولسىيكا شيكولاتة 20 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007495 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 873,
"name": "دولسيكا براونيز 20 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولسيكا براونيز 20 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 874,
"name": "برسيل جل اتوماتيك بلاك 900 جم - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك بلاك 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 875,
"name": "برسيل 5كيلو +1كيلو هديه - موقوف",
"price": 146,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل 5كيلو +1كيلو هديه - موقوف",
"Product_EN": null,
"Product_Id": "00007498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 876,
"name": "لمار مشروب برتقال 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب برتقال 1 لتر",
"Product_EN": "LAMAR Orange Drink - 1L",
"Product_Id": "00007499 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 877,
"name": "ليبتون شاى 25فتله اثقل +معلقه هدية - موقوف",
"price": 10.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 25فتله اثقل +معلقه هدية - موقوف",
"Product_EN": null,
"Product_Id": "00007500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 878,
"name": "زاهر تورتة صوره م 24 - موقوف",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة صوره م 24 - موقوف",
"Product_EN": null,
"Product_Id": "00007501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 879,
"name": "هلا مصاصة - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هلا مصاصة - موقوف",
"Product_EN": null,
"Product_Id": "00007502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 880,
"name": "زاهر ايس كريم لايت وزن - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم لايت وزن - موقوف",
"Product_EN": null,
"Product_Id": "00007504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 881,
"name": "كبريت مصرى 40 عود - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "كبريت مصرى 40 عود - موقوف",
"Product_EN": null,
"Product_Id": "00007505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 882,
"name": "اولكر فينجر بسكويت 66جرام",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر فينجر بسكويت 66جرام",
"Product_EN": null,
"Product_Id": "00007506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 883,
"name": "ايزى كلين لافتدر 450 جم - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايزى كلين لافتدر 450 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 884,
"name": "ايزى كلين توت برى 450 مل - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايزى كلين توت برى 450 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 885,
"name": "زاهر زيت حبة البركة 50 جم - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر زيت حبة البركة 50 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 886,
"name": "امريكانا خضار مشكل 7 صنف مجمد 400 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا خضار مشكل 7 صنف مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00007513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 887,
"name": "جهينه عصير فراوله بطيخ 1لتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه عصير فراوله بطيخ 1لتر",
"Product_EN": "Juhayna Strawberry w Watermelon Juice 1 L",
"Product_Id": "00007514 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 888,
"name": "جهينه عصير فراوله بطيخ 235 مل",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه عصير فراوله بطيخ 235 مل",
"Product_EN": "Juhayna Strawberry w Watermelon Juice 235 ml ",
"Product_Id": "00007515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 889,
"name": "المراعى زبادى تين 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى تين 105 جم",
"Product_EN": "Almarai Yogurt Fig 105 gm",
"Product_Id": "00007516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 890,
"name": "دانون زبادى فواكه بالبرتقال 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى فواكه بالبرتقال 105 جم",
"Product_EN": "Danone Orange Fruit Yogurt 105 gm",
"Product_Id": "00007517 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 891,
"name": "بيتى عصير مانجو فونص 235 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو فونص 235 مل",
"Product_EN": "Beyti Mango Fountain Juice 235 ml ",
"Product_Id": "00007518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 892,
"name": "بيتى عصير توت 235 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير توت 235 مل",
"Product_EN": "Beyti Blueberry juice 235 ml ",
"Product_Id": "00007519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 893,
"name": "بيتى عصير خوخ 235 مل - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير خوخ 235 مل - موقوف",
"Product_EN": "Beyti Peach Juice 235 ml",
"Product_Id": "00007520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 894,
"name": "بيتى عصير كمثرى 235 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير كمثرى 235 مل",
"Product_EN": "Beyti Pear Juice 235 ml ",
"Product_Id": "00007521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 895,
"name": "بيتى عصير كمثرى 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير كمثرى 1 لتر",
"Product_EN": "Beyti Pear Juice 1 L",
"Product_Id": "00007522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 896,
"name": "بيتى عصير خوخ 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير خوخ 1 لتر",
"Product_EN": "Beyti Peach Juice 1 L",
"Product_Id": "00007523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 897,
"name": "بيتى عصير مكس توت 1 لتر - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مكس توت 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 898,
"name": "بيتى عصير مانجو 1 لتر _ موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو 1 لتر _ موقوف",
"Product_EN": null,
"Product_Id": "00007525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 899,
"name": "ديتول مطهر 120 جم",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر 120 جم",
"Product_EN": null,
"Product_Id": "00007526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 900,
"name": "ديتول ماك اكوا 4*1 650 مل",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول ماك اكوا 4*1 650 مل",
"Product_EN": null,
"Product_Id": "00007527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 901,
"name": "ديتول ماك ياسمين 4*1 650 مل",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول ماك ياسمين 4*1 650 مل",
"Product_EN": null,
"Product_Id": "00007528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 902,
"name": "ديتول ماك لافندر 4*1 650 مل",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول ماك لافندر 4*1 650 مل",
"Product_EN": null,
"Product_Id": "00007529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 903,
"name": "ديتول ماك ليمون 4*1 650 مل",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول ماك ليمون 4*1 650 مل",
"Product_EN": null,
"Product_Id": "00007530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 904,
"name": "ديتول ماك صنوبر4*1 650 مل",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول ماك صنوبر4*1 650 مل",
"Product_EN": null,
"Product_Id": "00007531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 905,
"name": "هاربيك منظف حمام لافندر 190 مل",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك منظف حمام لافندر 190 مل",
"Product_EN": null,
"Product_Id": "00007533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 906,
"name": "لمار عصير توت برى طبيعى 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير توت برى طبيعى 1 لتر",
"Product_EN": "Lamar Cranberry Juice 1 L",
"Product_Id": "00007534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 907,
"name": "انريجايزر طرش كارت ماكس 2 ق",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "انريجايزر طرش كارت ماكس 2 ق",
"Product_EN": null,
"Product_Id": "00007535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 908,
"name": "لاكتيل زبادى فراولة كلاونى 105 جم 5+1 ق - عرض ",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى فراولة كلاونى 105 جم 5+1 ق - عرض ",
"Product_EN": "Lactel Strawberry Clowny Yogurt 105 gm 5+1pc Offer",
"Product_Id": "00007536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 909,
"name": "اندومى شعريه سريعه التحضير شعريه مقليه 80 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير شعريه مقليه 80 جم",
"Product_EN": null,
"Product_Id": "00007538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 910,
"name": "برسيل مسحوق يدوى 1 كجم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى 1 كجم",
"Product_EN": null,
"Product_Id": "00007539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 911,
"name": "برسيل مسحوق بودر منظف 85 جرام - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق بودر منظف 85 جرام - موقوف",
"Product_EN": null,
"Product_Id": "00007540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 912,
"name": "موكاتى جولد كابتشينو فانيليا 12.5 جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتى جولد كابتشينو فانيليا 12.5 جم",
"Product_EN": null,
"Product_Id": "00007542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 913,
"name": "كايرو بلاست R wrap رول استرتش منزلى",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كايرو بلاست R wrap رول استرتش منزلى",
"Product_EN": null,
"Product_Id": "00007543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 914,
"name": "كايرو بلاست رول فويل 20 متر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كايرو بلاست رول فويل 20 متر",
"Product_EN": null,
"Product_Id": "00007544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 915,
"name": "روباريل زبده فول سودانى 510 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روباريل زبده فول سودانى 510 جم",
"Product_EN": null,
"Product_Id": "00007545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 916,
"name": "روباريل زبده فول سوداني خشنه 510 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روباريل زبده فول سوداني خشنه 510 جم",
"Product_EN": null,
"Product_Id": "00007546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 917,
"name": "مستر ماسل منظف مطبخ برتقال 500 مل",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسل منظف مطبخ برتقال 500 مل",
"Product_EN": null,
"Product_Id": "00007547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 918,
"name": "مستر مسيل منظف متعدد 500 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر مسيل منظف متعدد 500 مل",
"Product_EN": null,
"Product_Id": "00007548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 919,
"name": "مستر ماسل ويندكس ملمع زجاج 500 مل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسل ويندكس ملمع زجاج 500 مل",
"Product_EN": null,
"Product_Id": "00007549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 920,
"name": "بايجون مبيد للحشرات الزاحفه 400 مل15%",
"price": 36.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بايجون مبيد للحشرات الزاحفه 400 مل15%",
"Product_EN": null,
"Product_Id": "00007550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 921,
"name": "جليد معطر جو ورد وتوت 300 مل",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد معطر جو ورد وتوت 300 مل",
"Product_EN": null,
"Product_Id": "00007552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 922,
"name": "جليد جيل سياره 70 جرام",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد جيل سياره 70 جرام",
"Product_EN": null,
"Product_Id": "00007553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 923,
"name": "ليبتون شاى 40 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 40 جم",
"Product_EN": "LiptonTea 40 gm",
"Product_Id": "00007554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 924,
"name": "سلطة زيتون وزن - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سلطة زيتون وزن - موقوف",
"Product_EN": null,
"Product_Id": "00007555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 925,
"name": "كايرو بلاست رول قمامة 500 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كايرو بلاست رول قمامة 500 جم",
"Product_EN": null,
"Product_Id": "00007556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 926,
"name": "ايزى كير مناديل وايبس جيب",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل وايبس جيب",
"Product_EN": "Easy Care Wipes & Pocket Wipes",
"Product_Id": "00007557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 927,
"name": "برسيل جل اوتوماتيك 2.600 ك عرض سعر - موقوف",
"price": 83,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اوتوماتيك 2.600 ك عرض سعر - موقوف",
"Product_EN": null,
"Product_Id": "00007558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 928,
"name": "برسيل مسحوق بودر 170 جرام - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق بودر 170 جرام - موقوف",
"Product_EN": null,
"Product_Id": "00007559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 929,
"name": "برسيل مسحوق بودر 1 ك - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق بودر 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00007560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 930,
"name": "بيبسى مشروب غازى 1 لتر عرض سعر 7 ج - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى مشروب غازى 1 لتر عرض سعر 7 ج - موقوف",
"Product_EN": null,
"Product_Id": "00007561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 931,
"name": "لبنيتا حليب كامل الدسم 1 لتر- موقوف",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لبنيتا حليب كامل الدسم 1 لتر- موقوف",
"Product_EN": null,
"Product_Id": "00007562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 932,
"name": "لبنيتا زبادى 105 جم 5+1 عرض - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لبنيتا زبادى 105 جم 5+1 عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 933,
"name": "ياس عصير مانجو 200 مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ياس عصير مانجو 200 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 934,
"name": "هاي جين مناديل مبلله 20 ق",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاي جين مناديل مبلله 20 ق",
"Product_EN": null,
"Product_Id": "00007565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 935,
"name": "الفهيد حلاوه طحينيه شعر ساده 250 جم",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهيد حلاوه طحينيه شعر ساده 250 جم",
"Product_EN": null,
"Product_Id": "00007566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 936,
"name": "اوريو بسكويت شوكولاتة 3 ق 28.5 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريو بسكويت شوكولاتة 3 ق 28.5 جم",
"Product_EN": "OREO Chocolate Biscuits 3 Pieces 28.5 gm",
"Product_Id": "00007567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 937,
"name": "اوريو بسكويت شوكولاتة 6 ق 57 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريو بسكويت شوكولاتة 6 ق 57 جم",
"Product_EN": "OREO Chocolate Biscuits 6 Pieces 57 gm",
"Product_Id": "00007568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 938,
"name": "تمرى فراخ مجمده 1000جم - 1100جم",
"price": 59,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمرى فراخ مجمده 1000جم - 1100جم",
"Product_EN": null,
"Product_Id": "00007569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 939,
"name": "بهيه متبل شيش 1 ك",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بهيه متبل شيش 1 ك",
"Product_EN": null,
"Product_Id": "00007570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 940,
"name": "بهيه شاورمه متبلة 1 ك",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بهيه شاورمه متبلة 1 ك",
"Product_EN": null,
"Product_Id": "00007571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 941,
"name": "اريال جل اتوماتيك عطر داونى 2.5 لتر",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال جل اتوماتيك عطر داونى 2.5 لتر",
"Product_EN": null,
"Product_Id": "00007572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 942,
"name": "كيت كات شانكى فول سودانى 42 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شانكى فول سودانى 42 جم",
"Product_EN": "Kit Kat Chunky Peanut 42 gm",
"Product_Id": "00007573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 943,
"name": "كيت كات شوكولاتة شانكى 42 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة شانكى 42 جم",
"Product_EN": "Kitkat Chunky Chocolate 42 gm",
"Product_Id": "00007574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 944,
"name": "كيت كات كوكيز 19.50 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات كوكيز 19.50 جم",
"Product_EN": "Kit Kat Cookies 19.50 gm",
"Product_Id": "00007575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 945,
"name": "كيت كات شيكولاته دارك 41.50 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شيكولاته دارك 41.50 جم",
"Product_EN": "Kit Kat Chocolate Dark 41.50 gm",
"Product_Id": "00007576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 946,
"name": "كيت كات كراميل مقرمش 19.50 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات كراميل مقرمش 19.50 جم",
"Product_EN": "Kit Kat Crunchy Caramel 19.50 gm",
"Product_Id": "00007577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 947,
"name": "كيت كات شيكولاته بندق مقرمش 19.50 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شيكولاته بندق مقرمش 19.50 جم",
"Product_EN": "Kit Kat Crunchy Hazelnut Chocolate 19.50 gm",
"Product_Id": "00007578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 948,
"name": "نسكويك شوكو جليب لارج",
"price": 41.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك شوكو جليب لارج",
"Product_EN": "Nesquik Choco Gleb Large",
"Product_Id": "00007580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 949,
"name": "دولسيكا قشطه - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولسيكا قشطه - موقوف",
"Product_EN": null,
"Product_Id": "00007581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 950,
"name": "المراعى زبادى ستار 4 ق عرض وفر 1 ج",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى ستار 4 ق عرض وفر 1 ج",
"Product_EN": "Almarai Yogurt Star 4 Pieces Offer Save 1 Pound",
"Product_Id": "00007582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 951,
"name": "فيبا سائل تنطيف اطباق ليمون 730 مل",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنطيف اطباق ليمون 730 مل",
"Product_EN": null,
"Product_Id": "00007583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 952,
"name": "فانتا تفاح اخضر بلاستيك 2.5 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا تفاح اخضر بلاستيك 2.5 لتر",
"Product_EN": "Fanta Green Apple Plastic 2.5 L ",
"Product_Id": "00007584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 953,
"name": "برسيل جيل بلاك 80 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جيل بلاك 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 954,
"name": "صابون سائل وزن - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "صابون سائل وزن - موقوف",
"Product_EN": null,
"Product_Id": "00007586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 955,
"name": "دايجستف الاصلى بسكويت قمح الشهى 250 جم",
"price": 28.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستف الاصلى بسكويت قمح الشهى 250 جم",
"Product_EN": null,
"Product_Id": "00007587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 956,
"name": "دايجستف بسكويت قمح لايت250 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستف بسكويت قمح لايت250 جم",
"Product_EN": null,
"Product_Id": "00007588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 957,
"name": "دايجستف بسكويت قمح لايت 400 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستف بسكويت قمح لايت 400 جم",
"Product_EN": null,
"Product_Id": "00007589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 958,
"name": "ليبتون شاى خرز250 جم ",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى خرز250 جم ",
"Product_EN": "Lipton Kharaz Tea 250 gm",
"Product_Id": "00007591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 959,
"name": "اندومى شعريه سريعه التحضير باللحم البقرى 120 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير باللحم البقرى 120 جم",
"Product_EN": null,
"Product_Id": "00007592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 960,
"name": "المراعى حليب خالى الدسم 1.5 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب خالى الدسم 1.5 مل",
"Product_EN": "Al Marai Skimmed Milk 1.5 L",
"Product_Id": "00007593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 961,
"name": "اكس بلاك مزيل عرق 150 مل عرض - موقوف",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس بلاك مزيل عرق 150 مل عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 962,
"name": "اكس you مزيل عرق 150 مل عرض - موقوف",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس you مزيل عرق 150 مل عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 963,
"name": "اكس اكسينت مزيل عرق 150 مل عرض - موقوف",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس اكسينت مزيل عرق 150 مل عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 964,
"name": "دووف شامبو عنايه 600 مل - موقوف",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دووف شامبو عنايه 600 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 965,
"name": "دوف شامبو ضد تساقط الشعر 600 مل",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو ضد تساقط الشعر 600 مل",
"Product_EN": "Dove Hair Fall Shampoo 600 ml",
"Product_Id": "00007598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 966,
"name": "لوكس سائل غسيل ايدى لمسه ناعمه 500 مل ",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس سائل غسيل ايدى لمسه ناعمه 500 مل ",
"Product_EN": "Lux Hand Washing Liquid Soft Touch 500 ml",
"Product_Id": "00007599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 967,
"name": "لوكس سائل غسيل ايدى لمسة ذهبية 500 مل",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس سائل غسيل ايدى لمسة ذهبية 500 مل",
"Product_EN": "Lux Hand Wash Liquid Gold Touch 500 ml",
"Product_Id": "00007600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 968,
"name": "صانسيلك شامبو بجوز الهند 350 مل - موقوف",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو بجوز الهند 350 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 969,
"name": "لوكس سائل استحمام ملمس حريرى 500 مل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس سائل استحمام ملمس حريرى 500 مل",
"Product_EN": "LUX Shower Silk Sensation 500 ml",
"Product_Id": "00007602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 970,
"name": "لوكس شاور سحر الجمال 500 مل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس شاور سحر الجمال 500 مل",
"Product_EN": "LUX Shower Magical Beauty 500 ml",
"Product_Id": "00007603 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 971,
"name": "كلير شامبو رجالى 360 مل",
"price": 44.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو رجالى 360 مل",
"Product_EN": "Clear Shampoo For Men 360 ml",
"Product_Id": "00007604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 972,
"name": "كلير شامبو رجالى بالنعناع 360 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو رجالى بالنعناع 360 مل",
"Product_EN": "Clear Shampoo For Men with Mint 360 ml",
"Product_Id": "00007605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 973,
"name": "صانسيلك شامبو للشعر الاسود 420مل - موقوف",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو للشعر الاسود 420مل - موقوف",
"Product_EN": null,
"Product_Id": "00007606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 974,
"name": "صانسيلك شامبو 350مل - موقوف",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو 350مل - موقوف",
"Product_EN": null,
"Product_Id": "00007607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 975,
"name": "برسيل مسحوق منخض الرغوة 4كيلو - موقوف",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق منخض الرغوة 4كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00007608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 976,
"name": "لمار مشروب برقوق 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب برقوق 1 لتر",
"Product_EN": "Lamar Plum premium 1 L",
"Product_Id": "00007609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 977,
"name": "دايجستف دارك بسكويت 200جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستف دارك بسكويت 200جم",
"Product_EN": null,
"Product_Id": "00007610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 978,
"name": "دايجستف ميلك بسكويت 200جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستف ميلك بسكويت 200جم",
"Product_EN": null,
"Product_Id": "00007611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 979,
"name": "بيور ايج بيض احمر - مغلف 30 ق",
"price": 51.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور ايج بيض احمر - مغلف 30 ق",
"Product_EN": null,
"Product_Id": "00007612 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 980,
"name": "بيور ايج بيض ابيض - مغلف 30 ق",
"price": 50.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور ايج بيض ابيض - مغلف 30 ق",
"Product_EN": null,
"Product_Id": "00007613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 981,
"name": "بيور ايج بيض بلدى - مغلف 30 ق",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور ايج بيض بلدى - مغلف 30 ق",
"Product_EN": null,
"Product_Id": "00007614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 982,
"name": "بيور ايج بيض احمر - مغلف 15 ق",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور ايج بيض احمر - مغلف 15 ق",
"Product_EN": null,
"Product_Id": "00007615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 983,
"name": "بيور ايج بيض ابيض - مغلف 15 ق",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور ايج بيض ابيض - مغلف 15 ق",
"Product_EN": null,
"Product_Id": "00007616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 984,
"name": "بيور ايج بيض بلدى - مغلف 15 ق",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور ايج بيض بلدى - مغلف 15 ق",
"Product_EN": null,
"Product_Id": "00007617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 985,
"name": "بيور ايج بيض احمر - مغلف 10 ق",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور ايج بيض احمر - مغلف 10 ق",
"Product_EN": null,
"Product_Id": "00007618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 986,
"name": "بيور ايج بيض ابيض - مغلف 10 ق",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور ايج بيض ابيض - مغلف 10 ق",
"Product_EN": null,
"Product_Id": "00007619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 987,
"name": "بيور ايج بيض بلدى - مغلف 10 ق",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور ايج بيض بلدى - مغلف 10 ق",
"Product_EN": null,
"Product_Id": "00007620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 988,
"name": "سيجنال مكافح التسوس 120 مل +كلوز اب 25 مل هديه",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال مكافح التسوس 120 مل +كلوز اب 25 مل هديه",
"Product_EN": null,
"Product_Id": "00007621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 989,
"name": "سيجنال مكافح التسوس 25مل - موقوف",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال مكافح التسوس 25مل - موقوف",
"Product_EN": null,
"Product_Id": "00007622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 990,
"name": "لمار مشروب برقوق 230 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب برقوق 230 مل",
"Product_EN": "Lamar Plum premium - 230 ml",
"Product_Id": "00007623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 991,
"name": "جليد فانليا معطر غيار اتوماتيك 175 جم - موقوف",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد فانليا معطر غيار اتوماتيك 175 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 992,
"name": "دانون دانجو زبادى فراولة 4 ق 105 جم عرض - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانجو زبادى فراولة 4 ق 105 جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 993,
"name": "دانون دانيت حليب بالشوكولاتة وكراميل 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانيت حليب بالشوكولاتة وكراميل 200 مل",
"Product_EN": "Danone Danette Milk Chocolate & Caramel 200 ml",
"Product_Id": "00007627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 994,
"name": "فيبا منظف اطباق 750 مل 2ق+1ق عرض - موقوف",
"price": 27.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا منظف اطباق 750 مل 2ق+1ق عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 995,
"name": "هاينز كاتشب طماطم بارد 200 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم بارد 200 مل",
"Product_EN": "Heinz Tomato Ketchup Cold 200 ml",
"Product_Id": "00007629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 996,
"name": "كافية ليون بن محوج فاتح 200 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كافية ليون بن محوج فاتح 200 جم",
"Product_EN": null,
"Product_Id": "00007630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 997,
"name": "كافية ليون بن سادة وسط 200 جم",
"price": 40.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كافية ليون بن سادة وسط 200 جم",
"Product_EN": null,
"Product_Id": "00007631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 998,
"name": "كافية ليون بن سادة فاتح 200 جم",
"price": 40.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كافية ليون بن سادة فاتح 200 جم",
"Product_EN": null,
"Product_Id": "00007632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 999,
"name": "كافية ليون بن محوج وسط 200 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كافية ليون بن محوج وسط 200 جم",
"Product_EN": null,
"Product_Id": "00007633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1000,
"name": "كافية ليون بن محوج فاتح \/ غامق وزن",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كافية ليون بن محوج فاتح \/ غامق وزن",
"Product_EN": null,
"Product_Id": "00007634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1001,
"name": "دومتى كريمى شوكولاتة بطعم البندق 220 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى كريمى شوكولاتة بطعم البندق 220 جم",
"Product_EN": "Domty Creamy Chocolate Hazelnut 220 gm",
"Product_Id": "00007635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1002,
"name": "شيبسى شيدر ميكس 3 ج 48 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى شيدر ميكس 3 ج 48 جم",
"Product_EN": null,
"Product_Id": "00007636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1003,
"name": "زاهر عاشورا كبير 320 جم - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عاشورا كبير 320 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1004,
"name": "ديتول صابون 165 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون 165 جم",
"Product_EN": null,
"Product_Id": "00007638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1005,
"name": "ديتون الاصلى صابون 165 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتون الاصلى صابون 165 جم",
"Product_EN": null,
"Product_Id": "00007639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1006,
"name": "ديتول مطهر 235 مل - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر 235 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1007,
"name": "بوريو بسكويت شاى سادة 50 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بوريو بسكويت شاى سادة 50 جم",
"Product_EN": "BORIO Biscuits Tea Plain 50 gm",
"Product_Id": "00007641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1008,
"name": "زاهر سلطة شيف وزن",
"price": 67.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطة شيف وزن",
"Product_EN": null,
"Product_Id": "00007642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1009,
"name": "بريزيدون قشطه كوب 140 جم وفر 1.50 - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون قشطه كوب 140 جم وفر 1.50 - موقوف",
"Product_EN": null,
"Product_Id": "00007643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1010,
"name": "بريزيدون قشطه كوب 240وفر 3جنيه - موقوف",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون قشطه كوب 240وفر 3جنيه - موقوف",
"Product_EN": null,
"Product_Id": "00007644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1011,
"name": "بريزدون شيدر كوب جم140 وفر1.50 ج - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزدون شيدر كوب جم140 وفر1.50 ج - موقوف",
"Product_EN": null,
"Product_Id": "00007645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1012,
"name": "بريزدون شيدر كوب 240 جم وفر 3 ج - موقوف",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزدون شيدر كوب 240 جم وفر 3 ج - موقوف",
"Product_EN": null,
"Product_Id": "00007646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1013,
"name": "بريزدون شيدر كوب 500 جم وفر 5 ج - موقوف",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزدون شيدر كوب 500 جم وفر 5 ج - موقوف",
"Product_EN": null,
"Product_Id": "00007647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1014,
"name": "كوكو لافرز سندوتش كاكاو 1 قطعه ",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكو لافرز سندوتش كاكاو 1 قطعه ",
"Product_EN": null,
"Product_Id": "00007648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1015,
"name": "كوكو لافرز سندوتش فانيليا 1 قطعه ",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكو لافرز سندوتش فانيليا 1 قطعه ",
"Product_EN": null,
"Product_Id": "00007649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1016,
"name": "كوكو لافرز كوكيز كريمة كاكاو 1 قطعه ",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكو لافرز كوكيز كريمة كاكاو 1 قطعه ",
"Product_EN": null,
"Product_Id": "00007650 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1017,
"name": "كوكولا فرز كريسبى بار بسكويت بالكراميل و الكاكاو4ق",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكولا فرز كريسبى بار بسكويت بالكراميل و الكاكاو4ق",
"Product_EN": null,
"Product_Id": "00007651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1018,
"name": "الملكة سندس سكر مصرى فاخر 1 ك - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة سندس سكر مصرى فاخر 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00007652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1019,
"name": "ديميتا فويل 10متر *40سم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ديميتا فويل 10متر *40سم",
"Product_EN": null,
"Product_Id": "00007653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1020,
"name": "ديميتا فويل 20متر *40 سم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ديميتا فويل 20متر *40 سم",
"Product_EN": null,
"Product_Id": "00007654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1021,
"name": "ليون بسكويت شوفان بالكاكاو 30 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليون بسكويت شوفان بالكاكاو 30 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007655 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1022,
"name": "ليون بسكويت شوفان بجوز الهند30 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليون بسكويت شوفان بجوز الهند30 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1023,
"name": "ليون بسكويت شوفان بالتفاح و القرفة30 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليون بسكويت شوفان بالتفاح و القرفة30 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007657 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1024,
"name": "ليون بسكويت شوفان الذهبى سادة 30 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليون بسكويت شوفان الذهبى سادة 30 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1025,
"name": "صابون سائل - تشغيل 5 ك - موقوف",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "صابون سائل - تشغيل 5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00007659 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1026,
"name": "نستلة جو ميكس فراولة موز 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة جو ميكس فراولة موز 400 جم",
"Product_EN": "Nestle Go Mix Strawberry Banana 400 gm",
"Product_Id": "00007660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1027,
"name": "لاكتيل دويتو ميكس توت و فراولة 420 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو ميكس توت و فراولة 420 جم",
"Product_EN": "Lactel Duetto Mix Raspberry & Strawberry 420 gm",
"Product_Id": "00007661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1028,
"name": "نستله زبادى تفاح قرفة 105 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى تفاح قرفة 105 جم",
"Product_EN": "Nestle Yogurt Cinnamon & Apple 105 gm",
"Product_Id": "00007662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1029,
"name": "نستلة زبادى زيرو فيت فراولة 105 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة زبادى زيرو فيت فراولة 105 جم",
"Product_EN": "Nestle Yogurt Zero Fit Strawberry 105 gm ",
"Product_Id": "00007663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1030,
"name": "اد مى عجينة طماطم برطمان 300 جم + صلصة - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اد مى عجينة طماطم برطمان 300 جم + صلصة - موقوف",
"Product_EN": null,
"Product_Id": "00007664 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1031,
"name": "ديدو مشروم صفيح 800 جم - موقوف",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديدو مشروم صفيح 800 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007665 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1032,
"name": "حلو زيت 750مل عرض 13ج - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلو زيت 750مل عرض 13ج - موقوف",
"Product_EN": null,
"Product_Id": "00007667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1033,
"name": "بكرة سوليتب 300 سم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بكرة سوليتب 300 سم",
"Product_EN": null,
"Product_Id": "00007671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1034,
"name": "دريم عصير انواع زجاج 250مل - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم عصير انواع زجاج 250مل - موقوف",
"Product_EN": null,
"Product_Id": "00007672 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1035,
"name": "فرح حلاوة سادة 1ك - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فرح حلاوة سادة 1ك - موقوف",
"Product_EN": null,
"Product_Id": "00007673 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1036,
"name": "فرح حلاوة سادة 500 جم - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فرح حلاوة سادة 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1037,
"name": "سيجنال معجون اسنان 120 مل _ موقوف",
"price": 15.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان 120 مل _ موقوف",
"Product_EN": null,
"Product_Id": "00007675 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1038,
"name": "اد مى كاتشب تراى سكويز 255 جم - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اد مى كاتشب تراى سكويز 255 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007676 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1039,
"name": "اد مى مربى فراولة تراى سكويز 300 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اد مى مربى فراولة تراى سكويز 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1040,
"name": "اد مى مربى فراولة تراى برطمان 360جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اد مى مربى فراولة تراى برطمان 360جم - موقوف",
"Product_EN": null,
"Product_Id": "00007678 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1041,
"name": "اد مى مربى مشمش تراى برطمان 360 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اد مى مربى مشمش تراى برطمان 360 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007679 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1042,
"name": "اد مى مربى مشمش تراى سكويز 300 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اد مى مربى مشمش تراى سكويز 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1043,
"name": "اد مى مربى تين تراى برطمان 360 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اد مى مربى تين تراى برطمان 360 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007681 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1044,
"name": "اد مى مربى تين تراى سكويز 300 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اد مى مربى تين تراى سكويز 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1045,
"name": "اد مى كريمة شيكولاتة تراى سكويز 270جم - موقوف",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اد مى كريمة شيكولاتة تراى سكويز 270جم - موقوف",
"Product_EN": null,
"Product_Id": "00007683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1046,
"name": "الضحى خلطة بهارات 20جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى خلطة بهارات 20جم",
"Product_EN": "Al Doha Mixed Spices 20 gm",
"Product_Id": "00007685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1047,
"name": "برسيل ابيض منخفض الرغوه 2.5 كجم - موقوف",
"price": 81,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل ابيض منخفض الرغوه 2.5 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00007686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1048,
"name": "برسيل جل اتوماتيك بلاك 2.5 كجم ",
"price": 76,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك بلاك 2.5 كجم ",
"Product_EN": null,
"Product_Id": "00007687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1049,
"name": "برسيل جل اتوماتيك 3.9 كجم",
"price": 111.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك 3.9 كجم",
"Product_EN": null,
"Product_Id": "00007688 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1050,
"name": "زاهر جبنه قريش فلفل\/ حبه البركه \/ زعتر وزن",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه قريش فلفل\/ حبه البركه \/ زعتر وزن",
"Product_EN": "Zaher Cottage Cheese w Nigella Sativa - Scalable",
"Product_Id": "00007689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1051,
"name": "زاهر كيك براونيز مكسرات - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كيك براونيز مكسرات - موقوف",
"Product_EN": null,
"Product_Id": "00007690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1052,
"name": "زاهر كافى - شاى سادة",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - شاى سادة",
"Product_EN": null,
"Product_Id": "00007691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1053,
"name": "زاهر كافى - شاى نعناع",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - شاى نعناع",
"Product_EN": null,
"Product_Id": "00007692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1054,
"name": "زاهر كافى - شاى تفاح",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - شاى تفاح",
"Product_EN": null,
"Product_Id": "00007693 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1055,
"name": "زاهر كافى - شاى اخضر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - شاى اخضر",
"Product_EN": null,
"Product_Id": "00007694 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1056,
"name": "زاهر كافى - قهوة تركى سنجل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - قهوة تركى سنجل",
"Product_EN": null,
"Product_Id": "00007695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1057,
"name": "زاهر كافى - قهوة تركى دبل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - قهوة تركى دبل",
"Product_EN": null,
"Product_Id": "00007696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1058,
"name": "زاهر كافى - اسبرسو سنجل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - اسبرسو سنجل",
"Product_EN": null,
"Product_Id": "00007697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1059,
"name": "زاهر كافى - اسبرسو دبل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - اسبرسو دبل",
"Product_EN": null,
"Product_Id": "00007698 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1060,
"name": "زاهر كافى - كابتشينو سادة",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - كابتشينو سادة",
"Product_EN": null,
"Product_Id": "00007699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1061,
"name": "زاهر كافى - كابتشينو فليفر",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - كابتشينو فليفر",
"Product_EN": null,
"Product_Id": "00007700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1062,
"name": "دايجستف بسكويت اوريجنال 400 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستف بسكويت اوريجنال 400 جم",
"Product_EN": null,
"Product_Id": "00007701 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1063,
"name": "اوريجو كافية كافى كريما وزن",
"price": 320,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "اوريجو كافية كافى كريما وزن",
"Product_EN": null,
"Product_Id": "00007702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1064,
"name": "لمار عصير طماطم طبيعى 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير طماطم طبيعى 1 لتر",
"Product_EN": "Lamar Tomato Juice 1 L",
"Product_Id": "00007703 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1065,
"name": "زاهر حلويات كريم كراميل وسط 190 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات كريم كراميل وسط 190 جم",
"Product_EN": "Zaher Creme Caramel 190 g",
"Product_Id": "00007704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1066,
"name": "ابل الحلال سوسيس جملى 350جم",
"price": 37.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابل الحلال سوسيس جملى 350جم",
"Product_EN": null,
"Product_Id": "00007705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1067,
"name": "برانش باتيه عجوة جامبو",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش باتيه عجوة جامبو",
"Product_EN": null,
"Product_Id": "00007706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1068,
"name": "برانش ساندويتش شيكولاتة",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش ساندويتش شيكولاتة",
"Product_EN": null,
"Product_Id": "00007707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1069,
"name": "برانش ساندويتش بالفراولة",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش ساندويتش بالفراولة",
"Product_EN": null,
"Product_Id": "00007708 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1070,
"name": "زجاج نكهات كراميل 1 لتر - موقوف",
"price": 158,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زجاج نكهات كراميل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1071,
"name": "زجاج نكهات فانليا 1 لتر - موقوف",
"price": 157,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زجاج نكهات فانليا 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007711 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1072,
"name": "زجاج نكهات بندق 1 لتر - موقوف",
"price": 157,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زجاج نكهات بندق 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1073,
"name": "بامب زجاجة نكهات 1 لتر - موقوف",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بامب زجاجة نكهات 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007713 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1074,
"name": "كراف لبن كبير - موقوف",
"price": 238,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كراف لبن كبير - موقوف",
"Product_EN": null,
"Product_Id": "00007714 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1075,
"name": "زاهر كافى - عصير ليمون",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير ليمون",
"Product_EN": null,
"Product_Id": "00007715 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1076,
"name": "زاهر كافى ( عصير ليمون نعناع )",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى ( عصير ليمون نعناع )",
"Product_EN": null,
"Product_Id": "00007716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1077,
"name": "عطاشة عصير جوافة جركن 2 لتر",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "عطاشة عصير جوافة جركن 2 لتر",
"Product_EN": "Atasha Guava Juice Jerrycan 2 L ",
"Product_Id": "00007717 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1078,
"name": "زاهر كافى - عصير برتقال",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير برتقال",
"Product_EN": null,
"Product_Id": "00007718 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1079,
"name": "عطاشة عصير فراوله 250 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "عطاشة عصير فراوله 250 مل",
"Product_EN": "Atasha Strawberry Juice 250 ml",
"Product_Id": "00007719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1080,
"name": "زاهر كافى - عصير تمر",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير تمر",
"Product_EN": null,
"Product_Id": "00007721 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1081,
"name": "عطاشة عصير مانجو 1 لتر",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "عطاشة عصير مانجو 1 لتر",
"Product_EN": "Atasha Mango Juice 1 L ",
"Product_Id": "00007722 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1082,
"name": "زاهر كافى - عصير كيوى - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير كيوى - موقوف",
"Product_EN": null,
"Product_Id": "00007723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1083,
"name": "زاهر كافى - عصير تفاح - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير تفاح - موقوف",
"Product_EN": null,
"Product_Id": "00007724 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1084,
"name": "زاهر كافى - عصير خوخ - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير خوخ - موقوف",
"Product_EN": null,
"Product_Id": "00007725 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1085,
"name": "زاهر كافى - عصير كنتالوب",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير كنتالوب",
"Product_EN": null,
"Product_Id": "00007726 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1086,
"name": "زاهر كافى - عصير اوريو - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير اوريو - موقوف",
"Product_EN": null,
"Product_Id": "00007727 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1087,
"name": "زاهر كافى - عصير بوريو - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير بوريو - موقوف",
"Product_EN": null,
"Product_Id": "00007728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1088,
"name": "زاهر كافى - فروت سلاط ايس كريم - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - فروت سلاط ايس كريم - موقوف",
"Product_EN": null,
"Product_Id": "00007729 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1089,
"name": "زاهر كافى - ميلك شيك",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك",
"Product_EN": null,
"Product_Id": "00007730 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1090,
"name": "زاهر كافى - ميلك شيك فانليا - موقوف",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك فانليا - موقوف",
"Product_EN": null,
"Product_Id": "00007731 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1091,
"name": "زاهر كافى - ميلك شيك مانجو - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك مانجو - موقوف",
"Product_EN": null,
"Product_Id": "00007732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1092,
"name": "زاهر كافى - ميلك شيك فراولة",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك فراولة",
"Product_EN": null,
"Product_Id": "00007733 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1093,
"name": "زاهر كافى - هوت شوكليت",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - هوت شوكليت",
"Product_EN": null,
"Product_Id": "00007734 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1094,
"name": "زاهر كافى - زبادى توت",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - زبادى توت",
"Product_EN": null,
"Product_Id": "00007735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1095,
"name": "زاهر كافى - زبادى عسل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - زبادى عسل - موقوف",
"Product_EN": null,
"Product_Id": "00007736 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1096,
"name": "زاهر كافى - شوكو ميكس - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - شوكو ميكس - موقوف",
"Product_EN": null,
"Product_Id": "00007738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1097,
"name": "زاهر كافى - ساندوتش لانشون لحم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ساندوتش لانشون لحم",
"Product_EN": null,
"Product_Id": "00007739 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1098,
"name": "زاهر كافى - ساندوتش لانشون فراخ",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ساندوتش لانشون فراخ",
"Product_EN": null,
"Product_Id": "00007740 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1099,
"name": "زاهر كافى - ساندوتش تركى مدخن",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ساندوتش تركى مدخن",
"Product_EN": null,
"Product_Id": "00007741 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1100,
"name": "زاهر كافى - ساندوتش جبنة بيضاء",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ساندوتش جبنة بيضاء",
"Product_EN": null,
"Product_Id": "00007742 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1101,
"name": "زاهر كافى - ساندوتش جبنة رومى",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ساندوتش جبنة رومى",
"Product_EN": null,
"Product_Id": "00007743 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1102,
"name": "زاهر كافى - ساندوتش جبنة شيدر",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ساندوتش جبنة شيدر",
"Product_EN": null,
"Product_Id": "00007744 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1103,
"name": "رانى مشروب فاكهة خوخ كانز 235 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب فاكهة خوخ كانز 235 مل",
"Product_EN": null,
"Product_Id": "00007745 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1104,
"name": "رانى مشروب فاكهة ليمون كانز 235 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب فاكهة ليمون كانز 235 مل",
"Product_EN": null,
"Product_Id": "00007746 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1105,
"name": "رانى مشروب فاكهة تفاح كانز 235 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب فاكهة تفاح كانز 235 مل",
"Product_EN": null,
"Product_Id": "00007747 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1106,
"name": "رانى مشروب فاكهة عنب و نعناع كانز235 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب فاكهة عنب و نعناع كانز235 مل",
"Product_EN": null,
"Product_Id": "00007748 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1107,
"name": "رانى مشروب فاكهة مانجو كانز235 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب فاكهة مانجو كانز235 مل",
"Product_EN": null,
"Product_Id": "00007749 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1108,
"name": "فورتينا عصير مانجو 250 مل ( موقوف )",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فورتينا عصير مانجو 250 مل ( موقوف )",
"Product_EN": null,
"Product_Id": "00007750 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1109,
"name": "فورتينا عصير جوافة 250 مل ( موقوف )",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فورتينا عصير جوافة 250 مل ( موقوف )",
"Product_EN": null,
"Product_Id": "00007751 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1110,
"name": "برسيل جل اتوماتيك برميوم 900 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك برميوم 900 جم",
"Product_EN": null,
"Product_Id": "00007752 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1111,
"name": "برسيل مسحوق يدوى لافندر 290جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى لافندر 290جم",
"Product_EN": null,
"Product_Id": "00007753 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1112,
"name": "كوكو لافرز كوكيز كريمة بيضاء 1 قطعه",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكو لافرز كوكيز كريمة بيضاء 1 قطعه",
"Product_EN": null,
"Product_Id": "00007754 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1113,
"name": "اوريجو كافية كافى كريما 1000 جم",
"price": 330,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريجو كافية كافى كريما 1000 جم",
"Product_EN": null,
"Product_Id": "00007755 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1114,
"name": "حلوانى تشيكن كيف دجاج 400 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى تشيكن كيف دجاج 400 جم",
"Product_EN": "Helwani Chicken Kiev 400 gm ",
"Product_Id": "00007756 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1115,
"name": "العالمية بيض ابيض - مختوم - موقوف",
"price": 61.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العالمية بيض ابيض - مختوم - موقوف",
"Product_EN": null,
"Product_Id": "00007757 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1116,
"name": "العالمية بيض احمر - مختوم - موقوف",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العالمية بيض احمر - مختوم - موقوف",
"Product_EN": null,
"Product_Id": "00007758 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1117,
"name": "زاهر سيرفيس افراد - 10ج",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 12,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 6,
"Subcategory": "ديليفرى",
"Product_AR": "زاهر سيرفيس افراد - 10ج",
"Product_EN": null,
"Product_Id": "00007759 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1118,
"name": "التوابل الشرقيه بانيه دجاج حار 1 كجم 20 ق",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "التوابل الشرقيه بانيه دجاج حار 1 كجم 20 ق",
"Product_EN": "Oriental Spices Chicken Pane Spice 1 kg 20 Pieces",
"Product_Id": "00007760 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1119,
"name": "اولكر بسكريم دارك بسكويت بالكاكاو 40 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكريم دارك بسكويت بالكاكاو 40 جم",
"Product_EN": null,
"Product_Id": "00007761 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1120,
"name": "دانجو زبادى فراولة 3ق+1 عرض",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو زبادى فراولة 3ق+1 عرض",
"Product_EN": "Dango Strawberry Yogurt 3 Pieces + 1 Offer",
"Product_Id": "00007762 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1121,
"name": "جليد عبق الورد و التوت غيار اتوماتيك 175 جم- موقوف",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد عبق الورد و التوت غيار اتوماتيك 175 جم- موقوف",
"Product_EN": null,
"Product_Id": "00007763 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1122,
"name": "برسيل اتوماتيك 2.500 كجم - موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل اتوماتيك 2.500 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00007764 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1123,
"name": "فيتراك مربى فراوله 430 جم",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 430 جم",
"Product_EN": null,
"Product_Id": "00007765 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1124,
"name": "فيتراك مربى تين 430 جم - موقوف",
"price": 14.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 430 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007766 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1125,
"name": "زاهر علب مفصلى 500 جم - موقوف",
"price": 1.3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر علب مفصلى 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007767 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1126,
"name": "كوكى دجاجه كامله مجمده 950 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى دجاجه كامله مجمده 950 جم",
"Product_EN": "Koki frozen whole chicken 950 gm",
"Product_Id": "00007768 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1127,
"name": "زاهر جبنه موزاريلا طبيعى 1 كجم",
"price": 77,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه موزاريلا طبيعى 1 كجم",
"Product_EN": "Zaher Nature Mozzarella Cheese 1 Kg",
"Product_Id": "00007769 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1128,
"name": "هاى جين مناديل مبللة للاطفال 80 منديل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاى جين مناديل مبللة للاطفال 80 منديل",
"Product_EN": null,
"Product_Id": "00007770 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1129,
"name": "هاى جين مناديل مبللة 110+10منديل",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاى جين مناديل مبللة 110+10منديل",
"Product_EN": null,
"Product_Id": "00007771 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1130,
"name": "زاهر تورتة شيكولاتة م 24 - موقوف",
"price": 250,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة شيكولاتة م 24 - موقوف",
"Product_EN": null,
"Product_Id": "00007772 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1131,
"name": "مولتو مينى كرواسون 5 قطع 83 - 93 جم ",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو مينى كرواسون 5 قطع 83 - 93 جم ",
"Product_EN": null,
"Product_Id": "00007773 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1132,
"name": "مولتو مينى كرواسون 6 قطع 56 جم ",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو مينى كرواسون 6 قطع 56 جم ",
"Product_EN": null,
"Product_Id": "00007774 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1133,
"name": "مولتو مينى كرواسون كاكاو 4 قطع ",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو مينى كرواسون كاكاو 4 قطع ",
"Product_EN": null,
"Product_Id": "00007775 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1134,
"name": "ابو عوف جرانولا مكسرات 400 جم",
"price": 96,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف جرانولا مكسرات 400 جم",
"Product_EN": "Abu Auf Crispy Granola with Nuts 400 gm",
"Product_Id": "00013429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1135,
"name": "ابو عوف لايف جرين كينوا الوان 400 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف لايف جرين كينوا الوان 400 جم",
"Product_EN": "Abu Auf \nLive Green Tri-Color Quinoa 400 gm",
"Product_Id": "00013430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1136,
"name": "ابو عوف لايف جرين كينوا بيضاء 400 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف لايف جرين كينوا بيضاء 400 جم",
"Product_EN": "Abu Auf \nLive Green White Quinoa 400 gm",
"Product_Id": "00013431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1137,
"name": "ابو عوف لايف جرين كينوا حمراء 400 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف لايف جرين كينوا حمراء 400 جم",
"Product_EN": "Abu Auf \nLive Green Red Quinoa 400 gm",
"Product_Id": "00013432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1138,
"name": "ابو عوف حبوب الشيا الطبيعية 400 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف حبوب الشيا الطبيعية 400 جم",
"Product_EN": "Abu Auf Live Green Chia Seeds 400 gm",
"Product_Id": "00013433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1139,
"name": "ابو عوف جرانولا كران بيري & زبيب 400 جم",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف جرانولا كران بيري & زبيب 400 جم",
"Product_EN": "Abu Auf Granola Cranberries & Raisins 400 gm",
"Product_Id": "00013434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1140,
"name": "لونا قهوة مثلجة",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونا قهوة مثلجة",
"Product_EN": "Luna Iced Coffee",
"Product_Id": "00013435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1141,
"name": "هيلثى سبريد شوكولاتة كريمى",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى سبريد شوكولاتة كريمى",
"Product_EN": "Healthy Spread Chocolate Creamy ",
"Product_Id": "00013436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1142,
"name": "هوكس جمبرى لحم 20\/40 400 جم",
"price": 79,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هوكس جمبرى لحم 20\/40 400 جم",
"Product_EN": "Hawkes Beef Shrimp 20\/40 400 gm",
"Product_Id": "00013437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1143,
"name": "هوكس جمبرى لحم 40\/60 400 جم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هوكس جمبرى لحم 40\/60 400 جم",
"Product_EN": "Hawkes Beef Shrimp 40\/60 400 gm",
"Product_Id": "00013438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1144,
"name": "هوكس جمبرى لحم 60\/80 400 جم",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هوكس جمبرى لحم 60\/80 400 جم",
"Product_EN": "Hawkes Beef Shrimp 60\/80 400 gm",
"Product_Id": "00013439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1145,
"name": "سوق - اكياس لبن 25 سم * 30 سم وزن",
"price": 87.14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "سوق - اكياس لبن 25 سم * 30 سم وزن",
"Product_EN": null,
"Product_Id": "00013440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1146,
"name": "المراعى زبادى فواكه بقطع الخوخ 3+1 ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى فواكه بقطع الخوخ 3+1 ق",
"Product_EN": "Almarai Yogurt Fruit Peach Slices 3+1 Pieces",
"Product_Id": "00013441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1147,
"name": "المراعى زبادى طبيعى 75 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى طبيعى 75 جم",
"Product_EN": "Almarai Natural Yogurt 75 gm",
"Product_Id": "00013442 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1148,
"name": "المراعى زبادى طبيعى 75 جم - وفر 0.50 قرش",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى طبيعى 75 جم - وفر 0.50 قرش",
"Product_EN": "Almarai Natural Yogurt 75 gm - Save 0.50 Piaster",
"Product_Id": "00013443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1149,
"name": "المراعى زبادى طبيعى 105 جم ( 6+2 ) ق",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى طبيعى 105 جم ( 6+2 ) ق",
"Product_EN": "Almarai Yogurt Yogurt105 gm ( 6+2 ) Pieces ",
"Product_Id": "00013444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1150,
"name": "المراعى زبادى لايت 105 جم ( 6+2 ) ق",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى لايت 105 جم ( 6+2 ) ق",
"Product_EN": "Almarai Yogurt Light 105 gm ( 6+2 ) Pieces ",
"Product_Id": "00013445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1151,
"name": "المراعى زبادى فراوله 75 جم - وفر خمسين قرش",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى فراوله 75 جم - وفر خمسين قرش",
"Product_EN": "Almarai Yogurt Strawberry 75 gm Save 0.50 Piaster",
"Product_Id": "00013446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1152,
"name": "المراعى زبادى سكر 75 جم - وفر خمسين قرش",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى سكر 75 جم - وفر خمسين قرش",
"Product_EN": "Almarai Yogurt Sugar 75 gm Save 0.50 Piaster",
"Product_Id": "00013447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1153,
"name": "المراعى زبادى سكر 105 جم (3+1) ق",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى سكر 105 جم (3+1) ق",
"Product_EN": "Almarai Yogurt Sugar 105 gm ( 3+1 ) Pieces ",
"Product_Id": "00013448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1154,
"name": "المراعى زبادى فواكه بقطع الفراوله 105 جم ( 3+1 ) ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى فواكه بقطع الفراوله 105 جم ( 3+1 ) ق",
"Product_EN": "Almarai Yogurt Fruit Strawberry 105 gm (3+1) Pcs ",
"Product_Id": "00013449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1155,
"name": "عكاوى وزن",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عكاوى وزن",
"Product_EN": null,
"Product_Id": "00013450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1156,
"name": "زاهر تورتة ايس كريم شيكولاتة & فراوله",
"price": 200,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم شيكولاتة & فراوله",
"Product_EN": "Zaher Strawberry & Chocolate Ice Cream Torte",
"Product_Id": "00013451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1157,
"name": "زاهر تورتة ايس كريم مانجو & فراوله",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم مانجو & فراوله",
"Product_EN": "Zaher Strawberry & Mango Ice Cream Torte",
"Product_Id": "00013452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1158,
"name": "مكرونتو مكرونه مرمريه 350 جم ",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مكرونتو مكرونه مرمريه 350 جم ",
"Product_EN": null,
"Product_Id": "00013453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1159,
"name": "مكرونتو مكرونه فرن 350 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مكرونتو مكرونه فرن 350 جم",
"Product_EN": null,
"Product_Id": "00013454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1160,
"name": "مكرونتو مكرونه خواتم 350 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مكرونتو مكرونه خواتم 350 جم",
"Product_EN": null,
"Product_Id": "00013455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1161,
"name": "ماكيرونى مكرونة 350 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكيرونى مكرونة 350 جم",
"Product_EN": null,
"Product_Id": "00013456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1162,
"name": "مكرنتو مكرونة شعرية 350 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مكرنتو مكرونة شعرية 350 جم",
"Product_EN": null,
"Product_Id": "00013457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1163,
"name": "عطاره . عمان سوبيا 800 جم 1 ق",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . عمان سوبيا 800 جم 1 ق",
"Product_EN": "Oman Sobia 800 gm 1 Pieces ",
"Product_Id": "00013459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1164,
"name": "عطاره . الملك خميرة",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الملك خميرة",
"Product_EN": "Attara - King Instant ",
"Product_Id": "00013461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1165,
"name": "عطاره . الفكهانى كركدية وزن",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الفكهانى كركدية وزن",
"Product_EN": "Attara Al-Fakhani Hibiscus - Scalable ",
"Product_Id": "00013462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1166,
"name": "عطاره . فونتيرا لبن بودر وزن - موقوف",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فونتيرا لبن بودر وزن - موقوف",
"Product_EN": "Attaa Fonterra Milk Powder - Scalable ",
"Product_Id": "00013463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1167,
"name": "عطاره . كاجو نى وزن",
"price": 240,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كاجو نى وزن",
"Product_EN": "Attara Cashew Ne - Scalable ",
"Product_Id": "00013464 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1168,
"name": "ديلي عصير رمان خالى من السكر 1 لتر",
"price": 300,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير رمان خالى من السكر 1 لتر",
"Product_EN": "Dili Sugar Free Pomegranate Juice 1 L",
"Product_Id": "00013465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1169,
"name": "مزارع دينا زبادى موز و توفى وعين جمل 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا زبادى موز و توفى وعين جمل 105 جم",
"Product_EN": "Dina Farms Yogurt Banana Toffee & Walnut 105 gm",
"Product_Id": "00013466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1170,
"name": "زاهر شنطة رمضان 2021 = 203 جنيها",
"price": 203,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2021 = 203 جنيها",
"Product_EN": null,
"Product_Id": "00013467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1171,
"name": "كوارع بقرى 1 ق",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوارع بقرى 1 ق",
"Product_EN": null,
"Product_Id": "00013468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1172,
"name": "لاكتيل حليب بروفيشنال عالى الدسم 1 لتر - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لاكتيل حليب بروفيشنال عالى الدسم 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00013469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1173,
"name": "دانون زبادى طبيعى 105 جم 4 +2 مجانا",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى 105 جم 4 +2 مجانا",
"Product_EN": "Danone Natural Yogurt 105 gm 5+1 Pieces",
"Product_Id": "00013470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1174,
"name": "زاهر كرتونة رمضان 2021 = 86 جنيها",
"price": 86,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر كرتونة رمضان 2021 = 86 جنيها",
"Product_EN": null,
"Product_Id": "00013471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1175,
"name": "حلوانى طحينه 120جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى طحينه 120جم",
"Product_EN": "Halwani Tahina 120 gm",
"Product_Id": "00013472 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1176,
"name": "زاهر زبادى كامل الدسم 110جم - علبة",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زبادى كامل الدسم 110جم - علبة",
"Product_EN": "Zaher Full Cream Yogurt 110 g",
"Product_Id": "00013473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1177,
"name": "نيدو حليب مجفف 450 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيدو حليب مجفف 450 جم",
"Product_EN": null,
"Product_Id": "00013474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1178,
"name": "اكتيفيا زبادى طبيعى 105 جم 4 + 2 ق عرض",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اكتيفيا زبادى طبيعى 105 جم 4 + 2 ق عرض",
"Product_EN": "Activia Natural Yogurt 105 gm 4 + 2 Pieces - Offer",
"Product_Id": "00013475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1179,
"name": "عطاره . المعبد شاى الصين الاخضر 225 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . المعبد شاى الصين الاخضر 225 جم",
"Product_EN": "Attara - Al maebd Green Tea China 225 gm",
"Product_Id": "00013476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1180,
"name": "ميلك مان كريمه لبانى 850 مل",
"price": 79,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلك مان كريمه لبانى 850 مل",
"Product_EN": null,
"Product_Id": "00013477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1181,
"name": "ميلك مان حليب خالى من الاكتوز 850 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلك مان حليب خالى من الاكتوز 850 مل",
"Product_EN": null,
"Product_Id": "00013478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1182,
"name": "عطاره . مربى مشمش",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مربى مشمش",
"Product_EN": "Attara - Apricot Jam",
"Product_Id": "00013479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1183,
"name": "عطاره . تاج الملوك ملبن وزن",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . تاج الملوك ملبن وزن",
"Product_EN": "Attara Crown Kings Malban - Scalable ",
"Product_Id": "00013480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1184,
"name": "اولكر بسكويت بالتمر 4 ق فانوس 3 باكو",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت بالتمر 4 ق فانوس 3 باكو",
"Product_EN": null,
"Product_Id": "00013481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1185,
"name": "جهينه زبادى طبيعى 105 جم 3+1",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى طبيعى 105 جم 3+1",
"Product_EN": "Juhayna Natural Yogurt 105 gm ( 3+1 ) Pack",
"Product_Id": "00013482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1186,
"name": "جوستو سمبوسك 400 جم - عرض",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوستو سمبوسك 400 جم - عرض",
"Product_EN": "Gusto Glash 400 gm - Offer ",
"Product_Id": "00013483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1187,
"name": "زاهر زبادى كامل الدسم 200 جم - علبة",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زبادى كامل الدسم 200 جم - علبة",
"Product_EN": "Zaher Full Cream Yogurt 220 g",
"Product_Id": "00013484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1188,
"name": "زاهر زبادى خالى الدسم 200 جم - علبة",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زبادى خالى الدسم 200 جم - علبة",
"Product_EN": "Zaher Skimmed Yogurt 200 g",
"Product_Id": "00013485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1189,
"name": "زاهر سلطه زبادى رمضان وزن",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطه زبادى رمضان وزن",
"Product_EN": null,
"Product_Id": "00013486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1190,
"name": "عطاشة عصير يوسفى 250 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "عطاشة عصير يوسفى 250 مل",
"Product_EN": "Atasha Angerine Juice 250 ml",
"Product_Id": "00013488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1191,
"name": "عطاشة عصير يوسفى 1 لتر",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "عطاشة عصير يوسفى 1 لتر",
"Product_EN": "Atasha Angerine Juice 1 L",
"Product_Id": "00013489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1192,
"name": "عطاشة عصير يوسفي جركن 2 لتر",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "عطاشة عصير يوسفي جركن 2 لتر",
"Product_EN": "Atasha Angerine Juice Jerrycan 2 L",
"Product_Id": "00013490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1193,
"name": "زاهر ديزيرت - فانوس 2021",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - فانوس 2021",
"Product_EN": null,
"Product_Id": "00013491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1194,
"name": "زاهر ديزيرت - تارت كنافة اطعمة 2021",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - تارت كنافة اطعمة 2021",
"Product_EN": null,
"Product_Id": "00013492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1195,
"name": "زاهر ديزيرت - بولة كنافه بيضاوي اطعمه 2021",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - بولة كنافه بيضاوي اطعمه 2021",
"Product_EN": null,
"Product_Id": "00013493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1196,
"name": "زاهر ديزيرت - بولة كنافه كبيره 750 جم 2021",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - بولة كنافه كبيره 750 جم 2021",
"Product_EN": null,
"Product_Id": "00013494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1197,
"name": "زاهر ديزيرت - سرفيس كنافه اطعمه 2021 - موقوف",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - سرفيس كنافه اطعمه 2021 - موقوف",
"Product_EN": null,
"Product_Id": "00013495 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1198,
"name": "زاهر ديزيرت - بولة كنافه فورسيزون مدور 2021",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - بولة كنافه فورسيزون مدور 2021",
"Product_EN": null,
"Product_Id": "00013496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1199,
"name": "زاهر ديزيرت - مدلعة 2021",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - مدلعة 2021",
"Product_EN": null,
"Product_Id": "00013498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1200,
"name": "فانتا تفاح بلاستيك 2 لتر + 1\/2 لتر زيادة",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا تفاح بلاستيك 2 لتر + 1\/2 لتر زيادة",
"Product_EN": "Fanta Apple Plastic 2 liters L+ 1\/2 L Extra",
"Product_Id": "00013499 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1201,
"name": "سبرايت بلاستيك 2 لتر + 1\/2 لتر زيادة",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت بلاستيك 2 لتر + 1\/2 لتر زيادة",
"Product_EN": "Sprite Plastic 2 L + 1\/2 L Extra",
"Product_Id": "00013500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1202,
"name": "زاهر سلطه هوت سبايسى وزن",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطه هوت سبايسى وزن",
"Product_EN": null,
"Product_Id": "00013501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1203,
"name": "زاهر عيش أبيض شامي كبير 4 ق300 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عيش أبيض شامي كبير 4 ق300 جم",
"Product_EN": "Zaher Shami Big Bread 4 pieces 300 g",
"Product_Id": "00013502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1204,
"name": "زاهر بوليف مخلل طبيعي مشكل 3 كجم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بوليف مخلل طبيعي مشكل 3 كجم",
"Product_EN": "Zaher Pickled Mixed Vegetables 3 Kg",
"Product_Id": "00013503 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1205,
"name": "زاهر شنطة رمضان 2021 = 65 جنيها ",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2021 = 65 جنيها ",
"Product_EN": null,
"Product_Id": "00013505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1206,
"name": "زاهر تمر الوادى 500 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر تمر الوادى 500 جم",
"Product_EN": "Zaher Al Wadi Dates 500 g",
"Product_Id": "00013508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1207,
"name": "كورنو فلات عبوه مفصليه صوص 50 مل",
"price": 0.3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات عبوه مفصليه صوص 50 مل",
"Product_EN": null,
"Product_Id": "00013509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1208,
"name": "دوف بلسم روتين الشعر الكثيف 350 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف بلسم روتين الشعر الكثيف 350 مل",
"Product_EN": "Dove Conditioner Thickening Ritual 350 ml",
"Product_Id": "00013510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1209,
"name": "دوف بلسم عنايه يوميه 350 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف بلسم عنايه يوميه 350 مل",
"Product_EN": "Dove Daily Care Hair Conditioner 350 ml",
"Product_Id": "00013512 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1210,
"name": "فازلين جل كاكاو 100 مل",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فازلين جل كاكاو 100 مل",
"Product_EN": "Vaseline Gel Cocoa 100 ml",
"Product_Id": "00013513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1211,
"name": "فازلين جل اصلى 100 مل",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فازلين جل اصلى 100 مل",
"Product_EN": "Vaseline Gel Original 100 ml",
"Product_Id": "00013514 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1212,
"name": "دوف شامبو اصلاح مكثف 400 مل+ بلسم 350 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو اصلاح مكثف 400 مل+ بلسم 350 مل",
"Product_EN": "Dove Shampoo Intensive 400 ml + Conditioner 350ml",
"Product_Id": "00013515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1213,
"name": "دوف شامبو روتين الشعر الكثيف 400 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو روتين الشعر الكثيف 400 مل",
"Product_EN": "Dove Shampoo Routine Thickening Hair 400 ml",
"Product_Id": "00013516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1214,
"name": "دوف سبراي جوز الهند والياسمين 150 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف سبراي جوز الهند والياسمين 150 مل",
"Product_EN": "Dove Spray Coconut & Jasmine 150 ml",
"Product_Id": "00013517 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1215,
"name": "دوف سائل غسيل ايدى عنايه وحمايه مرطب 500 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف سائل غسيل ايدى عنايه وحمايه مرطب 500 مل",
"Product_EN": "Dove Hand Wash Care & Protection 500 ml",
"Product_Id": "00013518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1216,
"name": "دوف سائل غسيل ايدى عنايه وحمايه منعش 500 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف سائل غسيل ايدى عنايه وحمايه منعش 500 مل",
"Product_EN": "Dove Hand Wash Care & Protection Fresh 500 ml",
"Product_Id": "00013519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1217,
"name": "دوف سائل غسيل ايدى نعومه 500 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف سائل غسيل ايدى نعومه 500 مل",
"Product_EN": "Dove Hand Wash Softness 500 ml",
"Product_Id": "00013520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1218,
"name": "دوف سائل غسيل ايدى افوكادو 500 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف سائل غسيل ايدى افوكادو 500 مل",
"Product_EN": "Dove Hand Wash Avocado 500 ml",
"Product_Id": "00013521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1219,
"name": "دوف سائل غسيل ايدى زبده الشيا والفانيليا 500 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف سائل غسيل ايدى زبده الشيا والفانيليا 500 مل",
"Product_EN": "Dove Hand Wash Liquid Shea Butter & Vanilla 500 ml",
"Product_Id": "00013523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1220,
"name": "هاريبو مارشميلو 150 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو مارشميلو 150 جم",
"Product_EN": "Haribo Marshmallow 150 gm",
"Product_Id": "00013525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1221,
"name": "سيجنال معجون اسنان كومبليت كوكو وايت 100 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت كوكو وايت 100 مل",
"Product_EN": "Signal Toothpaste Complete Coco White 100 ml",
"Product_Id": "00013526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1222,
"name": "سيجنال معجون اسنان بالاعشاب 100 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان بالاعشاب 100 مل",
"Product_EN": "Signal Toothpaste Herbal 100 ml",
"Product_Id": "00013527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1223,
"name": "ابو عوف بن تركى محوج وسط 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركى محوج وسط 100 جم",
"Product_EN": "Abu Auf Turkish Coffee Medium Roast Blend 100 gm",
"Product_Id": "00013528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1224,
"name": "سيجنال معجون اسنان كومبليت قرنفل 100 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت قرنفل 100 مل",
"Product_EN": "Signal Toothpaste Complete Clove 100 ml",
"Product_Id": "00013530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1225,
"name": "تاج سلك استانلس 1ق",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج سلك استانلس 1ق",
"Product_EN": null,
"Product_Id": "00013531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1226,
"name": "تاج سلك استانلس 3ق",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج سلك استانلس 3ق",
"Product_EN": null,
"Product_Id": "00013532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1227,
"name": "تاج سلك مجلفن 1ق",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج سلك مجلفن 1ق",
"Product_EN": null,
"Product_Id": "00013533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1228,
"name": "تاج سلك ذهبي 1ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج سلك ذهبي 1ق",
"Product_EN": null,
"Product_Id": "00013534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1229,
"name": "تاج سلك ذهبي 3ق",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج سلك ذهبي 3ق",
"Product_EN": null,
"Product_Id": "00013535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1230,
"name": "تاج MAX ليف بالاستانلس 1 ق",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج MAX ليف بالاستانلس 1 ق",
"Product_EN": null,
"Product_Id": "00013536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1231,
"name": "تاج MAX ليف بالاستانلس 2 ق",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج MAX ليف بالاستانلس 2 ق",
"Product_EN": null,
"Product_Id": "00013537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1232,
"name": "تاج صوفت ليف بالاستانلس 1ق",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج صوفت ليف بالاستانلس 1ق",
"Product_EN": null,
"Product_Id": "00013538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1233,
"name": "تاج صوفت ليف بالاستانلس 3ق +1ق مجانا",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج صوفت ليف بالاستانلس 3ق +1ق مجانا",
"Product_EN": null,
"Product_Id": "00013539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1234,
"name": "تاج فايبر بالاسفنج دبل فيس زجزاج 1ق",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج دبل فيس زجزاج 1ق",
"Product_EN": null,
"Product_Id": "00013540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1235,
"name": "تاج فايبر بالاسفنج دبل فيس زجزاج 2ق",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج دبل فيس زجزاج 2ق",
"Product_EN": null,
"Product_Id": "00013541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1236,
"name": "تاج فايبر بالاسفنج موجة1ق",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج موجة1ق",
"Product_EN": null,
"Product_Id": "00013542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1237,
"name": "تاج فايبر بالاسفنج موجة2ق",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج موجة2ق",
"Product_EN": null,
"Product_Id": "00013543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1238,
"name": "تاج فايبر بالاسفنج زجزاج 1ق",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج زجزاج 1ق",
"Product_EN": null,
"Product_Id": "00013544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1239,
"name": "تاج فايبر بالاسفنج زجزاج 2ق",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج زجزاج 2ق",
"Product_EN": null,
"Product_Id": "00013545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1240,
"name": "تاج فايبر بالاسفنج بيضاوي 1ق",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج بيضاوي 1ق",
"Product_EN": null,
"Product_Id": "00013546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1241,
"name": "تاج فايبر بالاسفنج بيضاوي 2ق",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج بيضاوي 2ق",
"Product_EN": null,
"Product_Id": "00013547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1242,
"name": "تاج فايبر بالاسفنج سيجنال 1ق",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج سيجنال 1ق",
"Product_EN": null,
"Product_Id": "00013548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1243,
"name": "تاج فايبر بالاسفنج سيجنال 2ق",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج سيجنال 2ق",
"Product_EN": null,
"Product_Id": "00013549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1244,
"name": "تاج فايبر بالاسفنج 1chipsق",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج 1chipsق",
"Product_EN": null,
"Product_Id": "00013550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1245,
"name": "تاج فايبر بالاسفنج 2chipsق",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج 2chipsق",
"Product_EN": null,
"Product_Id": "00013551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1246,
"name": "تاج فايبر بالاسفنج مربع 1ق",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج مربع 1ق",
"Product_EN": null,
"Product_Id": "00013552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1247,
"name": "تاج فايبر بالاسفنج مربع 2ق",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج مربع 2ق",
"Product_EN": null,
"Product_Id": "00013553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1248,
"name": "تاج فايبر بالاسفنج 3ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج 3ق",
"Product_EN": null,
"Product_Id": "00013554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1249,
"name": "تاج فايبر بالاسفنج 3 ق+1ق مجانا",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج 3 ق+1ق مجانا",
"Product_EN": null,
"Product_Id": "00013555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1250,
"name": "تاج فايبر بالاسفنج 8+2 مجانا بيبي سبونج",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر بالاسفنج 8+2 مجانا بيبي سبونج",
"Product_EN": null,
"Product_Id": "00013556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1251,
"name": "تاج فايبر للجلي 4ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر للجلي 4ق",
"Product_EN": null,
"Product_Id": "00013557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1252,
"name": "تاج فايبر للجلي 7 ق + 1 ق مجانا",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فايبر للجلي 7 ق + 1 ق مجانا",
"Product_EN": null,
"Product_Id": "00013558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1253,
"name": "تاج فوط اسفنجية 2ق",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فوط اسفنجية 2ق",
"Product_EN": null,
"Product_Id": "00013559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1254,
"name": "تاج فوط اسفنجية 4ق",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فوط اسفنجية 4ق",
"Product_EN": null,
"Product_Id": "00013560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1255,
"name": "تاج فوط ميكروفايبر ماكس 1ق",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فوط ميكروفايبر ماكس 1ق",
"Product_EN": null,
"Product_Id": "00013561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1256,
"name": "تاج فوط ميكروفايبر 2 ق",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج فوط ميكروفايبر 2 ق",
"Product_EN": null,
"Product_Id": "00013562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1257,
"name": "المنديل السحرى 1 ق",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "المنديل السحرى 1 ق",
"Product_EN": null,
"Product_Id": "00013563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1258,
"name": "تاج لوفة استحمام بادي شاور طبيعي كف مساج",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج لوفة استحمام بادي شاور طبيعي كف مساج",
"Product_EN": null,
"Product_Id": "00013564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1259,
"name": "تاج لوفة استحمام بادي شاور طبيعي ظهر مساج",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج لوفة استحمام بادي شاور طبيعي ظهر مساج",
"Product_EN": null,
"Product_Id": "00013565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1260,
"name": "تاج لوفة استحمام بادي شاور طبيعي كف بشكير",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج لوفة استحمام بادي شاور طبيعي كف بشكير",
"Product_EN": null,
"Product_Id": "00013566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1261,
"name": "تاج لوفة استحمام بادي شاور طبيعي ظهر بشكير",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج لوفة استحمام بادي شاور طبيعي ظهر بشكير",
"Product_EN": null,
"Product_Id": "00013567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1262,
"name": "تاج لوفة استحمام بادي شاور كرنفال",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج لوفة استحمام بادي شاور كرنفال",
"Product_EN": null,
"Product_Id": "00013568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1263,
"name": "تاج لوفة ساونا مغربي",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج لوفة ساونا مغربي",
"Product_EN": null,
"Product_Id": "00013569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1264,
"name": "تاج ليف صوفت 1ق professional",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج ليف صوفت 1ق professional",
"Product_EN": null,
"Product_Id": "00013570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1265,
"name": "تاج الاسفنجة الاحترفية شكل بيضاوي الموفرة للصابون",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج الاسفنجة الاحترفية شكل بيضاوي الموفرة للصابون",
"Product_EN": null,
"Product_Id": "00013571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1266,
"name": "تاج الاسفنجة الاحترفية شكل زجزاج الموفرة للصابون",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج الاسفنجة الاحترفية شكل زجزاج الموفرة للصابون",
"Product_EN": null,
"Product_Id": "00013572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1267,
"name": "تاج الاسفنجة الاحترفية شكل سجنال الموفرة للصابون 1",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج الاسفنجة الاحترفية شكل سجنال الموفرة للصابون 1",
"Product_EN": null,
"Product_Id": "00013573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1268,
"name": "تاج الاسفنجة الاحترفية شكل موجة الموفرة للصابون 1ق",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج الاسفنجة الاحترفية شكل موجة الموفرة للصابون 1ق",
"Product_EN": null,
"Product_Id": "00013574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1269,
"name": "تاج الاسفنجة الاحترافية الصغيرة 2+3ق",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج الاسفنجة الاحترافية الصغيرة 2+3ق",
"Product_EN": null,
"Product_Id": "00013575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1270,
"name": "تاج سلك استانلس 4ق",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج سلك استانلس 4ق",
"Product_EN": null,
"Product_Id": "00013576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1271,
"name": "تاج سلك استانلس 1ق جامبو",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج سلك استانلس 1ق جامبو",
"Product_EN": null,
"Product_Id": "00013577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1272,
"name": "تاج الاسفنجة الاحترافية الموفرة للصابون 5+1ق",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج الاسفنجة الاحترافية الموفرة للصابون 5+1ق",
"Product_EN": null,
"Product_Id": "00013578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1273,
"name": "سونك منظف أطباق تفاح 720مللي",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سونك منظف أطباق تفاح 720مللي",
"Product_EN": null,
"Product_Id": "00013579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1274,
"name": "سونك منظف اطباق ليمون أخضر 720مللي",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سونك منظف اطباق ليمون أخضر 720مللي",
"Product_EN": null,
"Product_Id": "00013580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1275,
"name": "سونك منظف اطباق ليمون اصفر720مللي",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سونك منظف اطباق ليمون اصفر720مللي",
"Product_EN": null,
"Product_Id": "00013581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1276,
"name": "سونك منظف اطباق برتقالي 720مللي",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سونك منظف اطباق برتقالي 720مللي",
"Product_EN": null,
"Product_Id": "00013582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1277,
"name": "سونك منظف اطباق توت بري 720مللي",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سونك منظف اطباق توت بري 720مللي",
"Product_EN": null,
"Product_Id": "00013583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1278,
"name": "بسكريم كوكيز شيكولاته وكريمه البندق 30 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكريم كوكيز شيكولاته وكريمه البندق 30 جم",
"Product_EN": null,
"Product_Id": "00013584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1279,
"name": "بيريل منظف صحون 2.5 كجم +جينرال 720 مل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بيريل منظف صحون 2.5 كجم +جينرال 720 مل",
"Product_EN": null,
"Product_Id": "00013585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1280,
"name": "سبرايت مشروب مياه غازيه 1.95 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت مشروب مياه غازيه 1.95 لتر",
"Product_EN": "Sprite Soft Drink 1.95 L",
"Product_Id": "00013586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1281,
"name": "زاهر كعك ملبن 500 جم - 2021",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كعك ملبن 500 جم - 2021",
"Product_EN": "Zaher Cakes Mulaban 500 g ",
"Product_Id": "00013588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1282,
"name": "زاهر كعك عجوه 500 جم - 2021",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كعك عجوه 500 جم - 2021",
"Product_EN": "Zaher Cakes Ajwa 500 g",
"Product_Id": "00013589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1283,
"name": "زاهر بسكويت جوزهند 500 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسكويت جوزهند 500 جم",
"Product_EN": "Zaher Biscuits w Coconut 500 g",
"Product_Id": "00013590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1284,
"name": "بونجورنو كوفى ميكس 2*1 400 جم + برطمان هديه",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كوفى ميكس 2*1 400 جم + برطمان هديه",
"Product_EN": "Bonjorno Coffee Mix 2*1 400 gm + Gift Jar",
"Product_Id": "00013591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1285,
"name": "ديك رومى سليم فريش وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ديك رومى سليم فريش وزن",
"Product_EN": null,
"Product_Id": "00013592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1286,
"name": "المستشار بن محوج فاتح 200 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المستشار بن محوج فاتح 200 جم",
"Product_EN": "Al-Moashar Spices Light Coffee 200 gm",
"Product_Id": "00013593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1287,
"name": "المستشار بن محوج فاتح 100 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المستشار بن محوج فاتح 100 جم",
"Product_EN": "Al-Moashar Spices Light Coffee 100 gm",
"Product_Id": "00013594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1288,
"name": "المستشار بن محوج فاتح 40 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المستشار بن محوج فاتح 40 جم",
"Product_EN": "Al-Moashar Spices Light Coffee 40 gm",
"Product_Id": "00013595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1289,
"name": "المستشار بن ساده فاتح 200 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المستشار بن ساده فاتح 200 جم",
"Product_EN": "Al-Moashar Plain Light Coffee 200 gm ",
"Product_Id": "00013596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1290,
"name": "المستشار بن ساده فاتح 100 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المستشار بن ساده فاتح 100 جم",
"Product_EN": "Al-Moashar Plain Light Coffee 100 gm ",
"Product_Id": "00013597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1291,
"name": "المستشار بن ساده فاتح 40 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المستشار بن ساده فاتح 40 جم",
"Product_EN": "Al-MoasharbPlain Light Coffee 40 gm ",
"Product_Id": "00013598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1292,
"name": "المستشار جرين كوفى 40 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المستشار جرين كوفى 40 جم",
"Product_EN": "Al-Moashar Green Coffee 40 gm",
"Product_Id": "00013599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1293,
"name": "اريال مسحوق يدوى عطر اصلى 80 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى عطر اصلى 80 جم",
"Product_EN": null,
"Product_Id": "00013601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1294,
"name": "اريال جل اوتوماتيك عطر اصلى 790 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال جل اوتوماتيك عطر اصلى 790 جم",
"Product_EN": null,
"Product_Id": "00013602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1295,
"name": "داونى مركز منعم ملابس ضد البكتريا 300 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز منعم ملابس ضد البكتريا 300 مل",
"Product_EN": null,
"Product_Id": "00013604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1296,
"name": "داونى مركز منعم ملابس احساس الرفاهيه 1.38 لتر",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز منعم ملابس احساس الرفاهيه 1.38 لتر",
"Product_EN": null,
"Product_Id": "00013605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1297,
"name": "فيوجن جيل حلاقه برو جلايد للتبريد 200 مل",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيوجن جيل حلاقه برو جلايد للتبريد 200 مل",
"Product_EN": null,
"Product_Id": "00013606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1298,
"name": "هيد اند شولدذ شامبو ناعم وحريرى 600 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدذ شامبو ناعم وحريرى 600 مل",
"Product_EN": null,
"Product_Id": "00013607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1299,
"name": "هيربل شامبو عتايه ديتوكس 400 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو عتايه ديتوكس 400 مل",
"Product_EN": null,
"Product_Id": "00013608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1300,
"name": "هيربل شامبو بقوه العسل 400 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:33",
"updated_at": "2021-11-01 19:45:33",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو بقوه العسل 400 مل",
"Product_EN": null,
"Product_Id": "00013609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1301,
"name": "هيربل شامبو للشعر الكثيف 400 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو للشعر الكثيف 400 مل",
"Product_EN": null,
"Product_Id": "00013610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1302,
"name": "هيربال اسينسز شامبو باى باى جفاف 400 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز شامبو باى باى جفاف 400 مل",
"Product_EN": null,
"Product_Id": "00013611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1303,
"name": "هيربل شامبو للشعر الطويل 400 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو للشعر الطويل 400 مل",
"Product_EN": null,
"Product_Id": "00013612 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1304,
"name": "بانتين بديل الزيت للشعر المصبوغ 350 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بديل الزيت للشعر المصبوغ 350 مل",
"Product_EN": null,
"Product_Id": "00013613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1305,
"name": "بانتين بديل الزيت امتزاج الطبيعه 350 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بديل الزيت امتزاج الطبيعه 350 مل",
"Product_EN": null,
"Product_Id": "00013614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1306,
"name": "باضي اب شامبو للشعر اللوز 10مللي",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "باضي اب شامبو للشعر اللوز 10مللي",
"Product_EN": null,
"Product_Id": "00013615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1307,
"name": "باضي اب جيل للحلاقة 10مللي",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "باضي اب جيل للحلاقة 10مللي",
"Product_EN": null,
"Product_Id": "00013616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1308,
"name": "باضي اب جيل مطهر ومعقم لليد 10مللي",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "باضي اب جيل مطهر ومعقم لليد 10مللي",
"Product_EN": null,
"Product_Id": "00013617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1309,
"name": "باضي اب جيل الاستحمام10مللي",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "باضي اب جيل الاستحمام10مللي",
"Product_EN": null,
"Product_Id": "00013618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1310,
"name": "لوتس بسكويت 156 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت 156 جم",
"Product_EN": "LOTUS Biscuits 156 gm",
"Product_Id": "00013619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1311,
"name": "زاهر طبق مشكل مخبوزات العيد ( تذوق )",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر طبق مشكل مخبوزات العيد ( تذوق )",
"Product_EN": null,
"Product_Id": "00013622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1312,
"name": "النجار بن اكسترا فاتح سادة 100 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن اكسترا فاتح سادة 100 جم",
"Product_EN": null,
"Product_Id": "00013623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1313,
"name": "النجار بن اكسترا فاتح محوج 100 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن اكسترا فاتح محوج 100 جم",
"Product_EN": null,
"Product_Id": "00013624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1314,
"name": "النجار بن برازيلي وسط ساده 100 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن برازيلي وسط ساده 100 جم",
"Product_EN": null,
"Product_Id": "00013625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1315,
"name": "النجار بن برازيلي وسط محوج 100 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن برازيلي وسط محوج 100 جم",
"Product_EN": null,
"Product_Id": "00013626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1316,
"name": "النجار بن برازيلي وسط سادة 200 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن برازيلي وسط سادة 200 جم",
"Product_EN": null,
"Product_Id": "00013627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1317,
"name": "النجار بن برازيلي وسط محوج بالحبهان 200 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن برازيلي وسط محوج بالحبهان 200 جم",
"Product_EN": null,
"Product_Id": "00013628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1318,
"name": "النجار بن وسط تحويبجه خاصه 200 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن وسط تحويبجه خاصه 200 جم",
"Product_EN": null,
"Product_Id": "00013629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1319,
"name": "النجار بن برازيلى غامق مطحون سادة 200 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن برازيلى غامق مطحون سادة 200 جم",
"Product_EN": null,
"Product_Id": "00013630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1320,
"name": "النجار بن برازيلى غامق محوج بالحبهان 200 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن برازيلى غامق محوج بالحبهان 200 جم",
"Product_EN": null,
"Product_Id": "00013631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1321,
"name": "النجار بن اكسترا فاتح ساده 200 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن اكسترا فاتح ساده 200 جم",
"Product_EN": null,
"Product_Id": "00013632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1322,
"name": "النجار بن اكسترا فاتح محوج بالحبهان 200 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن اكسترا فاتح محوج بالحبهان 200 جم",
"Product_EN": null,
"Product_Id": "00013633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1323,
"name": "النجار بن اكسترا وسط سادة 200 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن اكسترا وسط سادة 200 جم",
"Product_EN": null,
"Product_Id": "00013634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1324,
"name": "النجار بن اكسترا وسط محوج 200 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن اكسترا وسط محوج 200 جم",
"Product_EN": null,
"Product_Id": "00013635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1325,
"name": "النجار بن كولومبيىان وسط ساده دانا باك 250 جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن كولومبيىان وسط ساده دانا باك 250 جم",
"Product_EN": null,
"Product_Id": "00013636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1326,
"name": "النجار بن كولومبيىان وسط محوج دانا باك 250 جم",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن كولومبيىان وسط محوج دانا باك 250 جم",
"Product_EN": null,
"Product_Id": "00013637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1327,
"name": "النجار بن برازيليان وسط ساده دانا باك 250 جم",
"price": 59,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن برازيليان وسط ساده دانا باك 250 جم",
"Product_EN": null,
"Product_Id": "00013638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1328,
"name": "النجار بن برازيليان وسط محوج دانا باك 250 جم",
"price": 59,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن برازيليان وسط محوج دانا باك 250 جم",
"Product_EN": null,
"Product_Id": "00013639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1329,
"name": "النجار بن وسط تحويجه خاصه دانا باك 250 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن وسط تحويجه خاصه دانا باك 250 جم",
"Product_EN": null,
"Product_Id": "00013640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1330,
"name": "النجار بن فاتح ساده 250 جم",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن فاتح ساده 250 جم",
"Product_EN": null,
"Product_Id": "00013641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1331,
"name": "النجار بن فاتح محوج بالحبهان 250 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجار بن فاتح محوج بالحبهان 250 جم",
"Product_EN": null,
"Product_Id": "00013642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1332,
"name": "بي اي تي طبق ممتص جزارة 1 كيلو",
"price": 1.8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بي اي تي طبق ممتص جزارة 1 كيلو",
"Product_EN": null,
"Product_Id": "00013643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1333,
"name": "بي اي تي طبق ممتص جزارة 1\/2 كيلو",
"price": 1.2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بي اي تي طبق ممتص جزارة 1\/2 كيلو",
"Product_EN": null,
"Product_Id": "00013644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1334,
"name": "بي اي تي علبه 8 اونز سيفتى",
"price": 1.05,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بي اي تي علبه 8 اونز سيفتى",
"Product_EN": null,
"Product_Id": "00013645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1335,
"name": "وادى فود صلصة طماطم ظرف 50 جم",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود صلصة طماطم ظرف 50 جم",
"Product_EN": null,
"Product_Id": "00013646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1336,
"name": "وادى فود صلصة طماطم 195 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود صلصة طماطم 195 جم",
"Product_EN": null,
"Product_Id": "00013647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1337,
"name": "وادى فود فول مدمس سادة 400 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود فول مدمس سادة 400 جم",
"Product_EN": null,
"Product_Id": "00013648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1338,
"name": "وادى فود فول مدمس سادة 700 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود فول مدمس سادة 700 جم",
"Product_EN": null,
"Product_Id": "00013649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1339,
"name": "وادى فود فول مدمس سادة 3 كجم",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود فول مدمس سادة 3 كجم",
"Product_EN": null,
"Product_Id": "00013650 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1340,
"name": "وادى فود حبوب ذرة حلوه كاملة 400 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود حبوب ذرة حلوه كاملة 400 جم",
"Product_EN": null,
"Product_Id": "00013651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1341,
"name": "وادى فود فاصوليا حمراء 400 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود فاصوليا حمراء 400 جم",
"Product_EN": null,
"Product_Id": "00013652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1342,
"name": "وادى فود هريسة مفرومة 190 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود هريسة مفرومة 190 جم",
"Product_EN": null,
"Product_Id": "00013653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1343,
"name": "وادى فود زيتون اسود مفروم ساده 300 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود زيتون اسود مفروم ساده 300 جم",
"Product_EN": "Wadi Food Black Olive Paste 300 gm",
"Product_Id": "00013654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1344,
"name": "وادى فود زيتون اسود مفروم بالزعتر 300 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود زيتون اسود مفروم بالزعتر 300 جم",
"Product_EN": "Wadi Food Black Olive Paste With Thyme 300 gm",
"Product_Id": "00013655 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1345,
"name": "وادى فود زيتون اسود مفروم بالشطة 300 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود زيتون اسود مفروم بالشطة 300 جم",
"Product_EN": "Wadi Food Minced Black Olives Pepper 300 gm",
"Product_Id": "00013656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1346,
"name": "جراندورو كلاسيك قهوة سريعه التحضير 100 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندورو كلاسيك قهوة سريعه التحضير 100 جم",
"Product_EN": null,
"Product_Id": "00013657 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1347,
"name": "جراندورو كلاسيك قهوة سريعه التحضير 200 جم",
"price": 76,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندورو كلاسيك قهوة سريعه التحضير 200 جم",
"Product_EN": null,
"Product_Id": "00013658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1348,
"name": "جراندورو جولد قهوة سريعه التحضير 100 جم",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندورو جولد قهوة سريعه التحضير 100 جم",
"Product_EN": null,
"Product_Id": "00013659 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1349,
"name": "جراندورو جولد قهوة سريعه التحضير 200 جم",
"price": 93,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندورو جولد قهوة سريعه التحضير 200 جم",
"Product_EN": null,
"Product_Id": "00013660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1350,
"name": "بسكو مصر لوكس بسكويت بالتمر 6 ق",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر لوكس بسكويت بالتمر 6 ق",
"Product_EN": null,
"Product_Id": "00013661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1351,
"name": "بافاريا مشروب شعير زجاج انواع 330 مل - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير زجاج انواع 330 مل - موقوف",
"Product_EN": null,
"Product_Id": "00013662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1352,
"name": "بافاريا مشروب شعير زجاج انواع 330 مل ( موقوف )",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير زجاج انواع 330 مل ( موقوف )",
"Product_EN": null,
"Product_Id": "00013663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1353,
"name": "بافاريا مشروب شعير زجاج انواع 330 مل _ موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير زجاج انواع 330 مل _ موقوف",
"Product_EN": null,
"Product_Id": "00013664 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1354,
"name": "بافاريا مشروب شعير زجاج انواع 330 مل -( موقوف )",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير زجاج انواع 330 مل -( موقوف )",
"Product_EN": null,
"Product_Id": "00013665 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1355,
"name": "بافاريا مشروب شعير زجاج 330 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير زجاج 330 مل",
"Product_EN": "Bavaria pure malt liquor glass 330 ml",
"Product_Id": "00013666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1356,
"name": "سيبا نوسا شيكولاته سبريد بالبندق 400 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيبا نوسا شيكولاته سبريد بالبندق 400 جم",
"Product_EN": "Cebe Nussa Chocolate Hazelnut Spread 400 gm",
"Product_Id": "00013668 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1357,
"name": "سيبا نوسا شيكولاته سبريد بالبندق و الحليب 400 جم ",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيبا نوسا شيكولاته سبريد بالبندق و الحليب 400 جم ",
"Product_EN": "Cebe Nussa Chocolate Spread Hazelnut & Milk 400 gm",
"Product_Id": "00013669 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1358,
"name": "تشويس ترمس 950 جم",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس ترمس 950 جم",
"Product_EN": null,
"Product_Id": "00013670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1359,
"name": "ريتش بسطرمة وزن",
"price": 290,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بسطرمة وزن",
"Product_EN": "Rich Pastrami - Scalable ",
"Product_Id": "00013671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1360,
"name": "ريتش سجق شرقي 300 جم",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش سجق شرقي 300 جم",
"Product_EN": "Rich Oriental Sausages 300 gm",
"Product_Id": "00013672 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1361,
"name": "ريتش برجر بقري 1 كجم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش برجر بقري 1 كجم",
"Product_EN": "Rich Beef Burger 1 kg",
"Product_Id": "00013673 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1362,
"name": "ريتش برجر بقري جامبو 800 جم 8 ق",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش برجر بقري جامبو 800 جم 8 ق",
"Product_EN": "Rich Jumbo Beef Burger 800 gm 8 Pieces",
"Product_Id": "00013674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1363,
"name": "زاهر غريبة سادة 400 جم - 2021",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر غريبة سادة 400 جم - 2021",
"Product_EN": "Zaher Ghraybeh 400 g",
"Product_Id": "00013675 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1364,
"name": "زاهر غريبة فسدق 400 جم - 2021",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر غريبة فسدق 400 جم - 2021",
"Product_EN": "Zaher Ghraybeh Pistachio 400 g",
"Product_Id": "00013676 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1365,
"name": "دانجو زبادى فراولة 105 جم 4+2 ق",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو زبادى فراولة 105 جم 4+2 ق",
"Product_EN": "Dango Strawberry Yogurt 105 gm 4+2 Pieces",
"Product_Id": "00013677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1366,
"name": "زاهر مخبوزات العيد علبة مشكل 1 كجم - 2021",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات العيد علبة مشكل 1 كجم - 2021",
"Product_EN": "Zaher Eid Bakery Mixed Box 1 Kg ",
"Product_Id": "00013679 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1367,
"name": "زاهر كعك عجمية 500جم - 2021",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كعك عجمية 500جم - 2021",
"Product_EN": "Zaher Cakes Foreigner 500 g ",
"Product_Id": "00013680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1368,
"name": "المراعى كريمه طهى 200 مل - وفر 5 ج",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى كريمه طهى 200 مل - وفر 5 ج",
"Product_EN": "Almarai cooking cream 200 ml - Save 5 Count",
"Product_Id": "00013681 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1369,
"name": "المراعى كريمه الخفق 500 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى كريمه الخفق 500 مل",
"Product_EN": "Almarai Whipping Cream 500 gm",
"Product_Id": "00013682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1370,
"name": "عطاره . شوكولاته جوى مشكل وزن - موقوف",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاته جوى مشكل وزن - موقوف",
"Product_EN": "Attara Joy Chocolate Mix - Scalable",
"Product_Id": "00013683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1371,
"name": "عطاره . شوكولاته بوووم وزن - موقوف",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاته بوووم وزن - موقوف",
"Product_EN": "Attara Chocolate Boom - Scalable ",
"Product_Id": "00013684 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1372,
"name": "عطاره . شوكولاته واو جوز هند وزن - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاته واو جوز هند وزن - موقوف",
"Product_EN": "Attara Chocolate wow coconut - Scalable ",
"Product_Id": "00013685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1373,
"name": "عطاره . شوكولاته ايليت مستورد وزن",
"price": 223,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاته ايليت مستورد وزن",
"Product_EN": "Attara Imported Aylit Chocolate - Scalable",
"Product_Id": "00013686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1374,
"name": "عطاره . شوكولاته عملات مستورده وزن",
"price": 262,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاته عملات مستورده وزن",
"Product_EN": " Attara Coins Chocolate imported - Scalable ",
"Product_Id": "00013687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1375,
"name": "عطاره . شوكولاته كوفرتينا وزن - موقوف",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاته كوفرتينا وزن - موقوف",
"Product_EN": "Attara Covertina Chocolate - Scalable ",
"Product_Id": "00013688 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1376,
"name": "عطاره . شوكولاته اوريو ذهبى وزن - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاته اوريو ذهبى وزن - موقوف",
"Product_EN": "Attara Chocolate Oreo Golden - Scalable",
"Product_Id": "00013689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1377,
"name": "عطاره . ملبس ملوكى وزن - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ملبس ملوكى وزن - موقوف",
"Product_EN": "Attara Melouky Malbas - Scalable ",
"Product_Id": "00013690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1378,
"name": "عطاره . توماكت فواكه وزن - موقوف",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . توماكت فواكه وزن - موقوف",
"Product_EN": "Attara TooMakt Fruit - Scalable ",
"Product_Id": "00013691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1379,
"name": "عطاره . مقرمشات متبله مصرى وزن",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مقرمشات متبله مصرى وزن",
"Product_EN": "Attara Egyptian Spiced Crackers - Scalable ",
"Product_Id": "00013692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1380,
"name": "عطاره . توفى نيل وزن - موقوف",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . توفى نيل وزن - موقوف",
"Product_EN": "Attara Tofinil - Scalable ",
"Product_Id": "00013693 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1381,
"name": "عطاره . شوكولاته جوز هند ويفر وزن - موقوف",
"price": 61.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاته جوز هند ويفر وزن - موقوف",
"Product_EN": "Attara Chocolate Coconut Wafer - Scalable ",
"Product_Id": "00013694 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1382,
"name": "عطاره . شوكولاته بندق & لوز بابلى وزن - موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاته بندق & لوز بابلى وزن - موقوف",
"Product_EN": "Attara Chocolate Hazelnut & Almond - Scalable",
"Product_Id": "00013695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1383,
"name": "عطاره . كاجو \/ عين جمل وزن - موقوف",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كاجو \/ عين جمل وزن - موقوف",
"Product_EN": "Attara Chocolate Cashew & walnut - Scalable",
"Product_Id": "00013696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1384,
"name": "عطاره . شوكولاته سمسم تويست وزن - موقوف",
"price": 61.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاته سمسم تويست وزن - موقوف",
"Product_EN": "Attara Chocolate Sesame Twist - Scalable ",
"Product_Id": "00013697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1385,
"name": "جود داى صوص بلو بيرى 250 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص بلو بيرى 250 جم",
"Product_EN": null,
"Product_Id": "00013699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1386,
"name": "جود داى صوص شيكولاته 250 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص شيكولاته 250 جم",
"Product_EN": null,
"Product_Id": "00013700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1387,
"name": "جود داى صوص فراوله 250 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص فراوله 250 جم",
"Product_EN": null,
"Product_Id": "00013701 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1388,
"name": "جود داى صوص كراميل 250 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص كراميل 250 جم",
"Product_EN": null,
"Product_Id": "00013702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1389,
"name": "دومتى حليب كامل الدسم 1 لتر",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دومتى حليب كامل الدسم 1 لتر",
"Product_EN": "Domty Full Cream Milk 1 L",
"Product_Id": "00013703 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1390,
"name": "هوكس جمبري لحم كيس 120\/80 400 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هوكس جمبري لحم كيس 120\/80 400 جم",
"Product_EN": "Hawkes Beef Shrimp Bag 120\/80 400 gm",
"Product_Id": "00013704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1391,
"name": "ماكسيل ماجيك معطر جو ضد الدخان 475 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكسيل ماجيك معطر جو ضد الدخان 475 مل",
"Product_EN": null,
"Product_Id": "00013705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1392,
"name": "ماكسيل ماجيك معطر جو سحر العود 475 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكسيل ماجيك معطر جو سحر العود 475 مل",
"Product_EN": null,
"Product_Id": "00013706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1393,
"name": "فلفيتا منعم ملابس رائحه البوكيه 1 كجم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفيتا منعم ملابس رائحه البوكيه 1 كجم",
"Product_EN": null,
"Product_Id": "00013707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1394,
"name": "فلفيتا منعم ملابس الاحلام السعيده 1 كجم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفيتا منعم ملابس الاحلام السعيده 1 كجم",
"Product_EN": null,
"Product_Id": "00013708 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1395,
"name": "فلفيتا منعم ملابس لافندر 1 كجم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفيتا منعم ملابس لافندر 1 كجم",
"Product_EN": null,
"Product_Id": "00013709 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1396,
"name": "فلفيتا منعم ومعطر منسوجات لافندر 1 كجم - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفيتا منعم ومعطر منسوجات لافندر 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00013710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1397,
"name": "فلفيتا منعم ومعطر منسوجات نسيم البحر 2 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفيتا منعم ومعطر منسوجات نسيم البحر 2 كجم",
"Product_EN": null,
"Product_Id": "00013711 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1398,
"name": "فلفيتا منعم ومعطر منسوجات لافندر 2 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفيتا منعم ومعطر منسوجات لافندر 2 كجم",
"Product_EN": null,
"Product_Id": "00013712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1399,
"name": "جلاسى منظف بخاخ تفاح 600 مل ",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جلاسى منظف بخاخ تفاح 600 مل ",
"Product_EN": null,
"Product_Id": "00013714 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1400,
"name": "ماكس وان اقراص غسالات الاطباق 30 قرص + 15 قرص",
"price": 167,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكس وان اقراص غسالات الاطباق 30 قرص + 15 قرص",
"Product_EN": null,
"Product_Id": "00013715 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1401,
"name": "زاهر بسكويت لوتس 500 جم - 2021",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسكويت لوتس 500 جم - 2021",
"Product_EN": "Zaher Lotus Biscuits 500 g ",
"Product_Id": "00013716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1402,
"name": "الحلوب سمن حليب بقري نقي 1600 جم",
"price": 275,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الحلوب سمن حليب بقري نقي 1600 جم",
"Product_EN": "EL Haloub Cow Pure Butter Ghee 1600 gm",
"Product_Id": "00013717 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1403,
"name": "ماكسيللو بسكويت ويفر شيكولاته 6 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر شيكولاته 6 ق",
"Product_EN": null,
"Product_Id": "00013718 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1404,
"name": "ماكسيللو بسكويت ويفر فراولة 6 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر فراولة 6 ق",
"Product_EN": null,
"Product_Id": "00013719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1405,
"name": "ماكسيللو بسكويت ويفر فانليا 6 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر فانليا 6 ق",
"Product_EN": null,
"Product_Id": "00013720 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1406,
"name": "ماكسيللو بسكويت ويفر حلاوة بالعسل 6 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر حلاوة بالعسل 6 ق",
"Product_EN": null,
"Product_Id": "00013721 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1407,
"name": "ماكسيللو بسكويت ويفر شيكولاته 8 ق",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر شيكولاته 8 ق",
"Product_EN": null,
"Product_Id": "00013722 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1408,
"name": "ماكسيللو بسكويت ويفر فراولة 8 ق",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر فراولة 8 ق",
"Product_EN": null,
"Product_Id": "00013723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1409,
"name": "ماكسيللو بسكويت ويفر فانليا 8 ق",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر فانليا 8 ق",
"Product_EN": null,
"Product_Id": "00013724 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1410,
"name": "ماكسيللو بسكويت ويفر حلاوة بالعسل 8 ق",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر حلاوة بالعسل 8 ق",
"Product_EN": null,
"Product_Id": "00013725 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1411,
"name": "ماكسيللو بسكويت ويفر شيكولاته 12 ق",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر شيكولاته 12 ق",
"Product_EN": null,
"Product_Id": "00013726 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1412,
"name": "ماكسيللو بسكويت ويفر فراولة 12 ق",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر فراولة 12 ق",
"Product_EN": null,
"Product_Id": "00013727 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1413,
"name": "ماكسيللو بسكويت ويفر فانليا 12 ق",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر فانليا 12 ق",
"Product_EN": null,
"Product_Id": "00013728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1414,
"name": "ماكسيللو بسكويت ويفر حلاوة بالعسل 12 ق",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيللو بسكويت ويفر حلاوة بالعسل 12 ق",
"Product_EN": null,
"Product_Id": "00013729 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1415,
"name": "وادى فود صلصة طماطم 320 جم 2 ق + خل 1 لتر",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود صلصة طماطم 320 جم 2 ق + خل 1 لتر",
"Product_EN": "",
"Product_Id": "00013730 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1416,
"name": "بيتى ميكس بصل وملح 290 جم 2ق + هاينز خل 1لتر",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى ميكس بصل وملح 290 جم 2ق + هاينز خل 1لتر",
"Product_EN": "Betty Mix Onion & Salt 290gm 2 Pieces+ Vinegar 1 L",
"Product_Id": "00013731 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1417,
"name": "زاهر تورتة ايس كريم فانيليا & زبادى",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم فانيليا & زبادى",
"Product_EN": "Zaher Yogurt & Vanilla Ice Cream Torte",
"Product_Id": "00013732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1418,
"name": "نستله بيور لايف مياه فوارة توت 360 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله بيور لايف مياه فوارة توت 360 مل",
"Product_EN": "Nestle Pure Life Berry Sparkling Water 360 ml",
"Product_Id": "00013733 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1419,
"name": "نستله بيور لايف مياه فوارة ليمون 360 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله بيور لايف مياه فوارة ليمون 360 مل",
"Product_EN": "Nestle Pure Life Lemon Sparkling Water 360 ml",
"Product_Id": "00013734 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1420,
"name": "نستله بيور لايف مياه فوارة تفاح 360 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله بيور لايف مياه فوارة تفاح 360 مل",
"Product_EN": "Nestle Pure Life Apple Sparkling Water 360 ml",
"Product_Id": "00013735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1421,
"name": "ميربا كوكيز بقطع الشوكولاتة 225 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا كوكيز بقطع الشوكولاتة 225 جم",
"Product_EN": "Merba chocolate cookies chocolate chips 225 gm",
"Product_Id": "00013738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1422,
"name": "دلما شاي اسود 100 فتله + مج هدية",
"price": 58.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاي اسود 100 فتله + مج هدية",
"Product_EN": "Dilmah Black Tea Bags 100 Count + mug",
"Product_Id": "00013739 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1423,
"name": "كامى صابون فراوله 120 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامى صابون فراوله 120 جم",
"Product_EN": "Camay Strawberry Soap 120 gm",
"Product_Id": "00013740 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1424,
"name": "كامي صابون فراوله وكريم مرطب 170 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامي صابون فراوله وكريم مرطب 170 جم",
"Product_EN": "Camay Soap Strawberry & Moisturizing Cream 170 gm",
"Product_Id": "00013741 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1425,
"name": "بافاريا مشروب شعير كان 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير كان 330 مل",
"Product_EN": "Bavaria Pure Malt Drink Can 330 ml",
"Product_Id": "00013743 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1426,
"name": "بافاريا مشروب شعير تفاح كان 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير تفاح كان 330 مل",
"Product_EN": "Bavaria Pure Malt Drink Apple Can 330 ml",
"Product_Id": "00013744 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1427,
"name": "بافاريا مشروب شعير خوخ كان 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير خوخ كان 330 مل",
"Product_EN": "Bavaria Pure Malt Drink Peach Can 330 ml",
"Product_Id": "00013745 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1428,
"name": "بافاريا مشروب شعير رمان كان 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير رمان كان 330 مل",
"Product_EN": "Bavaria Pure Malt Drink Pomegranate Can 330 ml ",
"Product_Id": "00013746 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1429,
"name": "بافاريا مشروب شعير الفراولة كان 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير الفراولة كان 330 مل",
"Product_EN": "Bavaria Pure Malt Drink Strawberry Can 330 ml ",
"Product_Id": "00013747 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1430,
"name": "بافاريا مشروب شعير كان 500 مل",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير كان 500 مل",
"Product_EN": "Bavaria Pure Malt Drink Can 330 ml",
"Product_Id": "00013748 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1431,
"name": "بافاريا مشروب شعير تفاح كان 500 مل",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير تفاح كان 500 مل",
"Product_EN": "Bavaria Pure Malt Drink Apple Can 500 ml",
"Product_Id": "00013749 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1432,
"name": "بافاريا مشروب شعير رمان كان 500 مل",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير رمان كان 500 مل",
"Product_EN": "Bavaria Pure Malt Drink Pomegranate Can 500 ml ",
"Product_Id": "00013750 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1433,
"name": "بافاريا مشروب شعير فراوله كان 500 مل",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير فراوله كان 500 مل",
"Product_EN": "Bavaria Pure Malt Drink Strawberry Can 500 ml",
"Product_Id": "00013751 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1434,
"name": "بافاريا مشروب شعير بالجنزبيل والليمون زجاج 330 مل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير بالجنزبيل والليمون زجاج 330 مل",
"Product_EN": "Bavaria malt drink with ginger& lemon glass 330 ml",
"Product_Id": "00013752 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1435,
"name": "بافاريا مشروب شعير بالمانجو والفواكه الاستوائيه",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير بالمانجو والفواكه الاستوائيه",
"Product_EN": "Bavaria Malt Mango & Tropical Fruits 330 ml",
"Product_Id": "00013753 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1436,
"name": "دلما شاى اسود 25 فتله",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى اسود 25 فتله",
"Product_EN": "Dilmah Black Tea 25 Bags",
"Product_Id": "00013754 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1437,
"name": "دلما شاى أسود 50 فتله",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى أسود 50 فتله",
"Product_EN": "Dilmah Black Tea 50 Bags",
"Product_Id": "00013755 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1438,
"name": "دلما شاى بنكهة الليمون 20 فتله",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة الليمون 20 فتله",
"Product_EN": null,
"Product_Id": "00013757 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1439,
"name": "دلما شاى بنكهة النعناع 20 فتله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة النعناع 20 فتله",
"Product_EN": null,
"Product_Id": "00013758 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1440,
"name": "دلما شاى بنكهة الخوخ 20 فتله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة الخوخ 20 فتله",
"Product_EN": null,
"Product_Id": "00013759 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1441,
"name": "دلما شاى بنكهة التوت 20 فتله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة التوت 20 فتله",
"Product_EN": null,
"Product_Id": "00013760 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1442,
"name": "دلما شاى بنكهة الفانيليا 20 فتله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة الفانيليا 20 فتله",
"Product_EN": null,
"Product_Id": "00013761 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1443,
"name": "دلما شاى كراميل 20 فتله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى كراميل 20 فتله",
"Product_EN": null,
"Product_Id": "00013763 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1444,
"name": "دلما شاى قرفه 20 فتله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى قرفه 20 فتله",
"Product_EN": null,
"Product_Id": "00013764 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1445,
"name": "دلما شاى بنكهة طوفى الموز 20 فتله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة طوفى الموز 20 فتله",
"Product_EN": null,
"Product_Id": "00013765 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1446,
"name": "دلما شاى بنكهة المانجو والفراولة 20 فتله",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة المانجو والفراولة 20 فتله",
"Product_EN": null,
"Product_Id": "00013766 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1447,
"name": "دلما شاى بنكهة العسل والجنزبيل 20 فتله",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة العسل والجنزبيل 20 فتله",
"Product_EN": null,
"Product_Id": "00013767 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1448,
"name": "دلما شاى بنكهة الماندرين 20 فتله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة الماندرين 20 فتله",
"Product_EN": null,
"Product_Id": "00013768 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1449,
"name": "دلما شاى بنكهة توت أزرق وفانيليا 20 فتله",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة توت أزرق وفانيليا 20 فتله",
"Product_EN": null,
"Product_Id": "00013769 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1450,
"name": "دلما شاى بنكهة تفاح وقرفة وفانيليا 20 فتله",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة تفاح وقرفة وفانيليا 20 فتله",
"Product_EN": null,
"Product_Id": "00013770 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1451,
"name": "دلما شاى أخضر 20 فتله",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى أخضر 20 فتله",
"Product_EN": null,
"Product_Id": "00013771 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1452,
"name": "دلما شاى أخضر بالنعناع المغربى 20 فتله",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى أخضر بالنعناع المغربى 20 فتله",
"Product_EN": null,
"Product_Id": "00013772 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1453,
"name": "تيفاني بريك اصابع ويفر بشيكولاته الحليب 15.5 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني بريك اصابع ويفر بشيكولاته الحليب 15.5 جم",
"Product_EN": null,
"Product_Id": "00013773 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1454,
"name": "تيفانى بسكويت ساندويتش بالكريمة الفانيليا 84 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت ساندويتش بالكريمة الفانيليا 84 جم",
"Product_EN": null,
"Product_Id": "00013774 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1455,
"name": "تيفانى ماجيستو ويفر بالكريمه 29.5 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى ماجيستو ويفر بالكريمه 29.5 جم",
"Product_EN": null,
"Product_Id": "00013775 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1456,
"name": "جراندوز جولد ديكاف قهوه سريعة التحضير 100 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندوز جولد ديكاف قهوه سريعة التحضير 100 جم",
"Product_EN": null,
"Product_Id": "00013776 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1457,
"name": "سيبا نوسا شيكولاته سبريد بالبندق 750 جم",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيبا نوسا شيكولاته سبريد بالبندق 750 جم",
"Product_EN": null,
"Product_Id": "00013777 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1458,
"name": "تيفانى بسكويت ساندويتش بالكريمة الفراولة 84 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت ساندويتش بالكريمة الفراولة 84 جم",
"Product_EN": null,
"Product_Id": "00013778 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1459,
"name": "تيفانى بسكويت ساندويتش بالكريمة جوز الهند 84 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت ساندويتش بالكريمة جوز الهند 84 جم",
"Product_EN": null,
"Product_Id": "00013779 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1460,
"name": "تيفاني بريك 4 اصابع 31 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني بريك 4 اصابع 31 جم",
"Product_EN": null,
"Product_Id": "00013780 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1461,
"name": "ميربا كوكيز شيكولاتة وكريمة شيكولاتة بالبندق 175 ج",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا كوكيز شيكولاتة وكريمة شيكولاتة بالبندق 175 ج",
"Product_EN": null,
"Product_Id": "00013782 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1462,
"name": "تيفانى بسكويت دايجيستيف لايت 250 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت دايجيستيف لايت 250 جم",
"Product_EN": null,
"Product_Id": "00013783 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1463,
"name": "تيفانى مارى بسكويت شاى 100 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى مارى بسكويت شاى 100 جم",
"Product_EN": null,
"Product_Id": "00013784 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1464,
"name": "تيفاني هابي بريك ويفر مغطي بشيكولاته الحليب 18 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني هابي بريك ويفر مغطي بشيكولاته الحليب 18 جم",
"Product_EN": null,
"Product_Id": "00013787 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1465,
"name": "تيفانى بسكويت دايجيستيف عادى 250 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت دايجيستيف عادى 250 جم",
"Product_EN": null,
"Product_Id": "00013788 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1466,
"name": "ستورك ويزرس بنبون بالقهوة 50 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ويزرس بنبون بالقهوة 50 جم",
"Product_EN": null,
"Product_Id": "00013789 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1467,
"name": "تيفانى جلوكوز 50 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى جلوكوز 50 جم",
"Product_EN": null,
"Product_Id": "00013790 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1468,
"name": "تيفانى ايفرى داى بسكويت نايس 50 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى ايفرى داى بسكويت نايس 50 جم",
"Product_EN": null,
"Product_Id": "00013791 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1469,
"name": "ستورك توفى ممبة 26.5 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك توفى ممبة 26.5 جم",
"Product_EN": null,
"Product_Id": "00013792 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1470,
"name": "بيبيتو جيلى ثور استكس فواكه مشكلة 35 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبيتو جيلى ثور استكس فواكه مشكلة 35 جم",
"Product_EN": null,
"Product_Id": "00013793 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1471,
"name": "احمد تى شاى افطار انجليزى 100 فتله",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى افطار انجليزى 100 فتله",
"Product_EN": "Ahmad Tea Black Tea English Breakfast 100 Bags",
"Product_Id": "00004563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1472,
"name": "احمد تى شاى أخضر 100 فتلة",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى أخضر 100 فتلة",
"Product_EN": "Ahmad Tea Green Tea 100 Bags",
"Product_Id": "00004564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1473,
"name": "احمد تى شاى اخضر بالنعناع 100 فتله ",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر بالنعناع 100 فتله ",
"Product_EN": "Ahmad Tea Green Tea & Mint 100 Bags",
"Product_Id": "00004565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1474,
"name": "احمد تى شاى افطار بدون علامه 40 فتله - موقوف",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى افطار بدون علامه 40 فتله - موقوف",
"Product_EN": null,
"Product_Id": "00004566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1475,
"name": "احمد تى شاى انجليزى 40 فتله - موقوف",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى انجليزى 40 فتله - موقوف",
"Product_EN": null,
"Product_Id": "00004567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1476,
"name": "بسمه بروكلى مجمد 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه بروكلى مجمد 400 جم",
"Product_EN": "Basma Broccoli Frozen 400g",
"Product_Id": "00004568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1477,
"name": "كنور شوربه كريمة الخضروات 70 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور شوربه كريمة الخضروات 70 جم",
"Product_EN": "Knorr Cream of Vegetable Soup 75 gm",
"Product_Id": "00004569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1478,
"name": "كنور فجيتار خضروات 70 جم",
"price": 1.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فجيتار خضروات 70 جم",
"Product_EN": "Knorr Vegetar For Vegetable 70 gm",
"Product_Id": "00004571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1479,
"name": "ليبتون شاى اخضر بالنعناع 100 فتله + مج",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر بالنعناع 100 فتله + مج",
"Product_EN": "Lipton Mint Green Tea 100 Bags + Free Mug",
"Product_Id": "00004572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1480,
"name": "فاميلى عيش فينو 4 ق",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فاميلى عيش فينو 4 ق",
"Product_EN": null,
"Product_Id": "00004573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1481,
"name": "فاميلى عيش فينو 5 ق",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فاميلى عيش فينو 5 ق",
"Product_EN": null,
"Product_Id": "00004574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1482,
"name": "فاميلى عيش فينو 8 ق",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فاميلى عيش فينو 8 ق",
"Product_EN": null,
"Product_Id": "00004575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1483,
"name": "عيش كيزر 4 ق - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عيش كيزر 4 ق - موقوف",
"Product_EN": null,
"Product_Id": "00004576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1484,
"name": "بلح ناشف وزن - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلح ناشف وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1485,
"name": "القمر قمر الدين 2020 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القمر قمر الدين 2020 400 جم",
"Product_EN": null,
"Product_Id": "00004579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1486,
"name": "زبيب بناتى جولد وزن - موقوف",
"price": 52.8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زبيب بناتى جولد وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1487,
"name": "نوجا سودانى",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوجا سودانى",
"Product_EN": null,
"Product_Id": "00004581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1488,
"name": "ملبس شيكولاتة بطعم القهوة",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ملبس شيكولاتة بطعم القهوة",
"Product_EN": null,
"Product_Id": "00004582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1489,
"name": "فريش بسكويت 6 ق",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريش بسكويت 6 ق",
"Product_EN": null,
"Product_Id": "00004584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1490,
"name": "البطريق جبنه فيتا فلفل حار 500 جم - موقوف",
"price": 11.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "البطريق جبنه فيتا فلفل حار 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1491,
"name": "احمد تى شاى اخضر 25 فتلة",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر 25 فتلة",
"Product_EN": "Ahmad Tea Green Tea 25 Bags",
"Product_Id": "00004586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1492,
"name": "اكوا فينا مياة طبيعيه جالون 18.90 لتر",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكوا فينا مياة طبيعيه جالون 18.90 لتر",
"Product_EN": null,
"Product_Id": "00004587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1493,
"name": "شيبسى جامبو بطعم الطماطم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جامبو بطعم الطماطم",
"Product_EN": null,
"Product_Id": "00004588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1494,
"name": "العراقى فلفل مكسيكى وزن - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى فلفل مكسيكى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1495,
"name": "اكسبريس بيتى بان صغير 5 ق - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اكسبريس بيتى بان صغير 5 ق - موقوف",
"Product_EN": null,
"Product_Id": "00004592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1496,
"name": "اكسبريس بيتى بان كبير 5 ق - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اكسبريس بيتى بان كبير 5 ق - موقوف",
"Product_EN": null,
"Product_Id": "00004593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1497,
"name": "بسكو مصر بسكويت فريش شيكولاتة علبة",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت فريش شيكولاتة علبة",
"Product_EN": null,
"Product_Id": "00004594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1498,
"name": "بسكو مصر بسكويت فريش فانليا",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت فريش فانليا",
"Product_EN": null,
"Product_Id": "00004595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1499,
"name": "نستله دولسيكا شيكولاتة وقشطة - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله دولسيكا شيكولاتة وقشطة - موقوف",
"Product_EN": null,
"Product_Id": "00004596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1500,
"name": "نستله دولسيكا قشطه - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله دولسيكا قشطه - موقوف",
"Product_EN": null,
"Product_Id": "00004597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1501,
"name": "العراقى زيتون اسبانى وزن - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى زيتون اسبانى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1502,
"name": "الرشيدى عسل اسود 350 جم - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى عسل اسود 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1503,
"name": "امريكانا ورق عنب مجمد 250 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا ورق عنب مجمد 250 جم",
"Product_EN": null,
"Product_Id": "00004600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1504,
"name": "حدائق كاليفورنيا فول مدمس ساده 450 جم 1+1ق مجانا",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا فول مدمس ساده 450 جم 1+1ق مجانا",
"Product_EN": "California Garden Fava Beans Recipe 450 gm 1+1Free",
"Product_Id": "00004602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1505,
"name": "فيرن سمن طبيعى 450 جم",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيرن سمن طبيعى 450 جم",
"Product_EN": "Fern Pure Butter Ghee 450 gm",
"Product_Id": "00004603 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1506,
"name": "زاهر بوبوس شوكلت - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بوبوس شوكلت - موقوف",
"Product_EN": null,
"Product_Id": "00004604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1507,
"name": "زاهر كريسبى شوكلت - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كريسبى شوكلت - موقوف",
"Product_EN": null,
"Product_Id": "00004605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1508,
"name": "زاهر مشكل كيك - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مشكل كيك - موقوف",
"Product_EN": null,
"Product_Id": "00004606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1509,
"name": "زاهر حلويات فرن مهلبيه 240 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات فرن مهلبيه 240 جم",
"Product_EN": "Zaher Muhallabia Oven 240 g",
"Product_Id": "00004607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1510,
"name": "ريتش بيك مافينز كيك شيكولاتة 3ق",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك مافينز كيك شيكولاتة 3ق",
"Product_EN": null,
"Product_Id": "00004608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1511,
"name": "برسيل مسحوق يدوى 60 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى 60 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1512,
"name": "جنرال منظف ارضيات لافندر 730 مل - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال منظف ارضيات لافندر 730 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1513,
"name": "هاينز مايونيز 10جم ظرف - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز مايونيز 10جم ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00004614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1514,
"name": "ميمكس بونبون قطعه - موقوف",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميمكس بونبون قطعه - موقوف",
"Product_EN": null,
"Product_Id": "00004616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1515,
"name": "ميمكس توفى فكه * 260 ق - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميمكس توفى فكه * 260 ق - موقوف",
"Product_EN": null,
"Product_Id": "00004617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1516,
"name": "ميمكس توفى فكه ق - موقوف",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميمكس توفى فكه ق - موقوف",
"Product_EN": null,
"Product_Id": "00004618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1517,
"name": "ميمكس مصاصه لبان 1 ق - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميمكس مصاصه لبان 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00004620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1518,
"name": "العلا فلفل ابيض10جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا فلفل ابيض10جم",
"Product_EN": null,
"Product_Id": "00004621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1519,
"name": "جهينة عصير قمر الدين 330 مل - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير قمر الدين 330 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1520,
"name": "جهينة عصير خروب 330 مل - موقوف",
"price": 6.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير خروب 330 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1521,
"name": "اولكر بسكويت مارى ساده",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت مارى ساده",
"Product_EN": null,
"Product_Id": "00004624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1522,
"name": "بلح نمره (1) - موقوف",
"price": 22.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلح نمره (1) - موقوف",
"Product_EN": null,
"Product_Id": "00004625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1523,
"name": "بلح جاف وسط - موقوف",
"price": 20.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلح جاف وسط - موقوف",
"Product_EN": null,
"Product_Id": "00004626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1524,
"name": "بلح جاف عادى - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلح جاف عادى - موقوف",
"Product_EN": null,
"Product_Id": "00004628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1525,
"name": "زاهر حليب بقرى - كيس",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب بقرى - كيس",
"Product_EN": "Zaher Beef Milk - Raw",
"Product_Id": "00004629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1526,
"name": "مزارع دينا زبادى لايت 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا زبادى لايت 105 جم",
"Product_EN": "Dina Farms Yogurt Light 105 gm",
"Product_Id": "00004630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1527,
"name": "العراقى زيتون دولسى وزن - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى زيتون دولسى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1528,
"name": "فيبا ملح لغسالات الاطباق 1 كجم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا ملح لغسالات الاطباق 1 كجم",
"Product_EN": null,
"Product_Id": "00004633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1529,
"name": "اكسترا مسحوق بودر 600 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اكسترا مسحوق بودر 600 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1530,
"name": "زيت زيتون تركى صفيحة *16 - موقوف",
"price": 700,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زيت زيتون تركى صفيحة *16 - موقوف",
"Product_EN": null,
"Product_Id": "00004635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1531,
"name": "اولكر كات كات ويفر بالشيكولاتة 26 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر كات كات ويفر بالشيكولاتة 26 جم",
"Product_EN": null,
"Product_Id": "00004636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1532,
"name": "امواج حلاوه ساده وزن - موقوف",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امواج حلاوه ساده وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1533,
"name": "فريكو جبنه جودة سادة وزن",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فريكو جبنه جودة سادة وزن",
"Product_EN": "Frico Gouda Plain Cheese - Scalable",
"Product_Id": "00004639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1534,
"name": "اولكر بسكريم بالشيكولاتة سنجل 20 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكريم بالشيكولاتة سنجل 20 جم",
"Product_EN": null,
"Product_Id": "00004640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1535,
"name": "اطباق فوم 250 جم",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اطباق فوم 250 جم",
"Product_EN": null,
"Product_Id": "00004641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1536,
"name": "اطباق فوم 500 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اطباق فوم 500 جم",
"Product_EN": null,
"Product_Id": "00004642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1537,
"name": "اطباق فوم 1 كجم",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اطباق فوم 1 كجم",
"Product_EN": null,
"Product_Id": "00004643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1538,
"name": "رول استريتش 30 سم",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "رول استريتش 30 سم",
"Product_EN": null,
"Product_Id": "00004644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1539,
"name": "لاكتيل دويتو مشروب زبادى بالمانجو 220 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو مشروب زبادى بالمانجو 220 جم",
"Product_EN": "Lactel Duetto Mango Yogurt Drink 220 ml",
"Product_Id": "00004645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1540,
"name": "زبيب ايرانى وزن - موقوف",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زبيب ايرانى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1541,
"name": "كركديه اسوانى وزن - موقوف",
"price": 57.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كركديه اسوانى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1542,
"name": "جوزهند خشن 2020 وزن",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جوزهند خشن 2020 وزن",
"Product_EN": null,
"Product_Id": "00004648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1543,
"name": "المصطفى قمر الدين سورى",
"price": 29.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصطفى قمر الدين سورى",
"Product_EN": null,
"Product_Id": "00004649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1544,
"name": "لؤلؤه الشام قمر الدين",
"price": 10.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لؤلؤه الشام قمر الدين",
"Product_EN": null,
"Product_Id": "00004650 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1545,
"name": "نستلة دولسيكا قشطة وشيكولاتة - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة دولسيكا قشطة وشيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00004651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1546,
"name": "دولسيكا مانجو 35 جم - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دولسيكا مانجو 35 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1547,
"name": "دولسى وتش 53 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دولسى وتش 53 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1548,
"name": "الشيمى جبنة براميلى صفيحه *15 - موقوف",
"price": 675,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الشيمى جبنة براميلى صفيحه *15 - موقوف",
"Product_EN": null,
"Product_Id": "00004657 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1549,
"name": "شطارة زيت 800 جم",
"price": 14.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شطارة زيت 800 جم",
"Product_EN": "Shatara Oil 800 gm ",
"Product_Id": "00004658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1550,
"name": "كيت كات شوكولاتة 4 اصابع",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة 4 اصابع",
"Product_EN": "Kit Kat Chocolate 4 Fingers",
"Product_Id": "00004660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1551,
"name": "اطياب صدور بانيه حار 1 كجم 20 ق",
"price": 101,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب صدور بانيه حار 1 كجم 20 ق",
"Product_EN": "Atyab Hot Crispy Chicken Pane 20 pieces",
"Product_Id": "00004661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1552,
"name": "اطياب دجاجة كامله بارد 12 ق - موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب دجاجة كامله بارد 12 ق - موقوف",
"Product_EN": "Atyab Whole Chicken 12 pieces ",
"Product_Id": "00004662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1553,
"name": "زاهر موس كنافة بالمانجو - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر موس كنافة بالمانجو - موقوف",
"Product_EN": null,
"Product_Id": "00004665 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1554,
"name": "الامام دقيق 1 كجم - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الامام دقيق 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00004666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1555,
"name": "دايزى مناديل جيب ",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "دايزى مناديل جيب ",
"Product_EN": null,
"Product_Id": "00004667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1556,
"name": "تاج الملوك كاسترد 300 جم",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تاج الملوك كاسترد 300 جم",
"Product_EN": null,
"Product_Id": "00004668 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1557,
"name": "اطياب هوت دوج بقرى 1 كجم 25 ق",
"price": 79,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب هوت دوج بقرى 1 كجم 25 ق",
"Product_EN": "Atyab Beef Hotdog 25 pieces 1 kg",
"Product_Id": "00004670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1558,
"name": "امريكانا فاصوليا خضراء مجمد 400 جم",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا فاصوليا خضراء مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00004671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1559,
"name": "بريجو سمبوسك 2+1 عرض",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريجو سمبوسك 2+1 عرض",
"Product_EN": null,
"Product_Id": "00004674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1560,
"name": "تويكس شيكولاته اكسترا 2 صباع 75 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تويكس شيكولاته اكسترا 2 صباع 75 جم",
"Product_EN": "Twix Chocolate Extra 75 gm",
"Product_Id": "00004675 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1561,
"name": "جهينه بوريه طماطم 500 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بوريه طماطم 500 جم",
"Product_EN": "Juhayna Tomato Puree Original 500 g",
"Product_Id": "00004676 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1562,
"name": "ايزيس عصير دوم اورجانيك 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس عصير دوم اورجانيك 1 لتر",
"Product_EN": "ISIS Dome Organic Juice 1 L",
"Product_Id": "00004677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1563,
"name": "ايزيس عصير خروب اورجانيك 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس عصير خروب اورجانيك 1 لتر",
"Product_EN": "ISIS Organic Carob Juice 1 L",
"Product_Id": "00004678 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1564,
"name": "ايزيس عصير كركدية اورجانيك 1 لتر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس عصير كركدية اورجانيك 1 لتر",
"Product_EN": "ISIS Organic Hibiscus Juice 1 L",
"Product_Id": "00004679 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1565,
"name": "فيبا سائل تنظيف اطباق بالتفاح 2 لتر",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق بالتفاح 2 لتر",
"Product_EN": null,
"Product_Id": "00004680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1566,
"name": "فيبا سائل تنظيف اطباق بالليمون 4 لتر",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق بالليمون 4 لتر",
"Product_EN": null,
"Product_Id": "00004681 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1567,
"name": "فيبا سائل تنظيف اطباق بالتفاح 4 لتر - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق بالتفاح 4 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1568,
"name": "ماكسيل منظف تواليت ليمون 500 مل",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكسيل منظف تواليت ليمون 500 مل",
"Product_EN": null,
"Product_Id": "00004683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1569,
"name": "ماكسيل منظف تواليت 500 مل اكسجين - موقوف",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكسيل منظف تواليت 500 مل اكسجين - موقوف",
"Product_EN": null,
"Product_Id": "00004684 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1570,
"name": "كلوريل الوان + كلوريل عادى 1050 مل",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل الوان + كلوريل عادى 1050 مل",
"Product_EN": null,
"Product_Id": "00004685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1571,
"name": "شهرزاد بسله بالجزر مجمد 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهرزاد بسله بالجزر مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00004686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1572,
"name": "امريكانا بسله بالجزر مجمد 400 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا بسله بالجزر مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00004687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1573,
"name": "نسكويك شيكولاتة 55 جم - موقوف",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك شيكولاتة 55 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004688 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1574,
"name": "ماجى شوربة كريمه بالفراخ 71 جم",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى شوربة كريمه بالفراخ 71 جم",
"Product_EN": null,
"Product_Id": "00004689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1575,
"name": "ماجى مرقة دجاج 8 جم - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى مرقة دجاج 8 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1576,
"name": "نستله مياه طبيعيه جالون 19 لتر - فارغ",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله مياه طبيعيه جالون 19 لتر - فارغ",
"Product_EN": "Nestle Natural Water Gallon 19 L - Empty",
"Product_Id": "00004693 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1577,
"name": "زاهر طحينه 1 ك - موقوف",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر طحينه 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00004694 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1578,
"name": "طيبة لانشون سادة بيف وزن",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طيبة لانشون سادة بيف وزن",
"Product_EN": null,
"Product_Id": "00004696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1579,
"name": "نستله نيدو حليب مجفف 390 جم",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نيدو حليب مجفف 390 جم",
"Product_EN": null,
"Product_Id": "00004697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1580,
"name": "ليسيور زيت عباد 1لتر - موقوف",
"price": 34.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليسيور زيت عباد 1لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004698 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1581,
"name": "المراعى زبادى طبيعى 105 جم 5 + 1 ق",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى طبيعى 105 جم 5 + 1 ق",
"Product_EN": "Almarai natural Yohurt 105 gm 5 + 1 Pieces ",
"Product_Id": "00004699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1582,
"name": "سلك مواعين كارت 1 ق",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "سلك مواعين كارت 1 ق",
"Product_EN": null,
"Product_Id": "00004700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1583,
"name": "رويال اعشاب كركديه 20 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب كركديه 20 فلتر",
"Product_EN": "Royal Hibiscus Herbs 20 Bags",
"Product_Id": "00004701 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1584,
"name": "لمار عصير تفاح طبيعى 200 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير تفاح طبيعى 200 مل",
"Product_EN": "Lamar Apple Juice - 200 ml",
"Product_Id": "00004702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1585,
"name": "داونى منعم احساس الارتخاء 1 لتر - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم احساس الارتخاء 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004703 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1586,
"name": "ابوعلى طرشى بوليف وزن - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابوعلى طرشى بوليف وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1587,
"name": "ابو على ليمون بالعصفر وزن - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابو على ليمون بالعصفر وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1588,
"name": "ابو على بصل ساده وزن - موقوف",
"price": 12.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابو على بصل ساده وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1589,
"name": "ابو على خيار شرائح وزن - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابو على خيار شرائح وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1590,
"name": "طيبات الوادى تمر الوادى 650 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى تمر الوادى 650 جم",
"Product_EN": "Taybat Al Wadi Dates Al Wadi 650 gm ",
"Product_Id": "00004708 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1591,
"name": "الربيع طحينه 500 جم - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع طحينه 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004709 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1592,
"name": "الربيع طحينه 200 جم - موقوف",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع طحينه 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1593,
"name": "العلا سمبوسك لبنانى 350 جم - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العلا سمبوسك لبنانى 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004711 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1594,
"name": "العلا سمبوسك جبنه 350 جم - موقوف",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العلا سمبوسك جبنه 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1595,
"name": "العلا سمبوسك لحمه 350 جم - موقوف",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العلا سمبوسك لحمه 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004713 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1596,
"name": "العلا سمبوسك ساده 2+1 ق عرض - موقوف",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العلا سمبوسك ساده 2+1 ق عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004714 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1597,
"name": "الطيبات تمر بالنوي 850جم - موقوف",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطيبات تمر بالنوي 850جم - موقوف",
"Product_EN": null,
"Product_Id": "00004716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1598,
"name": "اريال مسحوق اوتو 2.5 داونى عرض - موقوف",
"price": 94.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اوتو 2.5 داونى عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004717 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1599,
"name": "هارفست صلصه 3كيلو - موقوف",
"price": 40.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست صلصه 3كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00004718 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1600,
"name": "العين صلصه صفيح 800 جم - موقوف",
"price": 17.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العين صلصه صفيح 800 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1601,
"name": "زاهر زبادى خالى الدسم 180 جم - علبة",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زبادى خالى الدسم 180 جم - علبة",
"Product_EN": "Zaher Skimmed Yogurt 180 g",
"Product_Id": "00004720 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1602,
"name": "ايزى سويت عسل 50 جم",
"price": 2.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايزى سويت عسل 50 جم",
"Product_EN": "Easy Sweet Honey 50 gm",
"Product_Id": "00004722 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1603,
"name": "داونى منعم حدائق الاحلام 1 لتر - موقوف",
"price": 36.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم حدائق الاحلام 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1604,
"name": "داونى منعم ملابس سوفت - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم ملابس سوفت - موقوف",
"Product_EN": null,
"Product_Id": "00004724 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1605,
"name": "ديمه بسكويت بكريمه الفانليا 75 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت بكريمه الفانليا 75 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004726 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1606,
"name": "ديمه بسكويت بكريمة الشيكولاتة 75 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت بكريمة الشيكولاتة 75 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004727 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1607,
"name": "مميكيس بونبن دولتشى زبده",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مميكيس بونبن دولتشى زبده",
"Product_EN": null,
"Product_Id": "00004728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1608,
"name": "سيلفر ورنيش 75 مل",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "سيلفر ورنيش 75 مل",
"Product_EN": null,
"Product_Id": "00004729 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1609,
"name": "ايزى كير بيبي كاب 80 منديل",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير بيبي كاب 80 منديل",
"Product_EN": "Easy Care Baby Cap 80 Wipes",
"Product_Id": "00004731 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1610,
"name": "علبه ايس كريم 2 بوله شفاف بالغطاء ",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علبه ايس كريم 2 بوله شفاف بالغطاء ",
"Product_EN": null,
"Product_Id": "00004732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1611,
"name": "زجاجه لبن 1 لتر شفاف بلاستيك",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زجاجه لبن 1 لتر شفاف بلاستيك",
"Product_EN": null,
"Product_Id": "00004733 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1612,
"name": "زجاجه لبن 300 مل شفاف بلاستيك",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زجاجه لبن 300 مل شفاف بلاستيك",
"Product_EN": null,
"Product_Id": "00004734 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1613,
"name": "علبه ايس كريم كبيره",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علبه ايس كريم كبيره",
"Product_EN": null,
"Product_Id": "00004735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1614,
"name": "شنط صيدليه صغيره",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شنط صيدليه صغيره",
"Product_EN": null,
"Product_Id": "00004737 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1615,
"name": "اطباق فوم 125 جم ",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اطباق فوم 125 جم ",
"Product_EN": null,
"Product_Id": "00004738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1616,
"name": "شاليموه 100 ق",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شاليموه 100 ق",
"Product_EN": null,
"Product_Id": "00004739 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1617,
"name": "كوب صغير ابيض شفاف 100 ق",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كوب صغير ابيض شفاف 100 ق",
"Product_EN": null,
"Product_Id": "00004740 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1618,
"name": "بكر ميزان م 58 * 50",
"price": 13.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بكر ميزان م 58 * 50",
"Product_EN": null,
"Product_Id": "00004742 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1619,
"name": "زاهر معلقه صغيره ابيض شفاف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر معلقه صغيره ابيض شفاف",
"Product_EN": null,
"Product_Id": "00004743 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1620,
"name": "رول ورق فويل ",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "رول ورق فويل ",
"Product_EN": null,
"Product_Id": "00004744 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1621,
"name": "زاهر علبة ايس كريم 1 بوله مطبوع - 4 اونز - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر علبة ايس كريم 1 بوله مطبوع - 4 اونز - موقوف",
"Product_EN": null,
"Product_Id": "00004745 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1622,
"name": "علب ايس كريم 2 بوله مطبوع (6 اونز)",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علب ايس كريم 2 بوله مطبوع (6 اونز)",
"Product_EN": null,
"Product_Id": "00004746 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1623,
"name": "جوانتى شفاف فريش كيس",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "جوانتى شفاف فريش كيس",
"Product_EN": null,
"Product_Id": "00004747 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1624,
"name": "امريكانا فول مدمس بالفلفل الحار 400 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فول مدمس بالفلفل الحار 400 جم",
"Product_EN": null,
"Product_Id": "00004748 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1625,
"name": "شيبسى بطاطس 40 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى بطاطس 40 جم",
"Product_EN": null,
"Product_Id": "00004749 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1626,
"name": "اطياب كفته بقرى 350 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب كفته بقرى 350 جم",
"Product_EN": "Atyab Beef Grilled Kofta 350 g",
"Product_Id": "00004750 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1627,
"name": "جهينة زبادى طبيعى 3 كجم",
"price": 63,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى طبيعى 3 كجم",
"Product_EN": "Juhayna Natural Yogurt 3 kg",
"Product_Id": "00004751 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1628,
"name": "طيبة لانشون فراخ بيف وزن",
"price": 72.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طيبة لانشون فراخ بيف وزن",
"Product_EN": null,
"Product_Id": "00004752 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1629,
"name": "طيبة لانشون بسطرمة وزن",
"price": 82.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طيبة لانشون بسطرمة وزن",
"Product_EN": null,
"Product_Id": "00004753 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1630,
"name": "طيبه لانشون جملى وزن - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طيبه لانشون جملى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004754 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1631,
"name": "طيبه لانشون اوزى ساده وزن - موقوف",
"price": 71.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طيبه لانشون اوزى ساده وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004755 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1632,
"name": "ليبتون شاى اخضر بالنعناع 25 فلته",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر بالنعناع 25 فلته",
"Product_EN": "Lipton Mint Green Tea 25 bags",
"Product_Id": "00004757 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1633,
"name": "ليبتون شاى اخضرعادى 100 فتلة +مج - موقوف",
"price": 47.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضرعادى 100 فتلة +مج - موقوف",
"Product_EN": null,
"Product_Id": "00004758 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1634,
"name": "الشروق بلح 1.200 كجم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق بلح 1.200 كجم",
"Product_EN": "Al-Shorouk dates 1,200 kg",
"Product_Id": "00004759 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1635,
"name": "حدائق كاليفورنيا فول سعودى 450 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا فول سعودى 450 جم",
"Product_EN": "California Garden Fava Beans Saudi Recipe 450 gm",
"Product_Id": "00004760 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1636,
"name": "مناديل بقاله وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "مناديل بقاله وزن",
"Product_EN": null,
"Product_Id": "00004761 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1637,
"name": "امريكانا كفته بقرى 400 جم",
"price": 28.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا كفته بقرى 400 جم",
"Product_EN": "Americana Beef Kofta 400 gm",
"Product_Id": "00004763 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1638,
"name": "سوهاجى بهارات اللحمة 60 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى بهارات اللحمة 60 جم",
"Product_EN": "Suhagy Meat Spices 60 gm",
"Product_Id": "00004766 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1639,
"name": "سوهاجى حبهان صحيح 35 جم",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى حبهان صحيح 35 جم",
"Product_EN": "Suhagy Sahih Cardamom 35 gm",
"Product_Id": "00004768 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1640,
"name": "سوهاجى حبهان مطحون 35 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى حبهان مطحون 35 جم",
"Product_EN": "Suhagy Cardamom Powder 35 gm",
"Product_Id": "00004769 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1641,
"name": "سوهاجى زعتر برى مطحون 35 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى زعتر برى مطحون 35 جم",
"Product_EN": "Suhagy Thyme Powder 35 gm",
"Product_Id": "00004771 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1642,
"name": "سوهاجى شطه حاره مطحونه 35 جم - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى شطه حاره مطحونه 35 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004772 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1643,
"name": "سوهاجى فلفل ابيض مطحون 60 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى فلفل ابيض مطحون 60 جم",
"Product_EN": "Suhagy White Pepper Powder 45 gm",
"Product_Id": "00004773 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1644,
"name": "سوهاجى قرفه مطحونه 60 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى قرفه مطحونه 60 جم",
"Product_EN": "Suhagy Cinnamon Powder 60 gm",
"Product_Id": "00004774 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1645,
"name": "سوهاجى كارى 60 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى كارى 60 جم",
"Product_EN": "Suhagy Curry 60 gm",
"Product_Id": "00004775 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1646,
"name": "سوهاجى بيكربونات صوديوم 60 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى بيكربونات صوديوم 60 جم",
"Product_EN": "Suhagy Bicarbonate Sodium 60 gm",
"Product_Id": "00004776 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1647,
"name": "سوهاجى كركم مطحون 60 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى كركم مطحون 60 جم",
"Product_EN": "Suhagy Turmeric Powder 60 gm",
"Product_Id": "00004777 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1648,
"name": "سوهاجى فلفل احمر مطحون 75 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى فلفل احمر مطحون 75 جم",
"Product_EN": "Suhagy Red Pepper Powder 90 gm",
"Product_Id": "00004778 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1649,
"name": "صن بايتس زبده وتوابل",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن بايتس زبده وتوابل",
"Product_EN": null,
"Product_Id": "00004780 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1650,
"name": "سوهاجى صوص ديمى جلاس 40 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى صوص ديمى جلاس 40 جم",
"Product_EN": "Suhagy Demi Glace Sauce 40 gm",
"Product_Id": "00004782 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1651,
"name": "سوهاجى نشا 75 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى نشا 75 جم",
"Product_EN": "Suhagy Starch 75 gm",
"Product_Id": "00004783 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1652,
"name": "ابوعلى فلفل مكسيكى وزن - موقوف",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابوعلى فلفل مكسيكى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004784 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1653,
"name": "ابوعلى زيتون اسود حلقات وزن - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابوعلى زيتون اسود حلقات وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004787 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1654,
"name": "بيك ستيكس بطعم السجق 42 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك ستيكس بطعم السجق 42 جم",
"Product_EN": null,
"Product_Id": "00004790 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1655,
"name": "كوكى درام ستيك دجاج بارد 700 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى درام ستيك دجاج بارد 700 جم",
"Product_EN": "Koki Drum Steak Chicken Cold 700 gm",
"Product_Id": "00004794 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1656,
"name": "كوكى دجاجه كامله + بطاطس - موقوف",
"price": 64.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى دجاجه كامله + بطاطس - موقوف",
"Product_EN": null,
"Product_Id": "00004795 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1657,
"name": "امريكانا بيف برجر 1 كجم 20 ق",
"price": 66.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا بيف برجر 1 كجم 20 ق",
"Product_EN": "Americana Beef Burger 1 kg 20 Pieces ",
"Product_Id": "00004797 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1658,
"name": "امريكانا شاورما بقرى 500 جم",
"price": 49.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا شاورما بقرى 500 جم",
"Product_EN": "Americana Beef Shawarma 500 gm",
"Product_Id": "00004798 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1659,
"name": "امريكانا سجق شرقى 350 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا سجق شرقى 350 جم",
"Product_EN": "Americana Oriental Sausage 350 gm",
"Product_Id": "00004799 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1660,
"name": "امريكانا كفته الحاتى 400 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا كفته الحاتى 400 جم",
"Product_EN": "Americana Kofta Al - Haty 400 gm",
"Product_Id": "00004800 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1661,
"name": "زاهر حلويات بودينج شيكولاته وسط",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات بودينج شيكولاته وسط",
"Product_EN": "Zaher Pudding w Chocolate - Medium Size",
"Product_Id": "00004801 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1662,
"name": "سفانا تونه قطع زيت نباتى 80 جم - موقوف",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفانا تونه قطع زيت نباتى 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004803 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1663,
"name": "مصر اسبانيا بوليف 750جم - موقوف",
"price": 18.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصر اسبانيا بوليف 750جم - موقوف",
"Product_EN": null,
"Product_Id": "00004804 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1664,
"name": "زاهر قمر الدين وسط - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر قمر الدين وسط - موقوف",
"Product_EN": null,
"Product_Id": "00004805 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1665,
"name": "زاهر كنافة بالبلح - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة بالبلح - موقوف",
"Product_EN": null,
"Product_Id": "00004806 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1666,
"name": "لويد شاى اخضر 20 فتله",
"price": 12.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لويد شاى اخضر 20 فتله",
"Product_EN": null,
"Product_Id": "00004807 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1667,
"name": "المراعى حليب كامل الدسم 1.400 لتر عرض - موقوف",
"price": 18.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب كامل الدسم 1.400 لتر عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004808 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1668,
"name": "الرشيدى الميزان حلاوه طحينيه بار جامبو 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان حلاوه طحينيه بار جامبو 105 جم",
"Product_EN": "El Rashidi El Mizan Halawa Tahini Bar Jumbo 105 gm",
"Product_Id": "00004810 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1669,
"name": "جهينة عصير كركديه 330 مل - موقوف",
"price": 6.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير كركديه 330 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004814 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1670,
"name": "الرشيدى مربى فراوله 340 جم - موقوف",
"price": 8.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى مربى فراوله 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004816 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1671,
"name": "الرشيدى مربى تين 340 جم - موقوف",
"price": 8.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى مربى تين 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004817 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1672,
"name": "زاهر ايس كريم فئه 10ج 1 كيلو - موقوف",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم فئه 10ج 1 كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00004819 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1673,
"name": "زاهر ايس كريم فئه 8 ج 1كيلو - موقوف",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم فئه 8 ج 1كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00004820 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1674,
"name": "زاهر ايس كريم فئه 7 ج 1 كيلو - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم فئه 7 ج 1 كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00004821 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1675,
"name": "طعمة جبنة فيتا 125 جم - موقوف",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنة فيتا 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004822 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1676,
"name": "عيش شامى كيس كبير",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عيش شامى كيس كبير",
"Product_EN": null,
"Product_Id": "00004823 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1677,
"name": "دائق كاليفورنيا فول بالسمن 400 جم - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دائق كاليفورنيا فول بالسمن 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004824 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1678,
"name": "بيك ستيكس 42 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك ستيكس 42 جم",
"Product_EN": null,
"Product_Id": "00004825 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1679,
"name": "زاهر رايب بالبلح 300 مل - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر رايب بالبلح 300 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004827 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1680,
"name": "زاهر حليب بالتمر كبير 1 لتر",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب بالتمر كبير 1 لتر",
"Product_EN": "Zaher Milk w Dates 1 L",
"Product_Id": "00004828 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1681,
"name": "سفانا تونه قطع خفيف 120 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفانا تونه قطع خفيف 120 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004831 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1682,
"name": "سوهاجى شطه حاره مطحونه 35 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى شطه حاره مطحونه 35 جم",
"Product_EN": "Suhagy Red Pepper Powder 60 gm",
"Product_Id": "00004832 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1683,
"name": "سوهاجى زعتر سليم 35 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى زعتر سليم 35 جم",
"Product_EN": "Suhagy Thyme Slim 35 gm",
"Product_Id": "00004833 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1684,
"name": "زاهر كنافة توت ازرق - كب - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة توت ازرق - كب - موقوف",
"Product_EN": null,
"Product_Id": "00004834 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1685,
"name": "زاهر كنافة توت احمر - كب - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة توت احمر - كب - موقوف",
"Product_EN": null,
"Product_Id": "00004835 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1686,
"name": "المراعى زبادى خوخ 100جم عرض",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى خوخ 100جم عرض",
"Product_EN": "Almarai Yogurt Peach 100 gm - Offer",
"Product_Id": "00004836 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1687,
"name": "المراعي زبادى فراولة 100جم عرض",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعي زبادى فراولة 100جم عرض",
"Product_EN": "Almarai Yogurt Strawberry 100 gm - Offer",
"Product_Id": "00004837 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1688,
"name": "امريكانا ذره حلوه 400 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا ذره حلوه 400 جم",
"Product_EN": null,
"Product_Id": "00004838 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1689,
"name": "شيتوس سناكس ",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس سناكس ",
"Product_EN": null,
"Product_Id": "00004840 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1690,
"name": "زاهر عصير تمر هندى 1 لتر",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير تمر هندى 1 لتر",
"Product_EN": "Zaher Tamarind Juice 1 L",
"Product_Id": "00004842 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1691,
"name": "زاهر تمر هندى 300 مل - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تمر هندى 300 مل - موقوف",
"Product_EN": "Zaher Tamarind 300 ml",
"Product_Id": "00004843 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1692,
"name": "زاهر عصير سوبيا 1 لتر",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير سوبيا 1 لتر",
"Product_EN": "Zaher Sobia Juice 1 L",
"Product_Id": "00004844 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1693,
"name": "زاهر سوبيا 300 مل - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سوبيا 300 مل - موقوف",
"Product_EN": "Zaher Sobia 300 ml ",
"Product_Id": "00004845 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1694,
"name": "العلى مستكه صينى 10 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى مستكه صينى 10 جم",
"Product_EN": null,
"Product_Id": "00004846 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1695,
"name": "عبد المعبود بن محوج غامق 200 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج غامق 200 جم",
"Product_EN": "Abd El Maaboud Dark Cardamom Coffee 200 gm",
"Product_Id": "00004847 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1696,
"name": "ايزيس اعشاب نعناع 100 فلتر",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب نعناع 100 فلتر",
"Product_EN": "ISIS Herbs Mint 100 Bags",
"Product_Id": "00004848 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1697,
"name": "بكر كاشير صغير 28 متر",
"price": 7.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بكر كاشير صغير 28 متر",
"Product_EN": null,
"Product_Id": "00004849 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1698,
"name": "اكياس زبده",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اكياس زبده",
"Product_EN": null,
"Product_Id": "00004851 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1699,
"name": "هابى فارم بيض بلدى مغلف 6 ق - موقوف",
"price": 14.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هابى فارم بيض بلدى مغلف 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00004852 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1700,
"name": "هابى فارم بلدى مغلف 10ق - موقوف",
"price": 25.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هابى فارم بلدى مغلف 10ق - موقوف",
"Product_EN": null,
"Product_Id": "00004853 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1701,
"name": "هابى فارم بلدى مغلف 30ق - موقوف",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هابى فارم بلدى مغلف 30ق - موقوف",
"Product_EN": null,
"Product_Id": "00004854 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1702,
"name": "المغربى طرشى بلدى 400 جم - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المغربى طرشى بلدى 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004855 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1703,
"name": "حلوانى لانشون زيتون وزن - موقوف",
"price": 96,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى لانشون زيتون وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004857 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1704,
"name": "دولسيكا السطوره 35 جم - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دولسيكا السطوره 35 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004858 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1705,
"name": "كيمو كونو فراوله \/ مانجو 105 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيمو كونو فراوله \/ مانجو 105 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004859 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1706,
"name": "ايزى كير مناديل فريش جاردينيا 40 منديل",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل فريش جاردينيا 40 منديل",
"Product_EN": "Easy Care Fresh Gardenia Wipes 40 Wipes",
"Product_Id": "00004860 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1707,
"name": "نستله مياه طبيعيه 330 مل",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله مياه طبيعيه 330 مل",
"Product_EN": "Nestle Natural Water 330 ml",
"Product_Id": "00004861 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1708,
"name": "بريل منظف اطباق 425 جم - موقوف",
"price": 7.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق 425 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004862 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1709,
"name": "جهينة كريمه خفق 1 لتر",
"price": 89,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة كريمه خفق 1 لتر",
"Product_EN": "Juhayna Whipping Cream 1 L",
"Product_Id": "00004863 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1710,
"name": "مولفيكس حفاضات 36 مقاس 3 - موقوف",
"price": 81.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفيكس حفاضات 36 مقاس 3 - موقوف",
"Product_EN": null,
"Product_Id": "00004864 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1711,
"name": "جرين لاند جبنه موزريلا مبشور 200 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه موزريلا مبشور 200 جم",
"Product_EN": "Green Land Mozzarella Cheese 200 gm",
"Product_Id": "00004865 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1712,
"name": "سلك استانلس 20 جم - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سلك استانلس 20 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004866 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1713,
"name": "ايزى كير مناديل 20 منديل 2+1 20%",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل 20 منديل 2+1 20%",
"Product_EN": "Easy Care Wipes 20 Wipes 2+1 20%",
"Product_Id": "00004867 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1714,
"name": "ايزى كير مناديل 40 منديل 2+1",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل 40 منديل 2+1",
"Product_EN": "Easy Care Wipes 40 Wipes 2+1 ",
"Product_Id": "00004868 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1715,
"name": "ايزى كير بيبى مناديل 80 + 40 منديل",
"price": 31.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير بيبى مناديل 80 + 40 منديل",
"Product_EN": "Easy Care 2 Pieces 80+40 Wipes",
"Product_Id": "00004869 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1716,
"name": "شيتوس كرانشى جبنه خطيره 52 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس كرانشى جبنه خطيره 52 جم",
"Product_EN": null,
"Product_Id": "00004871 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1717,
"name": "جليد غيار اتوماتيك 175 جم الليلك الابيض",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد غيار اتوماتيك 175 جم الليلك الابيض",
"Product_EN": null,
"Product_Id": "00004872 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1718,
"name": "جليد نسيم الصباح غيار اتوماتيك 175 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد نسيم الصباح غيار اتوماتيك 175 جم",
"Product_EN": null,
"Product_Id": "00004873 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1719,
"name": "جليد غيار اتوماتيك 175 جم نسيم استوائى",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد غيار اتوماتيك 175 جم نسيم استوائى",
"Product_EN": null,
"Product_Id": "00004874 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1720,
"name": "جليد معطر جو روعه الزهور 300 مل",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد معطر جو روعه الزهور 300 مل",
"Product_EN": null,
"Product_Id": "00004875 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1721,
"name": "جليد معطر جو تفاح وقرفه 300 مل",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد معطر جو تفاح وقرفه 300 مل",
"Product_EN": null,
"Product_Id": "00004876 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1722,
"name": "ريد احمر مبيد الحشرات الزاحفه 300 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ريد احمر مبيد الحشرات الزاحفه 300 مل",
"Product_EN": null,
"Product_Id": "00004877 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1723,
"name": "كيروكس مبيد للحشرات الزاحفه 500 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كيروكس مبيد للحشرات الزاحفه 500 مل",
"Product_EN": null,
"Product_Id": "00004878 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1724,
"name": "كيروكس مبيد للحشرات الزاحفه 300 مل",
"price": 18.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كيروكس مبيد للحشرات الزاحفه 300 مل",
"Product_EN": null,
"Product_Id": "00004879 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1725,
"name": "بايجون مبيد للحشرات الزاحفه 300 مل",
"price": 29.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بايجون مبيد للحشرات الزاحفه 300 مل",
"Product_EN": null,
"Product_Id": "00004880 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1726,
"name": "شاوت مزيل بقع للملابس 500 مل",
"price": 33.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "شاوت مزيل بقع للملابس 500 مل",
"Product_EN": null,
"Product_Id": "00004881 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1727,
"name": "هاربيك منظف حمام 500 مل",
"price": 25.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك منظف حمام 500 مل",
"Product_EN": null,
"Product_Id": "00004882 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1728,
"name": "بليدج ملمع اثاث 300 مل زهور",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بليدج ملمع اثاث 300 مل زهور",
"Product_EN": null,
"Product_Id": "00004883 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1729,
"name": "شويبس جولد اناناس كان 330 مل - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس جولد اناناس كان 330 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004884 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1730,
"name": "كوكاكولا بلاستيك 800 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا بلاستيك 800 مل",
"Product_EN": null,
"Product_Id": "00004885 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1731,
"name": "كوكاكولا زيرو بلاستيك 800 مل",
"price": 6.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا زيرو بلاستيك 800 مل",
"Product_EN": "Coca-Cola Plastic 800 ml ",
"Product_Id": "00004886 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1732,
"name": "فانتا برتقال بلاستيك 800 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا برتقال بلاستيك 800 مل",
"Product_EN": "Fanta Orange Plastic 800 ml",
"Product_Id": "00004887 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1733,
"name": "فانتا تفاح اخضر بلاستيك 800 مل",
"price": 6.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا تفاح اخضر بلاستيك 800 مل",
"Product_EN": "Fanta Green Apple Plastic 800 ml",
"Product_Id": "00004888 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1734,
"name": "كوكاكولا بلاستيك 2 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا بلاستيك 2 لتر",
"Product_EN": "Coca-Cola Plastic 2 L",
"Product_Id": "00004890 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1735,
"name": "فانتا تفاح اخضر بلاستيك 2 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا تفاح اخضر بلاستيك 2 لتر",
"Product_EN": "Fanta Green Apple Plastic 2 L ",
"Product_Id": "00004892 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1736,
"name": "فانتا برتقال بلاستيك 2 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا برتقال بلاستيك 2 لتر",
"Product_EN": "Fanta Orange Plastic 2 L ",
"Product_Id": "00004893 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1737,
"name": "دسانى مياه طبيعيه جالون 19 لتر",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دسانى مياه طبيعيه جالون 19 لتر",
"Product_EN": "Dasani Natural Water Gallon 19 L",
"Product_Id": "00004894 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1738,
"name": "سبرايت بلاستيك 800 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت بلاستيك 800 مل",
"Product_EN": "Sprite Plastic 800 ml ",
"Product_Id": "00004896 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1739,
"name": "اندومى شعريه سريعه التحضير بالخضار كوب 60 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير بالخضار كوب 60 جم",
"Product_EN": null,
"Product_Id": "00004897 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1740,
"name": "اندومى شعريه سريعه التحضير بالدجاج كوب 60 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير بالدجاج كوب 60 جم",
"Product_EN": null,
"Product_Id": "00004898 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1741,
"name": "كريستال زيت عباد 1.75 لتر - موقوف",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت عباد 1.75 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004902 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1742,
"name": "كريستال زيت ذرة 1.75 لتر - موقوف",
"price": 48.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذرة 1.75 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00004903 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1743,
"name": "الضحى قرفة ناعمة ملاحة 65جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى قرفة ناعمة ملاحة 65جم",
"Product_EN": "Al Doha Milled Cinnamon 65 g",
"Product_Id": "00004910 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1744,
"name": "فريكو جبنه جودة بالكمون وزن",
"price": 162,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فريكو جبنه جودة بالكمون وزن",
"Product_EN": "Frico Gouda Cheese With Cumin - Scalable ",
"Product_Id": "00004911 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1745,
"name": "الرشيدى طحينة 1ك + خل عرض - موقوف",
"price": 34.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى طحينة 1ك + خل عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004912 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1746,
"name": "بيتى عصير تفاح 1 لتر - موقوف ",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير تفاح 1 لتر - موقوف ",
"Product_EN": "Beyti Apple Juice 1 L",
"Product_Id": "00004914 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1747,
"name": "بيتى عصير جوافة 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير جوافة 1 لتر",
"Product_EN": "Beyti Guava Juice 1 L",
"Product_Id": "00004915 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1748,
"name": "بيتى عصير كوكتيل 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير كوكتيل 1 لتر",
"Product_EN": "Beyti Cocktail Juice 1 L",
"Product_Id": "00004916 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1749,
"name": "بيتى عصير تفاح 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير تفاح 235 مل",
"Product_EN": "Beyti Apple Juice 235 ml",
"Product_Id": "00004917 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1750,
"name": "بيتى عصير جوافة 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير جوافة 235 مل",
"Product_EN": "Beyti Guava Juice 235 ml",
"Product_Id": "00004918 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1751,
"name": "بيتى عصير مانجو 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو 235 مل",
"Product_EN": "Beyti Mango Juice 235 ml",
"Product_Id": "00004919 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1752,
"name": "فيرن زبده خليط 1 كجم",
"price": 400,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فيرن زبده خليط 1 كجم",
"Product_EN": "Fern Mixed Butter 1 kg",
"Product_Id": "00004920 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1753,
"name": "بريديكس فراخ 1100جم - موقوف",
"price": 49.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريديكس فراخ 1100جم - موقوف",
"Product_EN": null,
"Product_Id": "00004921 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1754,
"name": "العابد بط مجمد وزن",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العابد بط مجمد وزن",
"Product_EN": null,
"Product_Id": "00004923 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1755,
"name": "صولا اكلير بونبون توفى قطعة - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا اكلير بونبون توفى قطعة - موقوف",
"Product_EN": null,
"Product_Id": "00004924 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1756,
"name": "صولا اكلير - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا اكلير - موقوف",
"Product_EN": null,
"Product_Id": "00004925 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1757,
"name": "جهينه حليب خالى الدسم 1.5 لتر",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه حليب خالى الدسم 1.5 لتر",
"Product_EN": "Juhayna Skimmed Milk 1.5 L",
"Product_Id": "00004926 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1758,
"name": "ايزيس عصير مانجو اورجانيك 1لتر",
"price": 27.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس عصير مانجو اورجانيك 1لتر",
"Product_EN": "ISIS Organic Mango Juice 1 L",
"Product_Id": "00004928 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1759,
"name": "ايزيس عصير برتقال 1 ك",
"price": 21.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:34",
"updated_at": "2021-11-01 19:45:34",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس عصير برتقال 1 ك",
"Product_EN": "ISIS Orange juice 1 kg",
"Product_Id": "00004929 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1760,
"name": "ايزيس عصير جوافه 1 لتر",
"price": 16.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس عصير جوافه 1 لتر",
"Product_EN": "ISIS Guava Juice 1 L",
"Product_Id": "00004930 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1761,
"name": "الربيع حلاوه شيكولاتة 500 جم- موقوف",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع حلاوه شيكولاتة 500 جم- موقوف",
"Product_EN": null,
"Product_Id": "00004932 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1762,
"name": "ايزيس تمر هندى 1 لتر",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس تمر هندى 1 لتر",
"Product_EN": "ISIS Tamarind 1 L",
"Product_Id": "00004933 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1763,
"name": "الربيع حلاوه ساده 875 جم - موقوف",
"price": 34.49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع حلاوه ساده 875 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004934 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1764,
"name": "توينكيز اكسترا شيكولاتة - موقوف",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينكيز اكسترا شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00004935 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1765,
"name": "توينكيز كيك اكسترا فراوله علبة - موقوف",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينكيز كيك اكسترا فراوله علبة - موقوف",
"Product_EN": null,
"Product_Id": "00004937 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1766,
"name": "طعمة جبنة فيتا زيتون 250 جم - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنة فيتا زيتون 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004938 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1767,
"name": "بديل الزيت بانتين 375 مل - موقوف",
"price": 40.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بديل الزيت بانتين 375 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004939 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1768,
"name": "كرانشى بطاطس شطه وليمون 42 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى بطاطس شطه وليمون 42 جم",
"Product_EN": null,
"Product_Id": "00004940 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1769,
"name": "دوريتوس عائلى",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس عائلى",
"Product_EN": null,
"Product_Id": "00004941 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1770,
"name": "تشيكلس لبان فواكه 2ق",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشيكلس لبان فواكه 2ق",
"Product_EN": "Chiclets Gum Fruit 2 Pieces",
"Product_Id": "00004942 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1771,
"name": "لافاش جبنة مثلثات 56 ق",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة مثلثات 56 ق",
"Product_EN": "LaVache Triangles Cheese 56 Pieces",
"Product_Id": "00004943 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1772,
"name": "الربيع حلاوه ساده 300 جم - موقوف",
"price": 11.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع حلاوه ساده 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004944 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1773,
"name": "الربيع حلاوه ساده 500 جم - موقوف",
"price": 20.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع حلاوه ساده 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004945 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1774,
"name": "شيتوس كرانشى بالفلفل 52 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس كرانشى بالفلفل 52 جم",
"Product_EN": null,
"Product_Id": "00004947 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1775,
"name": "شيتوس كرانشى بالشطة مولعة 52 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس كرانشى بالشطة مولعة 52 جم",
"Product_EN": null,
"Product_Id": "00004948 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1776,
"name": "مولتو كرواسون بالجبنة الاسطنبولي 1 قطعه ",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو كرواسون بالجبنة الاسطنبولي 1 قطعه ",
"Product_EN": "Molto Croissant with Istanbul Cheese 1 Pieces ",
"Product_Id": "00004949 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1777,
"name": "افانتى جبنه شيدر سبريد زيتون 240 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى جبنه شيدر سبريد زيتون 240 جم",
"Product_EN": null,
"Product_Id": "00004950 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1778,
"name": "نستله ميجا توت 95 مل - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله ميجا توت 95 مل - موقوف",
"Product_EN": null,
"Product_Id": "00004951 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1779,
"name": "الطحان جيلى فراولة 70 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان جيلى فراولة 70 جم",
"Product_EN": null,
"Product_Id": "00004957 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1780,
"name": "ريتش بيك توست رده 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك توست رده 250 جم",
"Product_EN": null,
"Product_Id": "00004975 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1781,
"name": "ريتش بيك توست ساده 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك توست ساده 250 جم",
"Product_EN": null,
"Product_Id": "00004976 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1782,
"name": "فطر صائم - موقوف",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فطر صائم - موقوف",
"Product_EN": null,
"Product_Id": "00004978 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1783,
"name": "دانون فروتس 105 جم 4 ق عرض - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون فروتس 105 جم 4 ق عرض - موقوف",
"Product_EN": null,
"Product_Id": "00004979 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1784,
"name": "زاهر كنافة مشمش - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة مشمش - موقوف",
"Product_EN": null,
"Product_Id": "00004980 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1785,
"name": "افانتى شيدر زيتون شرائح 150 جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى شيدر زيتون شرائح 150 جم",
"Product_EN": null,
"Product_Id": "00004981 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1786,
"name": "دومتى جبنة موزاريلا 200 جم - موقوف",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنة موزاريلا 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00004982 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1787,
"name": "المراعى حليب كامل الدسم 750 مل",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب كامل الدسم 750 مل",
"Product_EN": "Al Marai Full Cream Milk 750 ml ",
"Product_Id": "00004983 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1788,
"name": "المراعى حليب خالى الدسم 750 مل",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب خالى الدسم 750 مل",
"Product_EN": "Al Marai Skimmed Milk 750 ml",
"Product_Id": "00004984 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1789,
"name": "بيتى عصير كوكتيل 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير كوكتيل 235 مل",
"Product_EN": "Beyti Cocktail Juice 235 ml",
"Product_Id": "00004985 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1790,
"name": "بيتي عصير برتقال 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتي عصير برتقال 235 مل",
"Product_EN": "Beyti Orange Juice 235 ml",
"Product_Id": "00004986 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1791,
"name": "بيتي عصير مانجو 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتي عصير مانجو 1 لتر",
"Product_EN": "Beyti Mango Juice 1 L",
"Product_Id": "00004987 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1792,
"name": "بيتي عصير برتقال 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتي عصير برتقال 1 لتر",
"Product_EN": "Beyti Orange Juice 1 L",
"Product_Id": "00004988 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1793,
"name": "زيت زيتون مصرى صفيحة * 16 كيلو - موقوف",
"price": 1408,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زيت زيتون مصرى صفيحة * 16 كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00004990 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1794,
"name": "إندومي شعريه دجاج + روبيان 5 ق - موقوف",
"price": 10.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "إندومي شعريه دجاج + روبيان 5 ق - موقوف",
"Product_EN": null,
"Product_Id": "00004991 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1795,
"name": "تغليف - بيض - سايب - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 12,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 6,
"Subcategory": "ديليفرى",
"Product_AR": "تغليف - بيض - سايب - موقوف",
"Product_EN": null,
"Product_Id": "00004992 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1796,
"name": "بسمه وان ليمون شرائح وزن - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان ليمون شرائح وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004993 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1797,
"name": "بسمه وان ليمون محشى وزن - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان ليمون محشى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004994 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1798,
"name": "زيتون اخضر وسط وزن - موقوف",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زيتون اخضر وسط وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004995 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1799,
"name": "بسمه وان زيتون اخضر بالكرفس وزن - موقوف",
"price": 17.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان زيتون اخضر بالكرفس وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004996 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1800,
"name": "المغربى بصل ساده وزن - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المغربى بصل ساده وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004997 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1801,
"name": "بسمه وان بصل بالدقه وزن - موقوف",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان بصل بالدقه وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004998 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1802,
"name": "بسمه وان فلفل بلدى وزن - موقوف",
"price": 6.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان فلفل بلدى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00004999 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1803,
"name": "بسمه وان قرنبيط بالدقه وزن - موقوف",
"price": 6.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان قرنبيط بالدقه وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005000 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1804,
"name": "بسمه وان هريسه وزن - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان هريسه وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005001 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1805,
"name": "بسمه وان خيار عادى وزن - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان خيار عادى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005002 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1806,
"name": "بسمه وان خيار قشه مصرى وزن - موقوف",
"price": 29.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان خيار قشه مصرى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005003 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1807,
"name": "بسمه وان خيار قشه وزن - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان خيار قشه وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005004 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1808,
"name": "بسمه وان زيتون اسبانى وزن - موقوف",
"price": 23.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان زيتون اسبانى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005005 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1809,
"name": "زيتون كلامتا وزن - موقوف",
"price": 27.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زيتون كلامتا وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005006 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1810,
"name": "ارو فويل الومنيوم 20 متر * 40 سم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو فويل الومنيوم 20 متر * 40 سم",
"Product_EN": null,
"Product_Id": "00005007 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1811,
"name": "ارو فويل الومنيوم 10 متر * 40 سم",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو فويل الومنيوم 10 متر * 40 سم",
"Product_EN": null,
"Product_Id": "00005008 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1812,
"name": "ارو فويل الومنيوم 15 متر * 20سم",
"price": 15.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو فويل الومنيوم 15 متر * 20سم",
"Product_EN": null,
"Product_Id": "00005009 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1813,
"name": "ارو نايلون 20 متر * 30 سم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو نايلون 20 متر * 30 سم",
"Product_EN": null,
"Product_Id": "00005010 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1814,
"name": "ارو ورق زبده 10 متر *25 سم",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو ورق زبده 10 متر *25 سم",
"Product_EN": null,
"Product_Id": "00005012 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1815,
"name": "ارو ورق زبده 10 متر * 40 سم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو ورق زبده 10 متر * 40 سم",
"Product_EN": null,
"Product_Id": "00005013 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1816,
"name": "ارو اكياس قمامه 70*90",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو اكياس قمامه 70*90",
"Product_EN": null,
"Product_Id": "00005014 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1817,
"name": "ارو اكياس قمامه م 50*55 - 15 ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو اكياس قمامه م 50*55 - 15 ق",
"Product_EN": null,
"Product_Id": "00005015 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1818,
"name": "ارو اكياس ثلاجه 20 سم *35 سم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو اكياس ثلاجه 20 سم *35 سم",
"Product_EN": null,
"Product_Id": "00005016 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1819,
"name": "ارو مفرش سفره 90 سم*110 سم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو مفرش سفره 90 سم*110 سم",
"Product_EN": null,
"Product_Id": "00005017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1820,
"name": "تينجز شوكو بوبس 250 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تينجز شوكو بوبس 250 جم",
"Product_EN": null,
"Product_Id": "00005018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1821,
"name": "تينجز هنى بوبس 250 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تينجز هنى بوبس 250 جم",
"Product_EN": null,
"Product_Id": "00005019 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1822,
"name": "تينجز كورن فليكس ساده 250 جم",
"price": 13.4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تينجز كورن فليكس ساده 250 جم",
"Product_EN": null,
"Product_Id": "00005020 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1823,
"name": "تينجز كورن فليكس 25 جم 5+1 عرض - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تينجز كورن فليكس 25 جم 5+1 عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005021 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1824,
"name": "امريكانا فاصوليا حمراء 400 جم",
"price": 10.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فاصوليا حمراء 400 جم",
"Product_EN": null,
"Product_Id": "00005022 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1825,
"name": "بسكو مصر كعك ساده 1 كجم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر كعك ساده 1 كجم",
"Product_EN": null,
"Product_Id": "00005023 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1826,
"name": "بسكو مصر كعك عجميه 1 كجم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر كعك عجميه 1 كجم",
"Product_EN": null,
"Product_Id": "00005024 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1827,
"name": "بسكو مصر كعك بالملبن 1 كجم",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر كعك بالملبن 1 كجم",
"Product_EN": null,
"Product_Id": "00005025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1828,
"name": "بسكو مصر غريبه ساده 1 كجم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر غريبه ساده 1 كجم",
"Product_EN": null,
"Product_Id": "00005027 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1829,
"name": "بسكو مصر بسكويت للعيد برتقال 1 كجم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت للعيد برتقال 1 كجم",
"Product_EN": null,
"Product_Id": "00005028 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1830,
"name": "بسكو مصر بسكويت فانليا 1 كجم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت فانليا 1 كجم",
"Product_EN": null,
"Product_Id": "00005029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1831,
"name": "بسكو مصر بسكويت شوفان 1 كجم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت شوفان 1 كجم",
"Product_EN": null,
"Product_Id": "00005030 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1832,
"name": "بسكو مصر بيتى فور فارمسيل مشكل 1 كجم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بيتى فور فارمسيل مشكل 1 كجم",
"Product_EN": null,
"Product_Id": "00005031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1833,
"name": "باندا جبنة اسطنبولى250جم",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة اسطنبولى250جم",
"Product_EN": null,
"Product_Id": "00005032 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1834,
"name": "البدر ارز بسمتى 1 كجم - موقوف",
"price": 11.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البدر ارز بسمتى 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005033 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1835,
"name": "نعمة ارز ابيض 1 كجم - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نعمة ارز ابيض 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005034 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1836,
"name": "نعمه عدس اصفر 500 جم - موقوف",
"price": 12.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نعمه عدس اصفر 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005035 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1837,
"name": "العبد ارز 1 كجم - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد ارز 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005036 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1838,
"name": "زينه مكرونه فرن 400 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زينه مكرونه فرن 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005037 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1839,
"name": "عسل بالشوفان - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عسل بالشوفان - موقوف",
"Product_EN": null,
"Product_Id": "00005038 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1840,
"name": "فودى عسل اسود - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فودى عسل اسود - موقوف",
"Product_EN": null,
"Product_Id": "00005039 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1841,
"name": "طيبة فول - موقوف",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبة فول - موقوف",
"Product_EN": null,
"Product_Id": "00005040 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1842,
"name": "صن اسباركل تونه - موقوف",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن اسباركل تونه - موقوف",
"Product_EN": null,
"Product_Id": "00005041 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1843,
"name": "السعاده صلصه - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السعاده صلصه - موقوف",
"Product_EN": null,
"Product_Id": "00005042 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1844,
"name": "سيناوى زيتون دولسى 1 كجم - موقوف",
"price": 29.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيناوى زيتون دولسى 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005043 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1845,
"name": "سيناوى زيتون اسود 1 كجم - موقوف",
"price": 29.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيناوى زيتون اسود 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005044 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1846,
"name": "سيناوى زيتون كلاماتا1 كجم - موقوف",
"price": 31.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيناوى زيتون كلاماتا1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005045 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1847,
"name": "ديتول صابون جددى نشاطك 125 جم - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون جددى نشاطك 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005047 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1848,
"name": "ديتول صابون عنايه بالبشره 175 جم",
"price": 10.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون عنايه بالبشره 175 جم",
"Product_EN": null,
"Product_Id": "00005048 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1849,
"name": "فينيش اقراص 13 ق",
"price": 76,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فينيش اقراص 13 ق",
"Product_EN": null,
"Product_Id": "00005049 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1850,
"name": "فنش سائل مساعد شطف زيت 400 مل",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فنش سائل مساعد شطف زيت 400 مل",
"Product_EN": null,
"Product_Id": "00005050 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1851,
"name": "كبدة ضانى وزن",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كبدة ضانى وزن",
"Product_EN": null,
"Product_Id": "00010828 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1852,
"name": "كبده بقرى مشكل وزن",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كبده بقرى مشكل وزن",
"Product_EN": null,
"Product_Id": "00010829 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1853,
"name": "ميلكا شوكولاتة بسكويت 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بسكويت 100 جم",
"Product_EN": "Milka Chocolate Biscuits 100 gm",
"Product_Id": "00010830 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1854,
"name": "ميلكا شوكولاتة بيضاء 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بيضاء 100 جم",
"Product_EN": "Milka White Chocolate 100 gm",
"Product_Id": "00010831 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1855,
"name": "ميلكا شيكولاته بالحليب 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شيكولاته بالحليب 100 جم",
"Product_EN": "Milka Lapte Alpin Chocolate 100 gm",
"Product_Id": "00010832 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1856,
"name": "ميلكا شوكولاتة توت 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة توت 100 جم",
"Product_EN": "Milka Raspberry Chocolate 100 gm",
"Product_Id": "00010833 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1857,
"name": "ميلكا شيكولاته دارك لوز 85 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شيكولاته دارك لوز 85 جم",
"Product_EN": "Milka Chocolate Dark Almond 85 gm",
"Product_Id": "00010834 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1858,
"name": "ميلكا شوكولاتة بندق 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بندق 100 جم",
"Product_EN": "Milka Hazelnut Chocolate 100 gm",
"Product_Id": "00010835 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1859,
"name": "ميلكا شوكولاتة كريز 100 جم ",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة كريز 100 جم ",
"Product_EN": "Milka Cherry Chocolate 100 gm",
"Product_Id": "00010836 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1860,
"name": "ميلكا شوكولاتة بسكويت توك 87 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بسكويت توك 87 جم",
"Product_EN": "Milka Chocolate Biscuit Tuc 87gm",
"Product_Id": "00010837 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1861,
"name": "ميلكا شوكولاتة لوز 100 جم _ موقوف",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة لوز 100 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00010838 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1862,
"name": "تفاح سكرى رويال وزن - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تفاح سكرى رويال وزن - موقوف",
"Product_EN": null,
"Product_Id": "00010839 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1863,
"name": "اناناس شجر 1 ق - موقوف",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اناناس شجر 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00010841 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1864,
"name": "مشروم 200 جم 1 ق",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مشروم 200 جم 1 ق",
"Product_EN": null,
"Product_Id": "00010842 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1865,
"name": "خضره شبت 1 ق",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "خضره شبت 1 ق",
"Product_EN": null,
"Product_Id": "00010843 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1866,
"name": "خضره بقدونس محلى 1 ق",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "خضره بقدونس محلى 1 ق",
"Product_EN": null,
"Product_Id": "00010844 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1867,
"name": "خضره كسبرة محلى 1 ق",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "خضره كسبرة محلى 1 ق",
"Product_EN": null,
"Product_Id": "00010845 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1868,
"name": "نعناع اخضر محلى 1 ق",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نعناع اخضر محلى 1 ق",
"Product_EN": null,
"Product_Id": "00010846 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1869,
"name": "جزر وزن",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جزر وزن",
"Product_EN": null,
"Product_Id": "00010847 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1870,
"name": "كوسه وزن",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوسه وزن",
"Product_EN": null,
"Product_Id": "00010848 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1871,
"name": "كرنب احمر 1 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كرنب احمر 1 ق",
"Product_EN": null,
"Product_Id": "00010849 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1872,
"name": "كرنب ابيض 1 ق",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كرنب ابيض 1 ق",
"Product_EN": null,
"Product_Id": "00010850 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1873,
"name": "لاكتيل رايب مانجو 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل رايب مانجو 220 مل",
"Product_EN": "Lactel Rayeb Mango 220 ml ",
"Product_Id": "00010851 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1874,
"name": "لاكتيل رايب ليمون نعناع 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل رايب ليمون نعناع 220 مل",
"Product_EN": "Lactel Rayeb Lemon Mint 220 ml",
"Product_Id": "00010853 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1875,
"name": "لاكتيل زبادى طبيعى يونانى بالفراولة 180 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى طبيعى يونانى بالفراولة 180 جم",
"Product_EN": "Lactel Natural Greek Yogurt Strawberry 180 gm",
"Product_Id": "00010856 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1876,
"name": "لاكتيل زبادى طبيعى يونانى تشيز كيك 180 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى طبيعى يونانى تشيز كيك 180 جم",
"Product_EN": "Lactel Greek Natural Yogurt Cheese Cake 180 gm",
"Product_Id": "00010857 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1877,
"name": "صولو صوص شوكلت 2.400 جم",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولو صوص شوكلت 2.400 جم",
"Product_EN": null,
"Product_Id": "00010858 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1878,
"name": "صوص اناناس 1 لتر",
"price": 74.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صوص اناناس 1 لتر",
"Product_EN": null,
"Product_Id": "00010860 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1879,
"name": "صوص تفاح اخضر 1 لتر",
"price": 74.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صوص تفاح اخضر 1 لتر",
"Product_EN": null,
"Product_Id": "00010861 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1880,
"name": "صوص كيوى 1 لتر",
"price": 74.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صوص كيوى 1 لتر",
"Product_EN": null,
"Product_Id": "00010862 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1881,
"name": "شوكلت بودر 1 كيلو",
"price": 102.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شوكلت بودر 1 كيلو",
"Product_EN": null,
"Product_Id": "00010863 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1882,
"name": "امتنان روز مارى 12 جم برطمان",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان روز مارى 12 جم برطمان",
"Product_EN": null,
"Product_Id": "00010866 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1883,
"name": "امتنان شبت 25 جم برطمان",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان شبت 25 جم برطمان",
"Product_EN": null,
"Product_Id": "00010867 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1884,
"name": "امتنان زعتر 35 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان زعتر 35 جم",
"Product_EN": null,
"Product_Id": "00010868 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1885,
"name": "امتنان فلفل اسود بالليمون 85 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان فلفل اسود بالليمون 85 جم",
"Product_EN": null,
"Product_Id": "00010869 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1886,
"name": "امتنان شطه حاره 75 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان شطه حاره 75 جم",
"Product_EN": null,
"Product_Id": "00010870 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1887,
"name": "امتنان شرائح بصل 75 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان شرائح بصل 75 جم",
"Product_EN": null,
"Product_Id": "00010871 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1888,
"name": "امتنان ثوم 100 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان ثوم 100 جم",
"Product_EN": null,
"Product_Id": "00010872 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1889,
"name": "زاهر ديزرت - علبة جاتوه سوارية 1 ك",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزرت - علبة جاتوه سوارية 1 ك",
"Product_EN": null,
"Product_Id": "00010873 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1890,
"name": "امتنان سكر بنى خام 750 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان سكر بنى خام 750 جم",
"Product_EN": null,
"Product_Id": "00010874 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1891,
"name": "امتنان ملح اعشاب 100 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان ملح اعشاب 100 جم",
"Product_EN": null,
"Product_Id": "00010875 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1892,
"name": "امتنان شمر 20 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان شمر 20 جم",
"Product_EN": null,
"Product_Id": "00010876 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1893,
"name": "امتنان بذور حبه البركه 100 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان بذور حبه البركه 100 جم",
"Product_EN": null,
"Product_Id": "00010877 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1894,
"name": "امتنان زيت كتان 100 جم",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان زيت كتان 100 جم",
"Product_EN": null,
"Product_Id": "00010878 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1895,
"name": "امتنان زيت السمسم 125 مل",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان زيت السمسم 125 مل",
"Product_EN": null,
"Product_Id": "00010879 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1896,
"name": "متنان زيت اللوز الحلو 50 مل",
"price": 87,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "متنان زيت اللوز الحلو 50 مل",
"Product_EN": null,
"Product_Id": "00010880 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1897,
"name": "امتنان زيت اللوز الحلو 25 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان زيت اللوز الحلو 25 مل",
"Product_EN": null,
"Product_Id": "00010881 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1898,
"name": "امتنان زيت حبه البركه 30 مل",
"price": 28.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان زيت حبه البركه 30 مل",
"Product_EN": null,
"Product_Id": "00010882 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1899,
"name": "امتنان زيت الجرجرير للشعر 125 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان زيت الجرجرير للشعر 125 مل",
"Product_EN": null,
"Product_Id": "00010883 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1900,
"name": "امتنان بروتين بار بالكاكاو 70 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان بروتين بار بالكاكاو 70 جم",
"Product_EN": null,
"Product_Id": "00010884 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1901,
"name": "امتنان بروتين بار بجوز الهند 70 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان بروتين بار بجوز الهند 70 جم",
"Product_EN": null,
"Product_Id": "00010885 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1902,
"name": "امتنان بروتين بار بالفول السودانى 70 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان بروتين بار بالفول السودانى 70 جم",
"Product_EN": null,
"Product_Id": "00010886 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1903,
"name": "امتنان خل تفاح عضوى اورجانيك 250 مل",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان خل تفاح عضوى اورجانيك 250 مل",
"Product_EN": null,
"Product_Id": "00010887 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1904,
"name": "امتنان دبس التمر 450 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان دبس التمر 450 مل",
"Product_EN": null,
"Product_Id": "00010888 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1905,
"name": "امتنان ارز بنى كارجو 750 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان ارز بنى كارجو 750 جم",
"Product_EN": null,
"Product_Id": "00010889 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1906,
"name": "امتنان رقائق شوفان 450 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان رقائق شوفان 450 جم",
"Product_EN": null,
"Product_Id": "00010890 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1907,
"name": "امتنان زيت سمسم 250 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان زيت سمسم 250 مل",
"Product_EN": null,
"Product_Id": "00010891 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1908,
"name": "امتنان عسل رويال اكسترا 170 جم",
"price": 93,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان عسل رويال اكسترا 170 جم",
"Product_EN": null,
"Product_Id": "00010892 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1909,
"name": "امتنان عسل نباتات طبية 250 جم",
"price": 30.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان عسل نباتات طبية 250 جم",
"Product_EN": null,
"Product_Id": "00010893 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1910,
"name": "امتنان نواره برسيم 250 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان نواره برسيم 250 جم",
"Product_EN": null,
"Product_Id": "00010894 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1911,
"name": "امتنان قرفه 85 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان قرفه 85 جم",
"Product_EN": null,
"Product_Id": "00010895 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1912,
"name": "جينرال 730 ياسمين",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال 730 ياسمين",
"Product_EN": null,
"Product_Id": "00010896 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1913,
"name": "جينرال 730 زهور الربيع",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال 730 زهور الربيع",
"Product_EN": null,
"Product_Id": "00010897 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1914,
"name": "جينرال 730 فواكه",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال 730 فواكه",
"Product_EN": null,
"Product_Id": "00010898 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1915,
"name": "جينرال 3 لتر خصم 5 جنيه",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال 3 لتر خصم 5 جنيه",
"Product_EN": null,
"Product_Id": "00010900 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1916,
"name": "جينرال مطهر عرض 2*1",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال مطهر عرض 2*1",
"Product_EN": null,
"Product_Id": "00010901 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1917,
"name": "جينرال منظف حمام نسيم البحر",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف حمام نسيم البحر",
"Product_EN": null,
"Product_Id": "00010902 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1918,
"name": "برسيل محسوق اتوماتيك برائحه الورد 6 كجم +جل 1 لتر ",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل محسوق اتوماتيك برائحه الورد 6 كجم +جل 1 لتر ",
"Product_EN": null,
"Product_Id": "00010903 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1919,
"name": "العابد سمان 2 ق",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العابد سمان 2 ق",
"Product_EN": null,
"Product_Id": "00010904 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1920,
"name": "صدور فراخ سليمه وزن - موقوف",
"price": 63,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صدور فراخ سليمه وزن - موقوف",
"Product_EN": null,
"Product_Id": "00010905 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1921,
"name": "صدور فراخ بالعظم وزن - موقوف",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صدور فراخ بالعظم وزن - موقوف",
"Product_EN": null,
"Product_Id": "00010906 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1922,
"name": "فراخ بيضاء وزن",
"price": 48.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فراخ بيضاء وزن",
"Product_EN": null,
"Product_Id": "00010907 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1923,
"name": "فرخه كامله بلدى رزي وزن",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فرخه كامله بلدى رزي وزن",
"Product_EN": null,
"Product_Id": "00010908 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1924,
"name": "اوراك فراخ فريش وزن - موقوف",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اوراك فراخ فريش وزن - موقوف",
"Product_EN": "Thigh Chicken Fresh - Scalable ",
"Product_Id": "00010909 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1925,
"name": "اجنحه فراخ وزن",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اجنحه فراخ وزن",
"Product_EN": null,
"Product_Id": "00010910 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1926,
"name": "سيلينا بط مولر وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سيلينا بط مولر وزن",
"Product_EN": null,
"Product_Id": "00010911 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1927,
"name": "كبده فراخ صافي وزن",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كبده فراخ صافي وزن",
"Product_EN": null,
"Product_Id": "00010912 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1928,
"name": "كبده و قوانص فراخ وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كبده و قوانص فراخ وزن",
"Product_EN": null,
"Product_Id": "00010913 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1929,
"name": "شيش فراخ وزن",
"price": 86,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شيش فراخ وزن",
"Product_EN": null,
"Product_Id": "00010914 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1930,
"name": "لحم سمانه بقرى وزن - موقوف",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لحم سمانه بقرى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00010915 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1931,
"name": "كبده بقرى صافى وزن",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كبده بقرى صافى وزن",
"Product_EN": null,
"Product_Id": "00010916 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1932,
"name": "مواسير كندوز\/ بقرى عظم وزن",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مواسير كندوز\/ بقرى عظم وزن",
"Product_EN": null,
"Product_Id": "00010917 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1933,
"name": "زند ضانى وزن",
"price": 155,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زند ضانى وزن",
"Product_EN": null,
"Product_Id": "00010918 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1934,
"name": "فخدة ضانى وزن",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فخدة ضانى وزن",
"Product_EN": null,
"Product_Id": "00010919 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1935,
"name": "ريش ضانى وزن",
"price": 165,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريش ضانى وزن",
"Product_EN": null,
"Product_Id": "00010920 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1936,
"name": "رقبة ضانى وزن",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رقبة ضانى وزن",
"Product_EN": null,
"Product_Id": "00010921 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1937,
"name": "فريستا بطاطس مجمدة 2.5 كجم",
"price": 29.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فريستا بطاطس مجمدة 2.5 كجم",
"Product_EN": null,
"Product_Id": "00010922 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1938,
"name": "ميلكا شوكولاتة بالحليب 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالحليب 100 جم",
"Product_EN": "Milka Milk Chocolate 100 gm",
"Product_Id": "00010923 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1939,
"name": "دبوس فراخ وزن",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دبوس فراخ وزن",
"Product_EN": null,
"Product_Id": "00010924 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1940,
"name": "اطياب لانشون سادة \/ لانشون \/ زيتون\/ دجاج وزن",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب لانشون سادة \/ لانشون \/ زيتون\/ دجاج وزن",
"Product_EN": " ",
"Product_Id": "00010925 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1941,
"name": "ثرى شيفس بانيه عادى 1 كجم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس بانيه عادى 1 كجم",
"Product_EN": "Three Chefs Chicken Pane 1 Kg ",
"Product_Id": "00010926 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1942,
"name": "ثرى شيفس تشيكن بانيه 800 جم ",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس تشيكن بانيه 800 جم ",
"Product_EN": "Three Chefs Chicken Pane 800 gm",
"Product_Id": "00010927 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1943,
"name": "ثرى شيفس اجنحه دجاج بارد 700 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس اجنحه دجاج بارد 700 جم",
"Product_EN": "Three Chefs Chicken Wings Cold 700 gm",
"Product_Id": "00010928 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1944,
"name": "ثري شيفس اجنحه دجاج بارد 700 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثري شيفس اجنحه دجاج بارد 700 جم",
"Product_EN": "Three Chefs Chicken Wings Cold 700 gm",
"Product_Id": "00010929 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1945,
"name": "ثرى شيفس دبوس دجاج مقلى 700 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس دبوس دجاج مقلى 700 جم",
"Product_EN": "Three Chefs Chicken Drumsticks 700 gm",
"Product_Id": "00010930 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1946,
"name": "ثرى شيفس دبوس دجاج مقلى حار 700 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس دبوس دجاج مقلى حار 700 جم",
"Product_EN": "Three Chefs Chicken Drumsticks Spicy 700 gm",
"Product_Id": "00010931 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1947,
"name": "ثرى شيفس وجبه الدجاج الكامله 12 ق",
"price": 69,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس وجبه الدجاج الكامله 12 ق",
"Product_EN": "Three Chefs Fried Chicken 12 Pieces ",
"Product_Id": "00010932 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1948,
"name": "ثرى شيفس وجبه الدجاج الكامله حار 12 ق",
"price": 69,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس وجبه الدجاج الكامله حار 12 ق",
"Product_EN": "Three Chefs Fried Chicken Spicy 12 Pieces ",
"Product_Id": "00010933 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1949,
"name": "ثرى شيفس سجق شرقى 350 جم",
"price": 33.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس سجق شرقى 350 جم",
"Product_EN": "Three Chefs Oriental Sausage 350 gm",
"Product_Id": "00010934 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1950,
"name": "عطاره . الدرة تمر هندى طبيعى 400 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الدرة تمر هندى طبيعى 400 جم",
"Product_EN": "Attara - Durra Natural Tamarind 400 gm",
"Product_Id": "00010936 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1951,
"name": "المطبخ دقيق جميع الاستخدامات 1 كجم ",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ دقيق جميع الاستخدامات 1 كجم ",
"Product_EN": "ElMatbakh All Purpose Flour 1Kg",
"Product_Id": "00010937 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1952,
"name": "عطاره . سماق وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . سماق وزن",
"Product_EN": "Attara Sumac - Scalable",
"Product_Id": "00010938 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1953,
"name": "سيلينا سمان جامبو 4 ق",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سيلينا سمان جامبو 4 ق",
"Product_EN": null,
"Product_Id": "00010940 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1954,
"name": "سيلينا سمان جامبو 2 ق - مجلة",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سيلينا سمان جامبو 2 ق - مجلة",
"Product_EN": null,
"Product_Id": "00010941 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1955,
"name": "سيلينا سمان سوبر جولدن 2 ق",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سيلينا سمان سوبر جولدن 2 ق",
"Product_EN": null,
"Product_Id": "00010942 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1956,
"name": "سيلينا بيض سمان 12 بيضه",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سيلينا بيض سمان 12 بيضه",
"Product_EN": null,
"Product_Id": "00010944 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1957,
"name": "عبور لاند حليب خالى الدسم 1 لتر",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبور لاند حليب خالى الدسم 1 لتر",
"Product_EN": "Obour Land Skimmed Milk 1 L",
"Product_Id": "00010945 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1958,
"name": "تودو مينى مافن شيكولاتة 6 ق",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تودو مينى مافن شيكولاتة 6 ق",
"Product_EN": null,
"Product_Id": "00010946 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1959,
"name": "مانجو كيت وزن",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مانجو كيت وزن",
"Product_EN": null,
"Product_Id": "00010947 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1960,
"name": "كوين رول قمامة 70 * 90 1 كجم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول قمامة 70 * 90 1 كجم",
"Product_EN": null,
"Product_Id": "00010949 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1961,
"name": "عطاره . بذور الشيا وزن",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذور الشيا وزن",
"Product_EN": "Attara Chia Seeds - Scalable",
"Product_Id": "00010950 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1962,
"name": "تيميز كورن فليكس 30 جم 5+1 عرض",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز كورن فليكس 30 جم 5+1 عرض",
"Product_EN": "Temmy's Corn Flakes 30 gm 5 +1 ",
"Product_Id": "00010951 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1963,
"name": "بلح زغلول وزن",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بلح زغلول وزن",
"Product_EN": null,
"Product_Id": "00010952 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1964,
"name": "كورنو علبة مربعة 4 اونز",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو علبة مربعة 4 اونز",
"Product_EN": null,
"Product_Id": "00010953 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1965,
"name": "مخاصى بقرى وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مخاصى بقرى وزن",
"Product_EN": null,
"Product_Id": "00010954 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1966,
"name": "عطاره . بابريكا مدخن وزن - موقوف",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بابريكا مدخن وزن - موقوف",
"Product_EN": "Attara Smoked Paprika - Scalable",
"Product_Id": "00010955 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1967,
"name": "بط بلدى فريش وزن",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بط بلدى فريش وزن",
"Product_EN": null,
"Product_Id": "00010956 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1968,
"name": "ارانب فريش وزن",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ارانب فريش وزن",
"Product_EN": null,
"Product_Id": "00010958 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1969,
"name": "دانون زبادى طبيعى 105 جم 3ج بدل 3.5ج",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى 105 جم 3ج بدل 3.5ج",
"Product_EN": "Danone Natural yogurt 105 gm 3 Pound",
"Product_Id": "00010960 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1970,
"name": "كلوريل الوان لافندر 1 لتر ",
"price": 7.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل الوان لافندر 1 لتر ",
"Product_EN": null,
"Product_Id": "00010961 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1971,
"name": "كلوريل الوان ليمون 4كجم",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل الوان ليمون 4كجم",
"Product_EN": null,
"Product_Id": "00010962 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1972,
"name": "كلوريل منظف لافندر 1 لتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل منظف لافندر 1 لتر",
"Product_EN": null,
"Product_Id": "00010963 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1973,
"name": "كلوريل الوان روز 2 لتر",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل الوان روز 2 لتر",
"Product_EN": null,
"Product_Id": "00010964 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1974,
"name": "فيبا دش مسحوق غسالات الاطباق 1 كجم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا دش مسحوق غسالات الاطباق 1 كجم",
"Product_EN": null,
"Product_Id": "00010965 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1975,
"name": "فيبا رينس مساعد شطف لغسالات الاطباق 285 مل",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا رينس مساعد شطف لغسالات الاطباق 285 مل",
"Product_EN": null,
"Product_Id": "00010966 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1976,
"name": "ديفاتول مطهر عام 500 مل +200 مل مطهر رشاش - موقوف",
"price": 33.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديفاتول مطهر عام 500 مل +200 مل مطهر رشاش - موقوف",
"Product_EN": null,
"Product_Id": "00010968 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1977,
"name": "ديفاتول مطهر عام برائحه التفاح 500 مل",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديفاتول مطهر عام برائحه التفاح 500 مل",
"Product_EN": null,
"Product_Id": "00010969 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1978,
"name": "ديفاتول مطهر عام برائحه الصنوبر 500 مل",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديفاتول مطهر عام برائحه الصنوبر 500 مل",
"Product_EN": null,
"Product_Id": "00010970 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1979,
"name": "ديفاتول مطهر عام 500 مل +200 مل مطهر رشاش _ موقوف",
"price": 33.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديفاتول مطهر عام 500 مل +200 مل مطهر رشاش _ موقوف",
"Product_EN": null,
"Product_Id": "00010971 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1980,
"name": "ديفاتول مطهر عام 500 مل +200 مل مطهر رشاش",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديفاتول مطهر عام 500 مل +200 مل مطهر رشاش",
"Product_EN": null,
"Product_Id": "00010973 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1981,
"name": "ديفاتول مطهر عام برائحه الافندر 500 مل",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديفاتول مطهر عام برائحه الافندر 500 مل",
"Product_EN": null,
"Product_Id": "00010974 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1982,
"name": "عطاره . بهارات كبسة وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بهارات كبسة وزن",
"Product_EN": "Attara Kabsa Spices - Scalable ",
"Product_Id": "00010977 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1983,
"name": "عطاره . بذر كتان وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذر كتان وزن",
"Product_EN": "Attara Linum Seed - Scalable",
"Product_Id": "00010978 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1984,
"name": "عطاره . بذر قاطونه وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذر قاطونه وزن",
"Product_EN": "Attara Cottage Seed - Scalable ",
"Product_Id": "00010979 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1985,
"name": "عطاره . حب الرشاد وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . حب الرشاد وزن",
"Product_EN": "Attara Rashad hob - Scalable ",
"Product_Id": "00010980 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1986,
"name": "عطاره . ريحان ورق وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ريحان ورق وزن",
"Product_EN": "Attara Basil Paper - Scalable ",
"Product_Id": "00010981 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1987,
"name": "عطاره . زيت شعر سوراج",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زيت شعر سوراج",
"Product_EN": "Attara - Suraj Hair Oil",
"Product_Id": "00010982 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1988,
"name": "عطاره . بن اخضر وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بن اخضر وزن",
"Product_EN": "Attara Green Coffee - Scalable",
"Product_Id": "00010983 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1989,
"name": "عطاره - ملح الهيمالايا الصخرى 250 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - ملح الهيمالايا الصخرى 250 جم",
"Product_EN": "Attara - Rock Himalayan Salt 250 gm",
"Product_Id": "00010985 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1990,
"name": "بانية فراخ وزن",
"price": 86,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بانية فراخ وزن",
"Product_EN": null,
"Product_Id": "00010986 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1991,
"name": "الدقهلية طماطم 1 ك طبق",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية طماطم 1 ك طبق",
"Product_EN": null,
"Product_Id": "00010987 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1992,
"name": "الدقهلية باذنجان ابيض عروس 500 جم طبق",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية باذنجان ابيض عروس 500 جم طبق",
"Product_EN": null,
"Product_Id": "00010988 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1993,
"name": "الدقهلية بطاطس تحمير 3 كجم كيس",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية بطاطس تحمير 3 كجم كيس",
"Product_EN": null,
"Product_Id": "00010989 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1994,
"name": "الدقهلية بطاطا 3 كجم كيس",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية بطاطا 3 كجم كيس",
"Product_EN": null,
"Product_Id": "00010990 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1995,
"name": "الدقهلية خيار 1 كجم طبق",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية خيار 1 كجم طبق",
"Product_EN": null,
"Product_Id": "00010991 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1996,
"name": "الدقهلية كوسة 1 كجم طبق",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية كوسة 1 كجم طبق",
"Product_EN": null,
"Product_Id": "00010992 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1997,
"name": "الدقهلية باذنجان عروس اسود 500 جم طبق",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية باذنجان عروس اسود 500 جم طبق",
"Product_EN": null,
"Product_Id": "00010993 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1998,
"name": "جونسون صابون خلاصه البابيا 125 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "جونسون صابون خلاصه البابيا 125 جم",
"Product_EN": null,
"Product_Id": "00010994 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 1999,
"name": "جليد معطر جو نعومه الفانيليا 300 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد معطر جو نعومه الفانيليا 300 مل",
"Product_EN": null,
"Product_Id": "00010995 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2000,
"name": "الدقهلية بصل اصفر 1 كجم - طبق",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية بصل اصفر 1 كجم - طبق",
"Product_EN": null,
"Product_Id": "00010996 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2001,
"name": "الدقهلية بصل احمر 1 كجم - طبق",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية بصل احمر 1 كجم - طبق",
"Product_EN": null,
"Product_Id": "00010997 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2002,
"name": "عطاره . صابون نابلسى شاهين 110 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . صابون نابلسى شاهين 110 جم",
"Product_EN": "Attara - Olivy hand Made Soap 110 gm ",
"Product_Id": "00010998 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2003,
"name": "الدقهلية بطاطا 1 كجم - كيس",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية بطاطا 1 كجم - كيس",
"Product_EN": null,
"Product_Id": "00010999 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2004,
"name": "عطاره - زجاجه فارغة فانيليا و مستكة",
"price": 0.4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - زجاجه فارغة فانيليا و مستكة",
"Product_EN": "Attara - Empty Vanilla and Sticky Bottle",
"Product_Id": "00011001 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2005,
"name": "عطاره - اكياس عرض",
"price": 45.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - اكياس عرض",
"Product_EN": "Attara - Display Bags",
"Product_Id": "00011002 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2006,
"name": "جوز حمام جامبو فريش 1 ق - موقوف",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوز حمام جامبو فريش 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00011003 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2007,
"name": "لية ضانى \/ كندوز وزن",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لية ضانى \/ كندوز وزن",
"Product_EN": null,
"Product_Id": "00011004 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2008,
"name": "نيدو حليب مجفف 1500 جم + 450 جم هديه",
"price": 195,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيدو حليب مجفف 1500 جم + 450 جم هديه",
"Product_EN": "Nido Milk Powder 1500 gm + 450 gm Gift",
"Product_Id": "00011005 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2009,
"name": "لاندنا جبنه جودة ميلد وزن",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندنا جبنه جودة ميلد وزن",
"Product_EN": null,
"Product_Id": "00011006 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2010,
"name": "لاندانا جبنه جوده برافذونا وزن",
"price": 290,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جوده برافذونا وزن",
"Product_EN": null,
"Product_Id": "00011007 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2011,
"name": "عبور لاند جبنه مفروده بطعم الشيدر",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه مفروده بطعم الشيدر",
"Product_EN": null,
"Product_Id": "00011008 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2012,
"name": "عبور لاند جبنه مفروده بطعم الجبنه الرومى",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه مفروده بطعم الجبنه الرومى",
"Product_EN": null,
"Product_Id": "00011009 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2013,
"name": "عبور لاند جبنه مفروده بطعم الفيتا",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه مفروده بطعم الفيتا",
"Product_EN": null,
"Product_Id": "00011010 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2014,
"name": "برغل وزن",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برغل وزن",
"Product_EN": "Bulgur - Scalable",
"Product_Id": "00011011 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2015,
"name": "زاهر مخبوزات منين شمر 500 جم - علبه",
"price": 28.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات منين شمر 500 جم - علبه",
"Product_EN": "Zaher Menen w Fennel 500 g",
"Product_Id": "00011013 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2016,
"name": "حدائق كاليفورنيا مشروم قطع 400 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا مشروم قطع 400 جم",
"Product_EN": "California Garden Mushroom Pieces 400 gm",
"Product_Id": "00011014 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2017,
"name": "حدائق كاليفورنيا مشروم قطع 800 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا مشروم قطع 800 جم",
"Product_EN": "California Garden Mushroom Pieces 800 gm",
"Product_Id": "00011015 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2018,
"name": "حدائق كاليفورنيا تونه لحم ابيض دايت 185 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونه لحم ابيض دايت 185 جم",
"Product_EN": "California tuna White meat Diet 185 gm ",
"Product_Id": "00011017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2019,
"name": "فلفل ميكس الوان وزن",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فلفل ميكس الوان وزن",
"Product_EN": null,
"Product_Id": "00011018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2020,
"name": "رويال ليمون وزنجبيل 25 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال ليمون وزنجبيل 25 فلتر",
"Product_EN": "Royal Ginger & Lemon Herbs 25 Bags",
"Product_Id": "00011019 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2021,
"name": "رويال زنجبيل وقرفه 25 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال زنجبيل وقرفه 25 فلتر",
"Product_EN": "Royal Cinnamon & Ginger Herbs 25 Bags",
"Product_Id": "00011020 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2022,
"name": "رويال اعشاب نعناع 12 فلتر + 3 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب نعناع 12 فلتر + 3 فلتر",
"Product_EN": "Royal Mint Herbs 12 Bags + 3 Bags",
"Product_Id": "00011021 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2023,
"name": "ترمس بلدى وزن",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ترمس بلدى وزن",
"Product_EN": "Lupine Baladi - Scalable ",
"Product_Id": "00011022 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2024,
"name": "توليدو شاى سيلانى 25 فتله",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو شاى سيلانى 25 فتله",
"Product_EN": "Tolido Ceylon Tea 25 Bags",
"Product_Id": "00011023 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2025,
"name": "توليدو تونه قطع 140 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو تونه قطع 140 جم",
"Product_EN": "Tolido Tuna Chunks 140 gm ",
"Product_Id": "00011025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2026,
"name": "زاهر خبز فينو شوفان 4 ق",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز فينو شوفان 4 ق",
"Product_EN": "Zaher Oats Bread 4 Pieces ",
"Product_Id": "00011026 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2027,
"name": "زاهر باتيه مشكل 6 ق 250جم - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر باتيه مشكل 6 ق 250جم - موقوف",
"Product_EN": null,
"Product_Id": "00011027 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2028,
"name": "ارز ديزل وزن - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ارز ديزل وزن - موقوف",
"Product_EN": null,
"Product_Id": "00011028 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2029,
"name": "عدس بجبة بلدى وزن",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عدس بجبة بلدى وزن",
"Product_EN": " Brown Lentils Baladi - Scalable",
"Product_Id": "00011029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2030,
"name": "دانون زبادى لايت 105 جم عرض",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى لايت 105 جم عرض",
"Product_EN": "Danone Yogurt Light 105 gm - Offer ",
"Product_Id": "00011030 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2031,
"name": "بانتين بلسم انسيابى و حريرى 360 مل",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بلسم انسيابى و حريرى 360 مل",
"Product_EN": null,
"Product_Id": "00011031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2032,
"name": "زاهر مينى باتيه مشكل 12ق 300 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مينى باتيه مشكل 12ق 300 جم",
"Product_EN": "Zaher Mixed Mini Pate 12 Pieces 300 g",
"Product_Id": "00011032 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2033,
"name": "اوكسى مسحوق يدوى 2 كجم +0.250 جرام",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوى 2 كجم +0.250 جرام",
"Product_EN": null,
"Product_Id": "00011033 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2034,
"name": "اوكسى جيل اتوماتيك 900 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى جيل اتوماتيك 900 جم",
"Product_EN": null,
"Product_Id": "00011034 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2035,
"name": "اوكسى جيل اتوماتيك 3 لتر",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى جيل اتوماتيك 3 لتر",
"Product_EN": null,
"Product_Id": "00011035 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2036,
"name": "زاهر مورتة Morta علبة 300 جم - موقوف",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مورتة Morta علبة 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011037 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2037,
"name": "كريستال خل طبيعى 1 لتر",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال خل طبيعى 1 لتر",
"Product_EN": null,
"Product_Id": "00011038 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2038,
"name": "اكياس كرافت 13*21 وزن",
"price": 93,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اكياس كرافت 13*21 وزن",
"Product_EN": null,
"Product_Id": "00011040 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2039,
"name": "اكياس كرافت 17*21 وزن",
"price": 93,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اكياس كرافت 17*21 وزن",
"Product_EN": null,
"Product_Id": "00011041 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2040,
"name": "اكياس الومنيوم 17*30 وزن",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اكياس الومنيوم 17*30 وزن",
"Product_EN": null,
"Product_Id": "00011043 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2041,
"name": "اكياس الومنيوم 22*30 وزن",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اكياس الومنيوم 22*30 وزن",
"Product_EN": null,
"Product_Id": "00011044 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2042,
"name": "زيت زيتون هولي فالي أكسترا فرجن 250 مل - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زيت زيتون هولي فالي أكسترا فرجن 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00011045 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2043,
"name": "هولى فالى زيت زيتون اكسترا فرجن 500 مل - موقوف",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى زيت زيتون اكسترا فرجن 500 مل - موقوف",
"Product_EN": null,
"Product_Id": "00011047 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2044,
"name": "هولي فالى زيت زيتون أكسترا فرجن 1 لتر - موقوف",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولي فالى زيت زيتون أكسترا فرجن 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00011048 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2045,
"name": "هولى فالى زيت زيتون فائق الجودة 250 مل - موقوف",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى زيت زيتون فائق الجودة 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00011049 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2046,
"name": "هولى فالى زيت زيتون فائق الجودة 500 مل - موقوف",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى زيت زيتون فائق الجودة 500 مل - موقوف",
"Product_EN": null,
"Product_Id": "00011050 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2047,
"name": "هولى فالى زيت زيتون فائق الجودة 750 مل - موقوف",
"price": 117,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى زيت زيتون فائق الجودة 750 مل - موقوف",
"Product_EN": null,
"Product_Id": "00011051 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2048,
"name": "هولى فالى مخلل زيتون كالاماتا بدون ملح 1كجم- موقوف",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون كالاماتا بدون ملح 1كجم- موقوف",
"Product_EN": null,
"Product_Id": "00011052 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2049,
"name": "هولى فالى مخلل زيتون كالاماتا بدون ملح 532جم موقوف",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون كالاماتا بدون ملح 532جم موقوف",
"Product_EN": null,
"Product_Id": "00011053 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2050,
"name": "هولى فالى مخلل زيتون اسود بدون ملح 1 كجم - موقوف",
"price": 83,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون اسود بدون ملح 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00011054 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2051,
"name": "هولى فالى مخلل زيتون بدون ملح 532 جم - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون بدون ملح 532 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2052,
"name": "هولى فالى مخلل زيتون سيوي بدون ملح 532 جم _موقوف",
"price": 79,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون سيوي بدون ملح 532 جم _موقوف",
"Product_EN": null,
"Product_Id": "00011056 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2053,
"name": "هولى فالى مخلل زيتون سيوي بدون ملح 532 جم - موقوف",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون سيوي بدون ملح 532 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011057 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2054,
"name": "هولى فالى مخلل زيتون كالاماتا ملح قليل 1كجم-موقوف",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون كالاماتا ملح قليل 1كجم-موقوف",
"Product_EN": null,
"Product_Id": "00011058 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2055,
"name": "هولى فالى مخلل زيتون كالاماتا اسود ملح 532جم موقوف",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون كالاماتا اسود ملح 532جم موقوف",
"Product_EN": null,
"Product_Id": "00011059 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2056,
"name": "هولى فالى مخلل زيتون اسباني اسود ملح 1 كجم - موقوف",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون اسباني اسود ملح 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00011060 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2057,
"name": "هولى فالى مخلل زيتون اسباني اسود ملح 532 جم-موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون اسباني اسود ملح 532 جم-موقوف",
"Product_EN": null,
"Product_Id": "00011061 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2058,
"name": "هولى الى مخلل زيتون سيوي اخضرملح قليل 1 كجم -موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى الى مخلل زيتون سيوي اخضرملح قليل 1 كجم -موقوف",
"Product_EN": null,
"Product_Id": "00011062 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2059,
"name": "هولى فالى مخلل زيتون سيوى اخضرملح قليل 532جم-موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مخلل زيتون سيوى اخضرملح قليل 532جم-موقوف",
"Product_EN": null,
"Product_Id": "00011063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2060,
"name": "سيوه مربي بلح باللوز 330 جم - موقوف",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيوه مربي بلح باللوز 330 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011064 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2061,
"name": "سيوه مربي بلح 330 جم - موقوف",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيوه مربي بلح 330 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2062,
"name": "مربي باذنجان بعين الجمل 330 جم - موقوف",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مربي باذنجان بعين الجمل 330 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2063,
"name": "بلح مفروم بجوز الهند 500 جم - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلح مفروم بجوز الهند 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011067 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2064,
"name": "هولى فالى تمر سيوه ساده 500 جم - موقوف",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى تمر سيوه ساده 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011068 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2065,
"name": "تمر سيوه بالشيكولاته والفسدق 500 جم - موقوف",
"price": 53.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمر سيوه بالشيكولاته والفسدق 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011069 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2066,
"name": "تمر بالكاجو و اللوز و الشيكولاته 500 جم - موقوف",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمر بالكاجو و اللوز و الشيكولاته 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011070 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2067,
"name": "بلح فريحي طرى 500 جم - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلح فريحي طرى 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2068,
"name": "ملح سيوه طبيعي والزعتر و البردقوش330جم - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ملح سيوه طبيعي والزعتر و البردقوش330جم - موقوف",
"Product_EN": "",
"Product_Id": "00011072 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2069,
"name": "ملح سيوه طبيعي بالنعناع 330 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ملح سيوه طبيعي بالنعناع 330 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011073 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2070,
"name": "ملح سيوه طبيعي بالليمون 330 جم - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ملح سيوه طبيعي بالليمون 330 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011074 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2071,
"name": "عشب لويزه البري+ عشب الميليسا من سيوه - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عشب لويزه البري+ عشب الميليسا من سيوه - موقوف",
"Product_EN": null,
"Product_Id": "00011075 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2072,
"name": "نعناع مطروح البري المجفف - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نعناع مطروح البري المجفف - موقوف",
"Product_EN": null,
"Product_Id": "00011076 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2073,
"name": "ملوخيه سيوه البريه مجففه 250 جم - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ملوخيه سيوه البريه مجففه 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2074,
"name": "لوتس كريمة برطمان 400 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس كريمة برطمان 400 جم",
"Product_EN": "LOTUS Cream Jar 400 gm",
"Product_Id": "00011078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2075,
"name": "ميللو حلوى مارشيملو 20 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميللو حلوى مارشيملو 20 جم",
"Product_EN": "Mello Marshmallow Candy 20 gm",
"Product_Id": "00011079 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2076,
"name": "ميكسي مقرمشات مخبوزه كاتشب 190 جم ",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميكسي مقرمشات مخبوزه كاتشب 190 جم ",
"Product_EN": "Mixy Crisps with ketchup 190 gm",
"Product_Id": "00011081 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2077,
"name": "دانون زبادى سكر 150 جم عرض 3 بدل 3.5 ج",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى سكر 150 جم عرض 3 بدل 3.5 ج",
"Product_EN": "Danone Yogurt Sugar 150 gm Offer 3 instead of 3.5 ",
"Product_Id": "00011082 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2078,
"name": "دانجو زبادى فراولة 105 جم 3 ج بدل 3.5ج عرض",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو زبادى فراولة 105 جم 3 ج بدل 3.5ج عرض",
"Product_EN": "Dango Strawberry Yogurt 105 gm 3 instead 3.5 Offer",
"Product_Id": "00011083 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2079,
"name": "ميكسى مقرمشات مخبوزه شطه وليمون 190 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميكسى مقرمشات مخبوزه شطه وليمون 190 جم",
"Product_EN": "Mixy Crisps with Chili & Lemon 190 gm",
"Product_Id": "00011084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2080,
"name": "ميكسى مقرمشات مخبوزه جبنه 190 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميكسى مقرمشات مخبوزه جبنه 190 جم",
"Product_EN": "Mixy Crisps with Cheese 190 gm",
"Product_Id": "00011085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2081,
"name": "ميكسى مقرمشات مخبوزه بهراتلى 190 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميكسى مقرمشات مخبوزه بهراتلى 190 جم",
"Product_EN": "Mixy Crisps with Baharatly 190 gm",
"Product_Id": "00011086 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2082,
"name": "ميكسى مقرمشات مخبوزه ملح 190 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميكسى مقرمشات مخبوزه ملح 190 جم",
"Product_EN": "Mixy Crisps with Salt 190 gm",
"Product_Id": "00011087 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2083,
"name": "نستله كلاسيك شوكولاتة بالحليب 60 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله كلاسيك شوكولاتة بالحليب 60 جم",
"Product_EN": "Nestle Classic Milk Chocolate 60 gm",
"Product_Id": "00011089 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2084,
"name": "نستله كلاسيك شيكولاته 55% كاكاو 60 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله كلاسيك شيكولاته 55% كاكاو 60 جم",
"Product_EN": "Nestle Classic Chocolate 55% Cocoa 60 gm",
"Product_Id": "00011090 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2085,
"name": "نستله ايس كوفى بلاك 180 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله ايس كوفى بلاك 180 مل",
"Product_EN": "Nestle Ice Coffee Black 180 ml",
"Product_Id": "00011091 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2086,
"name": "نستله ايس كوفى لاتيه 180 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله ايس كوفى لاتيه 180 مل",
"Product_EN": "Nestle Ice Coffee Latte 180 ml",
"Product_Id": "00011092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2087,
"name": "نستله ايس كوفى اسبريسو 180 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله ايس كوفى اسبريسو 180 مل",
"Product_EN": "Nestle Ice Coffee Espresso 180 ml",
"Product_Id": "00011093 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2088,
"name": "ليبتون ايس تى خوخ 330 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون ايس تى خوخ 330 مل",
"Product_EN": "Lipton Ice Tea Peach 330 ml",
"Product_Id": "00011094 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2089,
"name": "ليبتون ايس تى بطيخ 330 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون ايس تى بطيخ 330 مل",
"Product_EN": "Lipton Ice Tea Watermelon 330 ml",
"Product_Id": "00011095 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2090,
"name": "ليبتون ايس تى ليمون 330 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون ايس تى ليمون 330 مل",
"Product_EN": "Lipton Ice Tea Lemon 330 ml",
"Product_Id": "00011096 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2091,
"name": "نستله شوكولاته كراميل 90 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله شوكولاته كراميل 90 جم",
"Product_EN": "Nestle Chocolate Caramel 90 gm",
"Product_Id": "00011097 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2092,
"name": "نستله شوكولاته بندق 90 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله شوكولاته بندق 90 جم",
"Product_EN": "Nestle Chocolate Hazelnut 90 gm",
"Product_Id": "00011098 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2093,
"name": "البين جولد شوكولاته حليب 90 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البين جولد شوكولاته حليب 90 جم",
"Product_EN": "Alpen Gold Milk Chocolate 90 gm",
"Product_Id": "00011099 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2094,
"name": "البين جولد شوكولاته اوريو 90 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البين جولد شوكولاته اوريو 90 جم",
"Product_EN": "Alpen Gold OREO Chocolate 90 gm",
"Product_Id": "00011100 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2095,
"name": "البين جولد شوكولاته فراوله 90 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البين جولد شوكولاته فراوله 90 جم",
"Product_EN": "Alpen Gold Chocolate Strawberry 90 gm",
"Product_Id": "00011101 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2096,
"name": "ستاربكس فرابتشينو موكا 250 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:35",
"updated_at": "2021-11-01 19:45:35",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس فرابتشينو موكا 250 مل",
"Product_EN": "Starbucks Frappuccino Mocha 250 ml",
"Product_Id": "00011102 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2097,
"name": "ستاربكس فرابتشينو مشروب قهوه موكا زجاج 250 مل",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس فرابتشينو مشروب قهوه موكا زجاج 250 مل",
"Product_EN": "Starbucks Frappuccino Mocha Glass 250 ml",
"Product_Id": "00011103 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2098,
"name": "ستاربكس فرابتشينو مشروب قهوه كراميل 250 مل",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس فرابتشينو مشروب قهوه كراميل 250 مل",
"Product_EN": "Starbucks Frappuccino Caramel Coffee 250 ml",
"Product_Id": "00011104 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2099,
"name": "ريتر سبورت شوكولاته حليب 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شوكولاته حليب 100 جم",
"Product_EN": "Ritter Sport Milk Chocolate 100 gm",
"Product_Id": "00011106 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2100,
"name": "ريتر سبورت شوكولاته حليب السلسلة 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شوكولاته حليب السلسلة 100 جم",
"Product_EN": "Ritter Sport Series Milk Chocolate 100 gm",
"Product_Id": "00011107 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2101,
"name": "ريتر سبورت شوكولاته بندق مكاديميا 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شوكولاته بندق مكاديميا 100 جم",
"Product_EN": "Ritter Sport Hazelnut Macadamia Chocolate 100 gm",
"Product_Id": "00011109 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2102,
"name": "ميلكا شوكولاتة بندق كامل 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بندق كامل 100 جم",
"Product_EN": "Milka Chocolate Whole Hazelnut 100 gm",
"Product_Id": "00011110 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2103,
"name": "ميلكا شوكولاتة بالزبيب ومكسرات 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالزبيب ومكسرات 100 جم",
"Product_EN": "Milka Chocolate With Raisin & Nut 100 gm",
"Product_Id": "00011112 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2104,
"name": "ام اند امز بيضه العاب",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ام اند امز بيضه العاب",
"Product_EN": "M&M's Egg Games",
"Product_Id": "00011114 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2105,
"name": "كاسى كيك بالحليب محشو كريمه 35 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كاسى كيك بالحليب محشو كريمه 35 جم",
"Product_EN": "Cassy Cake Milk stuffed cream 35 gm",
"Product_Id": "00011115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2106,
"name": "ريتر سبورت شوكولاته بندق لوز وعسل 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شوكولاته بندق لوز وعسل 100 جم",
"Product_EN": "Ritter Sport Hazelnut Almond&Honey 100 gm",
"Product_Id": "00011116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2107,
"name": "ميللو حلوى مارشيملو 52 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميللو حلوى مارشيملو 52 جم",
"Product_EN": "Mello Marshmallow Candy 52 gm",
"Product_Id": "00011117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2108,
"name": "اوزمو جو شوكولاته 30 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوزمو جو شوكولاته 30 جم",
"Product_EN": "Ozmo Go Chocolate 30 gm",
"Product_Id": "00011118 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2109,
"name": "كنور خلطه صوص الديمى جلاس 40 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطه صوص الديمى جلاس 40 جم",
"Product_EN": "Knorr Brown Sauce Mix 40 gm",
"Product_Id": "00011119 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2110,
"name": "نستله زبادى فراولة فلافو 75 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى فراولة فلافو 75 جم",
"Product_EN": "Nestle Strawberry Flavo Yogurt 75 gm",
"Product_Id": "00011120 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2111,
"name": "نستله زبادى سكر 75 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى سكر 75 جم",
"Product_EN": "Nestle Yogurt Sugar 75 gm",
"Product_Id": "00011121 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2112,
"name": "قلب و كلاوى بقرى وزن",
"price": 129,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قلب و كلاوى بقرى وزن",
"Product_EN": null,
"Product_Id": "00011123 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2113,
"name": "هولى فالى مربى زيتون اوجانك 330 جم - موقوف",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مربى زيتون اوجانك 330 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011124 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2114,
"name": "هولى فالى مربى كركدية سيوه اوجانك 330 جم - موقوف",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مربى كركدية سيوه اوجانك 330 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2115,
"name": "هولى فالى مربى تين مطروح 330 جم - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى مربى تين مطروح 330 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011126 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2116,
"name": "هولى فالى قهوه نواه البلح 330 جم - موقوف",
"price": 53.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولى فالى قهوه نواه البلح 330 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011127 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2117,
"name": "زاهر كاجو جامبو وزن - موقوف",
"price": 250,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر كاجو جامبو وزن - موقوف",
"Product_EN": null,
"Product_Id": "00011128 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2118,
"name": "عطاره - زاهر فسدق امريكى وزن",
"price": 280,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - زاهر فسدق امريكى وزن",
"Product_EN": "Attara Zaher American Pistachio - Scalable ",
"Product_Id": "00011129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2119,
"name": "عطاره - لوز محمص \/ مقشر امريكى وزن",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - لوز محمص \/ مقشر امريكى وزن",
"Product_EN": "Attara Roasted Almonds Peeled American ",
"Product_Id": "00011130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2120,
"name": "عطاره . لوز نى وزن",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لوز نى وزن",
"Product_EN": "Attara Almonds Ni - Scalable",
"Product_Id": "00011132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2121,
"name": "زاهر عين جمل امريكى وزن - موقوف",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر عين جمل امريكى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00011133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2122,
"name": "لعبه بيض ميكى",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لعبه بيض ميكى",
"Product_EN": null,
"Product_Id": "00011134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2123,
"name": "كيوى وزن",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيوى وزن",
"Product_EN": null,
"Product_Id": "00011135 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2124,
"name": "جزارة فاقد و هالك بقرى وزن - موقوف",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جزارة فاقد و هالك بقرى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00011136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2125,
"name": "بوش مفاريم وزن",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بوش مفاريم وزن",
"Product_EN": null,
"Product_Id": "00011137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2126,
"name": "لوتس بسكويت 125 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت 125 جم",
"Product_EN": "LOTUS Biscuits 125 gm",
"Product_Id": "00011138 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2127,
"name": "هاينز تونة قطع 185 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز تونة قطع 185 جم",
"Product_EN": null,
"Product_Id": "00011139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2128,
"name": "دابل شيكولاته دولسي",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دابل شيكولاته دولسي",
"Product_EN": null,
"Product_Id": "00011140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2129,
"name": "معمول بي العجوه 1 قطعه",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "معمول بي العجوه 1 قطعه",
"Product_EN": null,
"Product_Id": "00011141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2130,
"name": "حياة مياه معدنية 600 مل",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حياة مياه معدنية 600 مل",
"Product_EN": null,
"Product_Id": "00011142 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2131,
"name": "صن لايت مسحوق اوتوماتيك الزهور الفرنسيه 2.5 كجم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "صن لايت مسحوق اوتوماتيك الزهور الفرنسيه 2.5 كجم",
"Product_EN": "Sunlight Automatic Powder French Flowers 2.5 kg",
"Product_Id": "00011143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2132,
"name": "ليبتون شاى ناعم 100 جم ",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى ناعم 100 جم ",
"Product_EN": "Lipton Dust Tea 100 gm",
"Product_Id": "00011144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2133,
"name": "العميد بن غامق ساده 200 جم",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العميد بن غامق ساده 200 جم",
"Product_EN": null,
"Product_Id": "00011145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2134,
"name": "سافانا صابون 125 جم * 4 ق",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سافانا صابون 125 جم * 4 ق",
"Product_EN": null,
"Product_Id": "00011146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2135,
"name": "كلوروكس ابيض 3.97 لتر ",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوروكس ابيض 3.97 لتر ",
"Product_EN": null,
"Product_Id": "00011147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2136,
"name": "الفهد حلاوه طحينيه بار 30 جم تقريبا * 30 قطعه",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه بار 30 جم تقريبا * 30 قطعه",
"Product_EN": null,
"Product_Id": "00011148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2137,
"name": "الفهد حلاوه طحينيه ساده بلاستيك 250 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه ساده بلاستيك 250 جم",
"Product_EN": null,
"Product_Id": "00011149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2138,
"name": "الفهد حلاوه طحينيه عبوه سودانى بلاستيك 250 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه عبوه سودانى بلاستيك 250 جم",
"Product_EN": null,
"Product_Id": "00011150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2139,
"name": "الفهد حلاوه طحينيه شيكولاته بلاستيك 250 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه شيكولاته بلاستيك 250 جم",
"Product_EN": null,
"Product_Id": "00011151 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2140,
"name": "الفهد حلاوه طحينيه قرفه بلاستيك 250 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه قرفه بلاستيك 250 جم",
"Product_EN": null,
"Product_Id": "00011152 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2141,
"name": "الفهد حلاوه طحينيه مكسرات بلاستيك 250 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه مكسرات بلاستيك 250 جم",
"Product_EN": null,
"Product_Id": "00011153 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2142,
"name": "الفهد حلاوه طحينيه ساده مغلفه 250 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه ساده مغلفه 250 جم",
"Product_EN": null,
"Product_Id": "00011154 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2143,
"name": "الفهد حلاوه طحينيه سودانى مغلفه 250 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه سودانى مغلفه 250 جم",
"Product_EN": null,
"Product_Id": "00011155 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2144,
"name": "الفهد حلاوه طحينيه قطع شيكولاته مغلفه 250 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه قطع شيكولاته مغلفه 250 جم",
"Product_EN": null,
"Product_Id": "00011156 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2145,
"name": "الفهد حلاوه طحينيه قطع قرفه مغلفه 250 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه قطع قرفه مغلفه 250 جم",
"Product_EN": null,
"Product_Id": "00011157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2146,
"name": "الفهد حلاوه طحينيه ساده بلاستيك 500 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه ساده بلاستيك 500 جم",
"Product_EN": null,
"Product_Id": "00011158 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2147,
"name": "حلاوه طحينيه سودانى بلاستيك 500 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلاوه طحينيه سودانى بلاستيك 500 جم",
"Product_EN": null,
"Product_Id": "00011159 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2148,
"name": "الفهد حلاوه طحينيه شيكولاته بلاستيك 500 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه شيكولاته بلاستيك 500 جم",
"Product_EN": null,
"Product_Id": "00011160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2149,
"name": "الفهد حلاوه طحينيه قرفه بلاستيك 500 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه قرفه بلاستيك 500 جم",
"Product_EN": null,
"Product_Id": "00011161 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2150,
"name": "الفهد حلاوه طحينيه مكسرات بلاستيك 500 جم",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه مكسرات بلاستيك 500 جم",
"Product_EN": null,
"Product_Id": "00011162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2151,
"name": "الفهد حلاوه طحينيه قطع ساده مغلفه 500 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه قطع ساده مغلفه 500 جم",
"Product_EN": null,
"Product_Id": "00011163 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2152,
"name": "الفهد حلاوه طحينيه قطع سودانى مغلفه 500 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه قطع سودانى مغلفه 500 جم",
"Product_EN": null,
"Product_Id": "00011164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2153,
"name": "الفهد حلاوه طحينيه قطع شيكولاته مغلفه 500 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه قطع شيكولاته مغلفه 500 جم",
"Product_EN": null,
"Product_Id": "00011165 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2154,
"name": "الفهد حلاوه طحينيه قطع قرفه مغلفه 500 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه طحينيه قطع قرفه مغلفه 500 جم",
"Product_EN": null,
"Product_Id": "00011166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2155,
"name": "الفهد طحينة عبوه بلاستيك 900 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد طحينة عبوه بلاستيك 900 جم",
"Product_EN": null,
"Product_Id": "00011167 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2156,
"name": "الفهد كرانشى سودانى 60 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد كرانشى سودانى 60 جم",
"Product_EN": null,
"Product_Id": "00011168 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2157,
"name": "الفهد كرانشى سمسم 60 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد كرانشى سمسم 60 جم",
"Product_EN": null,
"Product_Id": "00011169 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2158,
"name": "الفهد كرانشى حمص 60 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد كرانشى حمص 60 جم",
"Product_EN": null,
"Product_Id": "00011170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2159,
"name": "الفهد حلاوه شعر ساده 250 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه شعر ساده 250 جم",
"Product_EN": null,
"Product_Id": "00011171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2160,
"name": "الفهد حلاوه شعر شيكولاته 250 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه شعر شيكولاته 250 جم",
"Product_EN": null,
"Product_Id": "00011172 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2161,
"name": "الفهد حلاوه شعر قرفه 250 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهد حلاوه شعر قرفه 250 جم",
"Product_EN": null,
"Product_Id": "00011173 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2162,
"name": "شيرى شيكولاته كراميل 25 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيرى شيكولاته كراميل 25 جم",
"Product_EN": null,
"Product_Id": "00011174 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2163,
"name": "لواكر جاردينيا 38 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر جاردينيا 38 جم",
"Product_EN": "Loacker Gardenia 38 gm",
"Product_Id": "00011175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2164,
"name": "لواكر جاردينيا ويفر شيكولاته 38 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر جاردينيا ويفر شيكولاته 38 جم",
"Product_EN": "Loacker Gardenia Chocolate 38 gm",
"Product_Id": "00011176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2165,
"name": "شيرى شيكولاته بوريو 25 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيرى شيكولاته بوريو 25 جم",
"Product_EN": null,
"Product_Id": "00011177 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2166,
"name": "رويال جبنه جوده لايت وزن",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رويال جبنه جوده لايت وزن",
"Product_EN": null,
"Product_Id": "00011178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2167,
"name": "القرشى تمر 2.100 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر 2.100 جم",
"Product_EN": "Al Qurashi Dates 2.100 gm",
"Product_Id": "00011179 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2168,
"name": "القرشى تمر 1400 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر 1400 جم",
"Product_EN": "Al Qurashi Dates 1.400 gm",
"Product_Id": "00011180 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2169,
"name": "القرشى تمر علبه 700 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر علبه 700 جم",
"Product_EN": "Al Qurashi Dates box 700 gm",
"Product_Id": "00011182 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2170,
"name": "هنكات ضانى وزن ق - بوم - موقوف",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هنكات ضانى وزن ق - بوم - موقوف",
"Product_EN": null,
"Product_Id": "00011184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2171,
"name": "العبد علبه حلاوه المولد رقم 7",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد رقم 7",
"Product_EN": null,
"Product_Id": "00011185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2172,
"name": "العبد علبه حلاوه المولد رقم 6",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد رقم 6",
"Product_EN": null,
"Product_Id": "00011186 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2173,
"name": "العبد علبه حلاوه المولد رقم 5",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد رقم 5",
"Product_EN": null,
"Product_Id": "00011187 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2174,
"name": "العبد علبه حلاوه المولد رقم 4",
"price": 200,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد رقم 4",
"Product_EN": null,
"Product_Id": "00011188 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2175,
"name": "العبد علبه حلاوه المولد رقم 3",
"price": 270,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد رقم 3",
"Product_EN": null,
"Product_Id": "00011189 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2176,
"name": "العبد علبه حلاوه المولد رقم 2",
"price": 385,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد رقم 2",
"Product_EN": null,
"Product_Id": "00011190 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2177,
"name": "العبد علبه حلاوه المولد رقم 1",
"price": 485,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد رقم 1",
"Product_EN": null,
"Product_Id": "00011191 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2178,
"name": "العبد علبه حلاوه المولد هدايا أزرق",
"price": 600,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد هدايا أزرق",
"Product_EN": null,
"Product_Id": "00011192 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2179,
"name": "العبد علبه حلاوه المولد هدايا نبيتي",
"price": 825,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد هدايا نبيتي",
"Product_EN": null,
"Product_Id": "00011193 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2180,
"name": "العبد علبه حلاوه المولد هدايا اخضر",
"price": 1050,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد هدايا اخضر",
"Product_EN": null,
"Product_Id": "00011194 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2181,
"name": "العبد علبه حلاوه المولد هدايا بايتس",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد هدايا بايتس",
"Product_EN": null,
"Product_Id": "00011195 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2182,
"name": "العبد حلاوه المولد علبة صفيح صغير مستطيل",
"price": 550,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد علبة صفيح صغير مستطيل",
"Product_EN": null,
"Product_Id": "00011196 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2183,
"name": "العبد حلاوه المولد علبة صفيح كبير مستطيل",
"price": 825,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد علبة صفيح كبير مستطيل",
"Product_EN": null,
"Product_Id": "00011197 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2184,
"name": "العبد علبه حلاوه المولد فضي",
"price": 975,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد علبه حلاوه المولد فضي",
"Product_EN": null,
"Product_Id": "00011198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2185,
"name": "العبد حلاوه المولد قرص حمص 2",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد قرص حمص 2",
"Product_EN": null,
"Product_Id": "00011199 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2186,
"name": "العبد حلاوه المولد قرص علف مخصوص صغير",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد قرص علف مخصوص صغير",
"Product_EN": null,
"Product_Id": "00011200 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2187,
"name": "العبد حلاوه المولد طبق مقصوصه مكسرات",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق مقصوصه مكسرات",
"Product_EN": null,
"Product_Id": "00011201 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2188,
"name": "العبد حلاوه المولد طبق فوليه صوابع صغير",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق فوليه صوابع صغير",
"Product_EN": null,
"Product_Id": "00011202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2189,
"name": "العبد حلاوه المولد طبق سمسميه صوابع صغير",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق سمسميه صوابع صغير",
"Product_EN": null,
"Product_Id": "00011203 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2190,
"name": "العبد حلاوه المولد طبق حمصيه صوابع صغير",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق حمصيه صوابع صغير",
"Product_EN": null,
"Product_Id": "00011204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2191,
"name": "العبد حلاوه المولد طبق سكريه صوابع صغير",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق سكريه صوابع صغير",
"Product_EN": null,
"Product_Id": "00011205 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2192,
"name": "العبد حلاوه المولد طبق مشكل صوابع كبير",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق مشكل صوابع كبير",
"Product_EN": null,
"Product_Id": "00011206 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2193,
"name": "العبد حلاوه المولد طبق فوليه صوابع كبير",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق فوليه صوابع كبير",
"Product_EN": null,
"Product_Id": "00011207 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2194,
"name": "العبد حلاوه المولد طبق سمسميه صوابع كبير",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق سمسميه صوابع كبير",
"Product_EN": null,
"Product_Id": "00011208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2195,
"name": "العبد حلاوه المولد طبق حمصيه صوابع كبير",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق حمصيه صوابع كبير",
"Product_EN": null,
"Product_Id": "00011209 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2196,
"name": "العبد حلاوه المولد قرص فستدقيه",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد قرص فستدقيه",
"Product_EN": null,
"Product_Id": "00011210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2197,
"name": "العبد حلاوه المولد قرص بندقيه",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد قرص بندقيه",
"Product_EN": null,
"Product_Id": "00011211 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2198,
"name": "العبد حلاوه المولد قرص لوزيه",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد قرص لوزيه",
"Product_EN": null,
"Product_Id": "00011212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2199,
"name": "العبد حلاوه المولد قرص كاشو",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد قرص كاشو",
"Product_EN": null,
"Product_Id": "00011213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2200,
"name": "العبد حلاوه المولد قرص حمص مسكر",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد قرص حمص مسكر",
"Product_EN": null,
"Product_Id": "00011214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2201,
"name": "العبد حلاوه المولد طبق دوميه بندق",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق دوميه بندق",
"Product_EN": null,
"Product_Id": "00011215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2202,
"name": "العبد حلاوه المولد طبق ملبن ساده",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق ملبن ساده",
"Product_EN": null,
"Product_Id": "00011216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2203,
"name": "العبد حلاوه المولد طبق جيلي فواكه",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق جيلي فواكه",
"Product_EN": null,
"Product_Id": "00011217 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2204,
"name": "العبد حلاوه المولد طبق ملبن مبروم بندق صغير",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق ملبن مبروم بندق صغير",
"Product_EN": null,
"Product_Id": "00011218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2205,
"name": "العبد حلاوه المولد طبق ملبن مبروم فسدق صغير",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق ملبن مبروم فسدق صغير",
"Product_EN": null,
"Product_Id": "00011219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2206,
"name": "العبد حلاوه المولد طبق ملبن مبروم عين جمل صغير",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق ملبن مبروم عين جمل صغير",
"Product_EN": null,
"Product_Id": "00011220 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2207,
"name": "العبد حلاوه المولد طبق ملبن مبروم عين جمل كبير",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق ملبن مبروم عين جمل كبير",
"Product_EN": null,
"Product_Id": "00011221 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2208,
"name": "العبد حلاوه المولد طبق لديده",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق لديده",
"Product_EN": null,
"Product_Id": "00011222 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2209,
"name": "العبد حلاوه المولد طبق حمام",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق حمام",
"Product_EN": null,
"Product_Id": "00011223 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2210,
"name": "العبد حلاوه المولد طبق بسيمه بندق صغير",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق بسيمه بندق صغير",
"Product_EN": null,
"Product_Id": "00011224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2211,
"name": "العبد حلاوه المولد طبق جوز هند فسدق صغير",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق جوز هند فسدق صغير",
"Product_EN": null,
"Product_Id": "00011225 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2212,
"name": "العبد حلاوه المولد طبق جوز مشمشيه مكسرات",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق جوز مشمشيه مكسرات",
"Product_EN": null,
"Product_Id": "00011226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2213,
"name": "العبد حلاوه المولد طبق قشطه بالبندق",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق قشطه بالبندق",
"Product_EN": null,
"Product_Id": "00011227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2214,
"name": "العبد حلاوه المولد طبق نوجا بندق",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق نوجا بندق",
"Product_EN": null,
"Product_Id": "00011228 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2215,
"name": "العبد حلاوه المولد طبق قشطه بالبندق والشيكولاته",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق قشطه بالبندق والشيكولاته",
"Product_EN": null,
"Product_Id": "00011229 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2216,
"name": "العبد حلاوه المولد طبق مكسرات مشكل",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق مكسرات مشكل",
"Product_EN": null,
"Product_Id": "00011230 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2217,
"name": "العبد حلاوه المولد طبق فول سوداني مشكل كراميل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق فول سوداني مشكل كراميل",
"Product_EN": null,
"Product_Id": "00011231 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2218,
"name": "العبد حلاوه المولد طبق بندق مشكل كراميل",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق بندق مشكل كراميل",
"Product_EN": null,
"Product_Id": "00011232 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2219,
"name": "العبد حلاوه المولد طبق لوز مشكل كراميل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق لوز مشكل كراميل",
"Product_EN": null,
"Product_Id": "00011233 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2220,
"name": "زاهر تمر مجدول 500 جم - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر تمر مجدول 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007776 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2221,
"name": "اريا ل جل اوتوماتيك عطر اصلى 2.5 كجم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريا ل جل اوتوماتيك عطر اصلى 2.5 كجم",
"Product_EN": null,
"Product_Id": "00007777 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2222,
"name": "الطحان علبة فانوس باللوز 200 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان علبة فانوس باللوز 200 جم",
"Product_EN": null,
"Product_Id": "00007779 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2223,
"name": "الطحان علبة فانوس باللوز و الشيكولاتة 200 جم",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان علبة فانوس باللوز و الشيكولاتة 200 جم",
"Product_EN": null,
"Product_Id": "00007780 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2224,
"name": "الطحان قالب عجوة مفروم 400 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان قالب عجوة مفروم 400 جم",
"Product_EN": null,
"Product_Id": "00007781 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2225,
"name": "زاهر سمنه جاموسى طبيعي برطمان 900 جم",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمنه جاموسى طبيعي برطمان 900 جم",
"Product_EN": "Zaher Natural Buffalo Ghee Jar 900 g",
"Product_Id": "00007782 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2226,
"name": "زاهر سمنه بقرى طبيعي برطمان 900 جم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمنه بقرى طبيعي برطمان 900 جم",
"Product_EN": "Zaher Natural Cow Ghee Jar 900 g",
"Product_Id": "00007783 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2227,
"name": "زاهر كافى - قهوة فرنساوى",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - قهوة فرنساوى",
"Product_EN": null,
"Product_Id": "00007784 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2228,
"name": "زاهر كافى - نسكافية بلاك",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - نسكافية بلاك",
"Product_EN": null,
"Product_Id": "00007785 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2229,
"name": "زاهر كافى - نسكافية بالحليب",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - نسكافية بالحليب",
"Product_EN": null,
"Product_Id": "00007786 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2230,
"name": "زاهر كافى - عصير موز كبير - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير موز كبير - موقوف",
"Product_EN": null,
"Product_Id": "00007787 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2231,
"name": "زاهر كافى - عصير كوكتيل كبير",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير كوكتيل كبير",
"Product_EN": null,
"Product_Id": "00007788 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2232,
"name": "زاهر كافى - ميلك شيك توت - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك توت - موقوف",
"Product_EN": null,
"Product_Id": "00007789 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2233,
"name": "زاهر كافى - إضافة صوص",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - إضافة صوص",
"Product_EN": null,
"Product_Id": "00007790 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2234,
"name": "زاهر كافى - اضافة عسل نحل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - اضافة عسل نحل",
"Product_EN": null,
"Product_Id": "00007791 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2235,
"name": "زاهر عصير ليمون 1 لتر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عصير ليمون 1 لتر",
"Product_EN": null,
"Product_Id": "00007792 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2236,
"name": "زاهر كافى - عصير ليمون نعناع 1 لتر - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير ليمون نعناع 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007793 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2237,
"name": "عطاشة عصير جوافة 1 لتر",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "عطاشة عصير جوافة 1 لتر",
"Product_EN": "Atasha Guava Juice 1 L",
"Product_Id": "00007794 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2238,
"name": "عطاشة عصير برتقال 1 لتر",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "عطاشة عصير برتقال 1 لتر",
"Product_EN": "Atasha Orange Juice 1 L ",
"Product_Id": "00007795 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2239,
"name": "عطاشة عصير فراولة 1 لتر",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "عطاشة عصير فراولة 1 لتر",
"Product_EN": "Atasha Strawberry Juice 1 L",
"Product_Id": "00007796 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2240,
"name": "زاهر كافى - عصير موز 1 لتر - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير موز 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007797 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2241,
"name": "زاهر كافى - عصير بلح",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير بلح",
"Product_EN": null,
"Product_Id": "00007798 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2242,
"name": "عطاشة عصير مانجو جركن 2 لتر",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "عطاشة عصير مانجو جركن 2 لتر",
"Product_EN": "Atasha Mango Juice Jerrycan 2 L ",
"Product_Id": "00007799 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2243,
"name": "زاهر كافى - عصير كيوى 1 لتر - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير كيوى 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007800 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2244,
"name": "زاهر كافى - عصير تفاح 1 لتر - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير تفاح 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007801 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2245,
"name": "زاهر كافى - عصير خوخ 1 لتر - موقوف",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير خوخ 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007802 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2246,
"name": "زاهر كافى - عصير اناناس 1 لتر - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير اناناس 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007803 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2247,
"name": "زاهرعصير كوكتيل 1 لتر",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهرعصير كوكتيل 1 لتر",
"Product_EN": null,
"Product_Id": "00007804 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2248,
"name": "زاهر كافى - عصير اوريو 1 لتر - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير اوريو 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007805 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2249,
"name": "زاهر كافى - عصير بوريو 1 لتر - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير بوريو 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007806 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2250,
"name": "زاهر كافى - ميلك شيك شيكولاتة 1 لتر - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك شيكولاتة 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007807 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2251,
"name": "زاهر كافى - ميلك شيك فانليا 1 لتر - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك فانليا 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007808 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2252,
"name": "زاهر كافى - ميلك شيك مانجو 1 لتر - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك مانجو 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007809 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2253,
"name": "زاهر كافى - ميلك شيك فراولة 1 لتر - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك فراولة 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007810 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2254,
"name": "زاهر كافى - ميلك شيك توت 1 لتر - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك توت 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007811 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2255,
"name": "زاهر كافى - ميلك شيك موكا 1 لتر - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك موكا 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007812 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2256,
"name": "زاهر كافى - زبادى فواكهة 1 لتر - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - زبادى فواكهة 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007813 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2257,
"name": "زاهر كافى - زبادى عسل 1 لتر - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - زبادى عسل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007814 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2258,
"name": "زاهر عصير زبادى توت 1 لتر",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عصير زبادى توت 1 لتر",
"Product_EN": null,
"Product_Id": "00007815 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2259,
"name": "يوجو مشروب زبادى فواكه 440 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "يوجو مشروب زبادى فواكه 440 مل",
"Product_EN": "Yogo Fruit Yogurt Drink 440 ml",
"Product_Id": "00007816 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2260,
"name": "برانش كرواسون شيكولاتة صغير",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش كرواسون شيكولاتة صغير",
"Product_EN": null,
"Product_Id": "00007817 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2261,
"name": "شويبس جولد خوخ بلاستيك 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس جولد خوخ بلاستيك 1 لتر",
"Product_EN": "Schweppes Gold Peach Plastic 1 L",
"Product_Id": "00007818 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2262,
"name": "فانتا مش توت بلاستيك 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا مش توت بلاستيك 1 لتر",
"Product_EN": "Fanta Not Blueberry Plastic 1 L ",
"Product_Id": "00007819 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2263,
"name": "فانتا مش توت كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا مش توت كان 330 مل",
"Product_EN": "Fanta Not Blueberry Can 330 ml ",
"Product_Id": "00007820 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2264,
"name": "فيرى مركز سائل تنظيف اطباق اصلى 650 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى مركز سائل تنظيف اطباق اصلى 650 جم",
"Product_EN": null,
"Product_Id": "00007821 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2265,
"name": "اريال مسحوق يدوى 300 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007822 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2266,
"name": "زين شاى اسود ناعم 250 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زين شاى اسود ناعم 250 جم",
"Product_EN": "Zein Dust Black Tea 250 gm",
"Product_Id": "00007823 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2267,
"name": "زين شاى اسود ناعم 40 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زين شاى اسود ناعم 40 جم",
"Product_EN": "Zein Dust Black Tea 40 gm",
"Product_Id": "00007824 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2268,
"name": "كوكس خميرة جافة فورية للبيتزا و الخبز 10 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس خميرة جافة فورية للبيتزا و الخبز 10 جم",
"Product_EN": null,
"Product_Id": "00007825 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2269,
"name": "زاهر كافى - لاتية",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - لاتية",
"Product_EN": null,
"Product_Id": "00007826 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2270,
"name": "تست بيور لحم بقر مدخن 200 جم - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور لحم بقر مدخن 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007827 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2271,
"name": "تست بيور لحم رومى مدخن 200 جم - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور لحم رومى مدخن 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007828 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2272,
"name": "تست بيور هوت دوج طبيعى 400 جم - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور هوت دوج طبيعى 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007829 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2273,
"name": "تست بيور هوت دوج بالجبنة 400 جم - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور هوت دوج بالجبنة 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007830 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2274,
"name": "تست بيور سوسيس ايطالى 400 جم - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور سوسيس ايطالى 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007831 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2275,
"name": "تست بيور سوسيس امريكى 400 حم - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور سوسيس امريكى 400 حم - موقوف",
"Product_EN": null,
"Product_Id": "00007832 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2276,
"name": "تست بيور بيف بيكون 200 جم - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور بيف بيكون 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007833 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2277,
"name": "تست بيور لانشون سادة\/زيتون\/دجاج\/فلفل وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور لانشون سادة\/زيتون\/دجاج\/فلفل وزن",
"Product_EN": null,
"Product_Id": "00007834 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2278,
"name": "زاهر جبنه رومى داير قرص وزن - موقوف",
"price": 72.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه رومى داير قرص وزن - موقوف",
"Product_EN": null,
"Product_Id": "00007835 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2279,
"name": "باربيكان مشروب شعير اناناس زجاج 330 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باربيكان مشروب شعير اناناس زجاج 330 مل",
"Product_EN": null,
"Product_Id": "00007836 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2280,
"name": "باربيكان مشروب شعير تفاح زجاج 330 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باربيكان مشروب شعير تفاح زجاج 330 مل",
"Product_EN": null,
"Product_Id": "00007837 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2281,
"name": "باربيكان مشروب شعير خوخ زجاج330 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باربيكان مشروب شعير خوخ زجاج330 مل",
"Product_EN": null,
"Product_Id": "00007838 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2282,
"name": "باربيكان مشروب شعير رمان زجاج 330 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باربيكان مشروب شعير رمان زجاج 330 مل",
"Product_EN": null,
"Product_Id": "00007839 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2283,
"name": "زاهر كافى - شاى بالحليب",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - شاى بالحليب",
"Product_EN": null,
"Product_Id": "00007840 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2284,
"name": "زاهر كافى - قهوة تركى بالبندق",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - قهوة تركى بالبندق",
"Product_EN": null,
"Product_Id": "00007841 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2285,
"name": "زاهر كافى - اعشاب متنوعة",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - اعشاب متنوعة",
"Product_EN": null,
"Product_Id": "00007842 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2286,
"name": "زجاجة بلاستيك فارغة كبير 1 لتر",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زجاجة بلاستيك فارغة كبير 1 لتر",
"Product_EN": null,
"Product_Id": "00007843 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2287,
"name": "زاهر كافى - حليب ساخن كوب",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - حليب ساخن كوب",
"Product_EN": null,
"Product_Id": "00007844 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2288,
"name": "شيبسى شطه وليمون 8 ج 133 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى شطه وليمون 8 ج 133 جم",
"Product_EN": null,
"Product_Id": "00007845 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2289,
"name": "زاهر كافى - عصير ليمون 250 مل - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير ليمون 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007846 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2290,
"name": "كادبورى شوكولاتة بابلى مينى 204 جم - كيس",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى شوكولاتة بابلى مينى 204 جم - كيس",
"Product_EN": "Cadbury Chocolate Bubbly Mini 204 gm - Sachet",
"Product_Id": "00007847 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2291,
"name": "كادبورى شوكولاتة اوريو مينى 188 جم - كيس",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى شوكولاتة اوريو مينى 188 جم - كيس",
"Product_EN": "Cadbury OREO Chocolate Mini 188 gm - Sachet",
"Product_Id": "00007848 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2292,
"name": "زاهر كافى - عصير ليمون نعناع 250 مل - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير ليمون نعناع 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007849 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2293,
"name": "عطاشة عصير جوافة 250 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "عطاشة عصير جوافة 250 مل",
"Product_EN": "Atasha Guava Juice 250 ml ",
"Product_Id": "00007850 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2294,
"name": "عطاشة عصير برتقال 250 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "عطاشة عصير برتقال 250 مل",
"Product_EN": "Atasha Orange Juice 250 ml ",
"Product_Id": "00007851 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2295,
"name": "زاهر كافى - عصير موز 250 مل - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير موز 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007852 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2296,
"name": "زاهر كافى - عصير تمر 250 مل - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير تمر 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007853 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2297,
"name": "عطاشة عصير مانجو 250 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "عطاشة عصير مانجو 250 مل",
"Product_EN": "Atasha Mango Juice 250 ml ",
"Product_Id": "00007854 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2298,
"name": "زاهر كافى - عصير كيوى 250 مل - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير كيوى 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007855 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2299,
"name": "زاهر كافى - عصير تفاح 250 مل - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير تفاح 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007856 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2300,
"name": "زاهر كافى - عصير خوخ 250 مل - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير خوخ 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007857 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2301,
"name": "زاهر كافى - عصير اناناس 250 مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير اناناس 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007858 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2302,
"name": "زاهرعصير كوكتيل 250 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهرعصير كوكتيل 250 مل",
"Product_EN": null,
"Product_Id": "00007859 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2303,
"name": "زاهر كافى - عصير بوريو 250 مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير بوريو 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007861 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2304,
"name": "زاهر كافى- ميلك شيك شيكولاتة 250مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى- ميلك شيك شيكولاتة 250مل - موقوف",
"Product_EN": null,
"Product_Id": "00007862 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2305,
"name": "زاهر كافى - ميلك شيك فانليا 250 مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك فانليا 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007863 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2306,
"name": "زاهر كافى - ميلك شيك مانجو 250 مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك مانجو 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007864 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2307,
"name": "زاهر كافى - ميلك شيك فراولة 250 مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك فراولة 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007865 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2308,
"name": "زاهر كافى - ميلك شيك توت 250 مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك توت 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007866 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2309,
"name": "زاهر كافى - ميلك شيك موكا 250 مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - ميلك شيك موكا 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007867 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2310,
"name": "زاهر كافى - عصير زبادى فواكهة 250 مل - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير زبادى فواكهة 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007868 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2311,
"name": "زاهر كافى - عصير زبادى عسل 250 مل - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير زبادى عسل 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007869 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2312,
"name": "زاهرعصير زبادى توت 250 مل",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهرعصير زبادى توت 250 مل",
"Product_EN": null,
"Product_Id": "00007870 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2313,
"name": "برسيل مسحوق بودر ابيض 2.500 ك",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق بودر ابيض 2.500 ك",
"Product_EN": null,
"Product_Id": "00007872 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2314,
"name": "برسيل مسحوق اوتوماتيك ابيض 4 كجم",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اوتوماتيك ابيض 4 كجم",
"Product_EN": null,
"Product_Id": "00007873 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2315,
"name": "سكيتلز حلوى بنكهة التوت البرى 146 جم",
"price": 34.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سكيتلز حلوى بنكهة التوت البرى 146 جم",
"Product_EN": "Skittles Cranberry Candy 146 gm",
"Product_Id": "00007874 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2316,
"name": "سكيتلز حلوى بنكهة التوت البرى 38 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سكيتلز حلوى بنكهة التوت البرى 38 جم",
"Product_EN": "Skittles Cranberry Candy 38 gm",
"Product_Id": "00007875 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2317,
"name": "اكسترا لبان فراولة 16 ق 27 جم",
"price": 19.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان فراولة 16 ق 27 جم",
"Product_EN": "Extra Gum Strawberry 16 Pieces 27 gm",
"Product_Id": "00007876 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2318,
"name": "اكسترا لبان نعناع 16 ق 27 جم",
"price": 19.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان نعناع 16 ق 27 جم",
"Product_EN": "Extra Gum Mint 16 Pieces 27 gm",
"Product_Id": "00007877 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2319,
"name": "اكسترا لبان فراولة 10 ق 14 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان فراولة 10 ق 14 جم",
"Product_EN": "Extra Gum Strawberry 10 Pieces 14 gm",
"Product_Id": "00007878 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2320,
"name": "اكسترا لبان الفاكهة بالنعناع 10 ق 14 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان الفاكهة بالنعناع 10 ق 14 جم",
"Product_EN": "Extra Gum Fruit With Mint 10 Pieces 14 gm",
"Product_Id": "00007879 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2321,
"name": "اكسترا لبان نعناع 10 ق 14 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان نعناع 10 ق 14 جم",
"Product_EN": "Extra Gum Mint 10 Pieces 14 gm",
"Product_Id": "00007880 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2322,
"name": "جلاكسى فلوتس شوكولاتة دارك 22.5 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى فلوتس شوكولاتة دارك 22.5 جم",
"Product_EN": "Galaxy Flutes Chocolate Dark 22.5 gm",
"Product_Id": "00007881 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2323,
"name": "ايزى كلين سائل غسيل ايدى 450 مل - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايزى كلين سائل غسيل ايدى 450 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007882 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2324,
"name": "برسيل مسحوق اتوماتيك 4 كجم",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك 4 كجم",
"Product_EN": "Persil Powder Automatic 4 kg",
"Product_Id": "00007883 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2325,
"name": "زجاجة بلاستيك فارغة صغير",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زجاجة بلاستيك فارغة صغير",
"Product_EN": null,
"Product_Id": "00007884 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2326,
"name": "نستله بيور لايف مياه فواره زجاج 240 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله بيور لايف مياه فواره زجاج 240 مل",
"Product_EN": "Nestle Pure Life Sparkling Water Glass 240 ml",
"Product_Id": "00007885 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2327,
"name": "كيت كات شانكى شوكولاتة كوكيز بالكريمه 40 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شانكى شوكولاتة كوكيز بالكريمه 40 جم",
"Product_EN": "Kit Kat Chunky Chocolate Cookies Cream 40 gm",
"Product_Id": "00007886 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2328,
"name": "حلوانى حلاوة 575 جم + جبنة دومتى 250 جم",
"price": 33.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوة 575 جم + جبنة دومتى 250 جم",
"Product_EN": "Halwani Halawa 575 gm + Domty Cheese 250",
"Product_Id": "00007887 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2329,
"name": "فيتنيس مقرمشات شوفان بالجبنة و الثوم 36 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتنيس مقرمشات شوفان بالجبنة و الثوم 36 جم",
"Product_EN": null,
"Product_Id": "00007888 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2330,
"name": "بابلى اوريو شيكولاتة 43 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بابلى اوريو شيكولاتة 43 جم",
"Product_EN": "Bubbly OREO Chocolate 43 gm",
"Product_Id": "00007889 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2331,
"name": "زاهر كافى - عصير اوريو 250 مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير اوريو 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007890 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2332,
"name": "فيتراك مربى تين 245 جم عرض سعر - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 245 جم عرض سعر - موقوف",
"Product_EN": null,
"Product_Id": "00007891 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2333,
"name": "فيتراك مربى فراوله 245 جم عرض - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 245 جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007892 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2334,
"name": "فيتراك مربى مشمش 245 جم عرض سعر - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 245 جم عرض سعر - موقوف",
"Product_EN": null,
"Product_Id": "00007893 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2335,
"name": "فيتراك مربى فراولة 380 جم عرض - موقوف",
"price": 14.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراولة 380 جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007894 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2336,
"name": "فيتراك مربى توت 430 جم عرض - موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى توت 430 جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007895 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2337,
"name": "الورده الذهبيه مشروم شرائح 400 جم - موقوف",
"price": 13.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الورده الذهبيه مشروم شرائح 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007896 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2338,
"name": "الورده الذهبيه ذره حلوه 340 جم - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الورده الذهبيه ذره حلوه 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007897 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2339,
"name": "الورده الذهبيه مشروم شرائح 800 جم - موقوف",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الورده الذهبيه مشروم شرائح 800 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007898 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2340,
"name": "دومتى جبنه فيتا 250 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا 250 جم",
"Product_EN": "Domty Feta Cheese 250 gm",
"Product_Id": "00007899 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2341,
"name": "مراعى حليب موز 200 مل - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مراعى حليب موز 200 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007900 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2342,
"name": "بيتى عصير جوافه 235 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيتى عصير جوافه 235 مل",
"Product_EN": "Beyti Guava Juice 235 ml",
"Product_Id": "00007901 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2343,
"name": "بيتى عصير يوسفى 235 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير يوسفى 235 مل",
"Product_EN": "Beyti Tangerine Juice 235 ml",
"Product_Id": "00007902 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2344,
"name": "بيتى عصير مانجو 235 مل - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو 235 مل - موقوف",
"Product_EN": "Beyti Mango juice 235 ml",
"Product_Id": "00007903 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2345,
"name": "ليون قهوة فرنسية بالبندق 200 جم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "ليون قهوة فرنسية بالبندق 200 جم",
"Product_EN": null,
"Product_Id": "00007904 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2346,
"name": "ليون قهوة تركى محوج غامق 200 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "ليون قهوة تركى محوج غامق 200 جم",
"Product_EN": null,
"Product_Id": "00007905 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2347,
"name": "زاهر زبادو فراولة 250 مل",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر زبادو فراولة 250 مل",
"Product_EN": null,
"Product_Id": "00007906 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2348,
"name": "ريكسونا رجالى اكسترا 50 مل - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا رجالى اكسترا 50 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007907 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2349,
"name": "ريكسونا حريمى اكسترا 50 مل - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا حريمى اكسترا 50 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007908 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2350,
"name": "كلير شامبو رجالى 360 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو رجالى 360 مل",
"Product_EN": "Clear Shampoo For Men 360 ml",
"Product_Id": "00007909 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2351,
"name": "كلير شامبو حريمى 360 مل",
"price": 48.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو حريمى 360 مل",
"Product_EN": "Clear Shampoo For Women 360 ml",
"Product_Id": "00007910 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2352,
"name": "كلير شامبو رجالى 600 مل",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو رجالى 600 مل",
"Product_EN": "Clear Shampoo For Men 360 ml",
"Product_Id": "00007911 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2353,
"name": "كلير شامبو حريمى 600 مل",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو حريمى 600 مل",
"Product_EN": "Clear Shampoo For Women 600 ml",
"Product_Id": "00007912 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2354,
"name": "دوف بلسم ضد تساقط الشعر 350 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف بلسم ضد تساقط الشعر 350 مل",
"Product_EN": "Dove Conditioner, Hair Fall 350 ml",
"Product_Id": "00007913 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2355,
"name": "دوف بلسم اصلاح مكثف 350 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف بلسم اصلاح مكثف 350 مل",
"Product_EN": "Dove Intensive Repair Conditioner 350 ml",
"Product_Id": "00007914 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2356,
"name": "دوف شامبو عنايه يوميه 200 مل - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو عنايه يوميه 200 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007915 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2357,
"name": "دوف ضد التلف 200 مل - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف ضد التلف 200 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007916 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2358,
"name": "دوف شامبو الزيوت المغذية للعناية بالشعر 200 مل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو الزيوت المغذية للعناية بالشعر 200 مل",
"Product_EN": "Dove Shampoo Nourishment Oil Care 200 ml",
"Product_Id": "00007917 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2359,
"name": "دوف شامبو بزيت مغذي 600 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو بزيت مغذي 600 مل",
"Product_EN": "Dove Shampoo Nourishing Oil 600ml",
"Product_Id": "00007918 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2360,
"name": "صانسيلك بلسم 350 مل",
"price": 36.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك بلسم 350 مل",
"Product_EN": "Sunsilk Conditioner 350 ml",
"Product_Id": "00007919 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2361,
"name": "صانسيلك بلسم بزيت اللوز 350 مل",
"price": 36.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك بلسم بزيت اللوز 350 مل",
"Product_EN": "Sunsilk Conditioner Oil Almond 350 ml",
"Product_Id": "00007920 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2362,
"name": "صان سيلك شامبو لمعان 350 مل - موقوف",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صان سيلك شامبو لمعان 350 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007921 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2363,
"name": "صان سيلك شامبو بزيت جوز الهند 350 مل - موقوف",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صان سيلك شامبو بزيت جوز الهند 350 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007922 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2364,
"name": "صن سيلك تجديد فورى 350 ملى - موقوف",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صن سيلك تجديد فورى 350 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00007923 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2365,
"name": "صن سيلك شامبو جوز الهند 350 مل - موقوف",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صن سيلك شامبو جوز الهند 350 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007924 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2366,
"name": "كامى شاور فراوله 1 لتر 10% عرض - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامى شاور فراوله 1 لتر 10% عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007925 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2367,
"name": "كامي شاور اناقه 1 لتر 10% عرض - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامي شاور اناقه 1 لتر 10% عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007926 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2368,
"name": "دوف منظف يدين 450 مل 10% عرض - موقوف",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف منظف يدين 450 مل 10% عرض - موقوف",
"Product_EN": null,
"Product_Id": "00007927 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2369,
"name": "دوف شاور 250 مل - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شاور 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007928 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2370,
"name": "لوكس سائل غسيل ايدى لمسه ناعمه 500 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس سائل غسيل ايدى لمسه ناعمه 500 مل",
"Product_EN": "LUX Hand Wash Liquid Soft Touch 500 ml",
"Product_Id": "00007929 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2371,
"name": "لوكس شاور لمسة ناعمه 500 مل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس شاور لمسة ناعمه 500 مل",
"Product_EN": "LUX Shower Soft Touch 500 ml",
"Product_Id": "00007930 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2372,
"name": "ليبتون شاى اخضر عادى بدون مراره 25 فتله",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر عادى بدون مراره 25 فتله",
"Product_EN": "Lipton Green Tea Regular Without Bitternessm25Bags",
"Product_Id": "00007931 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2373,
"name": "ليبتون شاى خرز + معلقه 250 جم - موقوف",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى خرز + معلقه 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00007932 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2374,
"name": "دوف ضد التساقط 200 مل - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف ضد التساقط 200 مل - موقوف",
"Product_EN": null,
"Product_Id": "00007934 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2375,
"name": "ماجي خلطة الكفته 40 جم",
"price": 38.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجي خلطة الكفته 40 جم",
"Product_EN": null,
"Product_Id": "00007935 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2376,
"name": "اريال مسحوق يدوى داونى 300 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى داونى 300 جم",
"Product_EN": null,
"Product_Id": "00007936 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2377,
"name": "شيف كورند بيف 340 جم",
"price": 45.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شيف كورند بيف 340 جم",
"Product_EN": "Chef's Corned Beef 340 gm ",
"Product_Id": "00007937 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2378,
"name": "زاهر ديزيرت - تشيز انواع",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - تشيز انواع",
"Product_EN": null,
"Product_Id": "00007938 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2379,
"name": "زاهر ديزيرت - مثلث انواع",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - مثلث انواع",
"Product_EN": null,
"Product_Id": "00007939 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2380,
"name": "زاهر ديزيرت - فادج نوتيلا مثلث",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - فادج نوتيلا مثلث",
"Product_EN": null,
"Product_Id": "00007940 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2381,
"name": "زاهر ديزيرت - ريد فيلفت مثلث",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - ريد فيلفت مثلث",
"Product_EN": null,
"Product_Id": "00007941 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2382,
"name": "زاهر ديزيرت - كاروت كيك مثلث",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - كاروت كيك مثلث",
"Product_EN": null,
"Product_Id": "00007942 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2383,
"name": "زاهر ديزيرت - مالتيزرز مثلث \/ كوب - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - مالتيزرز مثلث \/ كوب - موقوف",
"Product_EN": null,
"Product_Id": "00007943 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2384,
"name": "زاهر ديزيرت - فلوتس مثلث \/ كوب - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - فلوتس مثلث \/ كوب - موقوف",
"Product_EN": null,
"Product_Id": "00007944 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2385,
"name": "زاهر ديزيرت - اوريو مثلث \/ كوب - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - اوريو مثلث \/ كوب - موقوف",
"Product_EN": null,
"Product_Id": "00007945 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2386,
"name": "زاهر ديزيرت - مارى كيك مثلث - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - مارى كيك مثلث - موقوف",
"Product_EN": null,
"Product_Id": "00007946 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2387,
"name": "زاهر ديزيرت - موس مثلث - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - موس مثلث - موقوف",
"Product_EN": null,
"Product_Id": "00007947 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2388,
"name": "زاهر ديزيرت - طاجن كرسبى صغير",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - طاجن كرسبى صغير",
"Product_EN": null,
"Product_Id": "00007948 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2389,
"name": "زاهر ديزيرت - طاجن بندق صغير",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - طاجن بندق صغير",
"Product_EN": null,
"Product_Id": "00007949 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2390,
"name": "زاهر ديزيرت - طاجن كرسبى كبير",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - طاجن كرسبى كبير",
"Product_EN": null,
"Product_Id": "00007950 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2391,
"name": "زاهر ديزيرت - طاجن بندق كبير",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - طاجن بندق كبير",
"Product_EN": null,
"Product_Id": "00007951 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2392,
"name": "زاهر ديزيرت - تارتليت",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - تارتليت",
"Product_EN": null,
"Product_Id": "00007952 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2393,
"name": "زاهر ديزيرت - ديسباسيتو بيفترول",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - ديسباسيتو بيفترول",
"Product_EN": null,
"Product_Id": "00007953 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2394,
"name": "زاهر ديزيرت - كب ديزيرت انواع",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - كب ديزيرت انواع",
"Product_EN": null,
"Product_Id": "00007954 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2395,
"name": "زاهر ديزيرت - كنافة مانجو كوب - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - كنافة مانجو كوب - موقوف",
"Product_EN": null,
"Product_Id": "00007955 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2396,
"name": "زاهر ديزيرت - مولتن كيك سادة",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:36",
"updated_at": "2021-11-01 19:45:36",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - مولتن كيك سادة",
"Product_EN": null,
"Product_Id": "00007956 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2397,
"name": "زاهر ديزيرت - مولتن كيك نوتيلا \/ وايت \/ شيكولاتة",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - مولتن كيك نوتيلا \/ وايت \/ شيكولاتة",
"Product_EN": null,
"Product_Id": "00007957 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2398,
"name": "زاهر ديزيرت - براونيز",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - براونيز",
"Product_EN": null,
"Product_Id": "00007958 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2399,
"name": "برانش ويتش جبنة بيضاء",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش ويتش جبنة بيضاء",
"Product_EN": null,
"Product_Id": "00007959 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2400,
"name": "توتس فشار بطعم الملح والخل",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توتس فشار بطعم الملح والخل",
"Product_EN": null,
"Product_Id": "00007960 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2401,
"name": "توتس فشار بطعم الطماطم المتبله",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توتس فشار بطعم الطماطم المتبله",
"Product_EN": null,
"Product_Id": "00007961 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2402,
"name": "توتس فشار بطعم الزبده والملح",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توتس فشار بطعم الزبده والملح",
"Product_EN": null,
"Product_Id": "00007962 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2403,
"name": "توتس فشار بطعم الهالبينو والليمون",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توتس فشار بطعم الهالبينو والليمون",
"Product_EN": null,
"Product_Id": "00007963 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2404,
"name": "توتس فشار بطعم الجبنه الناتشوز",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توتس فشار بطعم الجبنه الناتشوز",
"Product_EN": null,
"Product_Id": "00007964 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2405,
"name": "توتس فشار بطعم البيتزا",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توتس فشار بطعم البيتزا",
"Product_EN": null,
"Product_Id": "00007965 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2406,
"name": "جليد معطر جو عنبر وعود 269 ملى - موقوف",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد معطر جو عنبر وعود 269 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00007966 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2407,
"name": "جليد معطر جو لافندر و فانيليا 269 ملى - موقوف",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد معطر جو لافندر و فانيليا 269 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00007967 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2408,
"name": "عافيه زيت عباد 1 لتر + طقم توزيع - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت عباد 1 لتر + طقم توزيع - موقوف",
"Product_EN": null,
"Product_Id": "00007968 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2409,
"name": "زاهر ديزيرت - بيفىترول بندق كب",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - بيفىترول بندق كب",
"Product_EN": null,
"Product_Id": "00007970 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2410,
"name": "كافى ليون قهوة سادة وزن",
"price": 137.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كافى ليون قهوة سادة وزن",
"Product_EN": null,
"Product_Id": "00007971 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2411,
"name": "زاهر جبنه كيرى بالبسطرمه وزن",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه كيرى بالبسطرمه وزن",
"Product_EN": "Zaher Creamy Cheese w Pastirma - Scalable",
"Product_Id": "00007972 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2412,
"name": "زاهر جبنه كيرى بالريكفورد وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه كيرى بالريكفورد وزن",
"Product_EN": "Zaher Creamy Cheese w Roquefort Cheese - Scalable",
"Product_Id": "00007973 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2413,
"name": "زاهر جبنه كيرى بحبه البركه - زعتر - بابريكا . وزن",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه كيرى بحبه البركه - زعتر - بابريكا . وزن",
"Product_EN": "Zaher Creamy Cheese w Nigella Sativa - Scalable",
"Product_Id": "00007974 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2414,
"name": "الطحان تمر سعودى فاخر رطب 500 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان تمر سعودى فاخر رطب 500 جم",
"Product_EN": null,
"Product_Id": "00007975 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2415,
"name": "الطحان تمر فاخر اصالة زمان 1 ك",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان تمر فاخر اصالة زمان 1 ك",
"Product_EN": null,
"Product_Id": "00007976 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2416,
"name": "ديتول صابون 85 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون 85 جم",
"Product_EN": null,
"Product_Id": "00007977 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2417,
"name": "ديتول صابون اصلى 85 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون اصلى 85 جم",
"Product_EN": null,
"Product_Id": "00007978 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2418,
"name": "ديتول صابون كول 125 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون كول 125 جم",
"Product_EN": null,
"Product_Id": "00007979 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2419,
"name": "ديتول صابون اصلى 125 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون اصلى 125 جم",
"Product_EN": null,
"Product_Id": "00007980 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2420,
"name": "فانش سايل منظف 100 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش سايل منظف 100 مل",
"Product_EN": null,
"Product_Id": "00007981 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2421,
"name": "ديتول منظف اسطح بخاخ 500 مل * 2 ق",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول منظف اسطح بخاخ 500 مل * 2 ق",
"Product_EN": null,
"Product_Id": "00007982 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2422,
"name": "فورتينا عصير كوكتيل 1 لتر - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فورتينا عصير كوكتيل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00007983 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2423,
"name": "زاهر سمنه جاموسى طبيعي برطمان 3.5 كجم",
"price": 490,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمنه جاموسى طبيعي برطمان 3.5 كجم",
"Product_EN": "Zaher Natural Buffalo Ghee Jar 3.5 Kg ",
"Product_Id": "00007984 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2424,
"name": "لمار عصير مانجو طبيعى 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير مانجو طبيعى 1 لتر",
"Product_EN": "Lamar Mango Juice 1 L",
"Product_Id": "00007985 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2425,
"name": "دولفين تونه قطعة واحده 200 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونه قطعة واحده 200 جم",
"Product_EN": "Dolphin Tuna 1 Piece 200 gm",
"Product_Id": "00007986 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2426,
"name": "دولفين جولد تونه شرائح بارد 170 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين جولد تونه شرائح بارد 170 جم",
"Product_EN": "Dolphin Tuna Gold Sliced Cold 170 gm",
"Product_Id": "00007987 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2427,
"name": "دولفين جولد تونه شرائح حار 170 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين جولد تونه شرائح حار 170 جم",
"Product_EN": "Dolphin Tuna Gold Sliced Hot 170 gm",
"Product_Id": "00007988 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2428,
"name": "قهوة كوفي بريك كوفي ميكس 2*1 - 12جم ",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قهوة كوفي بريك كوفي ميكس 2*1 - 12جم ",
"Product_EN": "Coffee Break 2 In 1 Coffee Mix 12 gm",
"Product_Id": "00007989 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2429,
"name": "ظل الياسمين عيش سورى 5 قطعه",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ظل الياسمين عيش سورى 5 قطعه",
"Product_EN": null,
"Product_Id": "00007990 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2430,
"name": "زاهرقاعده اوفال 6 اونز - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهرقاعده اوفال 6 اونز - موقوف",
"Product_EN": null,
"Product_Id": "00007991 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2431,
"name": "زاهر غطاء اوفال 4 - 6 اونز - موقوف",
"price": 0.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر غطاء اوفال 4 - 6 اونز - موقوف",
"Product_EN": null,
"Product_Id": "00007992 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2432,
"name": "زاهر ديزيرت - اكلير مكسرات & كرسبى 2 ق",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - اكلير مكسرات & كرسبى 2 ق",
"Product_EN": null,
"Product_Id": "00007993 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2433,
"name": "يوجو مشروب زبادى بانوفى فاكهة 220 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "يوجو مشروب زبادى بانوفى فاكهة 220 مل",
"Product_EN": "Yogo Banoffee Yogurt Drink Fruit 220 ml",
"Product_Id": "00007994 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2434,
"name": "كوكاكولا بلاستيك 500 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا بلاستيك 500 مل",
"Product_EN": "Coca-Cola Plastic 500 ml",
"Product_Id": "00007995 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2435,
"name": "دومتى جبنه كريمى لايت 400 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه كريمى لايت 400 جم",
"Product_EN": "Domty Light Creamy Cheese 400 gm",
"Product_Id": "00007996 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2436,
"name": "دومتى جبنه كريمى زيتون400 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه كريمى زيتون400 جم",
"Product_EN": "Domty Creamy Cheese Olives 400 gm",
"Product_Id": "00007997 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2437,
"name": "دومتى جبنه كريمى ساده 400 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه كريمى ساده 400 جم",
"Product_EN": "Domty Plain Creamy Cheese 400 gm",
"Product_Id": "00007998 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2438,
"name": "دومتى جبنه كريمى بابريكا 400 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه كريمى بابريكا 400 جم",
"Product_EN": "Domty Creamy Cheese Paprika 400 gm",
"Product_Id": "00007999 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2439,
"name": "سنيكرز شيكولاتة دارك 40 جم",
"price": 165,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سنيكرز شيكولاتة دارك 40 جم",
"Product_EN": "Snickers Chocolate Dark 40 gm",
"Product_Id": "00008000 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2440,
"name": "زاهر عصير مانحو جركن 2 ك - موقوف",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير مانحو جركن 2 ك - موقوف",
"Product_EN": null,
"Product_Id": "00008001 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2441,
"name": "عطاشة عصير فراولة جركن 2 لتر",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "عطاشة عصير فراولة جركن 2 لتر",
"Product_EN": "Atasha Stawberry Juice Jerrycan 2 L ",
"Product_Id": "00008002 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2442,
"name": "طازة مش وزن - موقوف",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة مش وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008004 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2443,
"name": "زاهر عسل اسود برطمان 800 جم",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل اسود برطمان 800 جم",
"Product_EN": "Zaher Molasses 800 g",
"Product_Id": "00008005 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2444,
"name": "زاهر سمن جاموسى برطمان 2.25 ك - موقوف",
"price": 305,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمن جاموسى برطمان 2.25 ك - موقوف",
"Product_EN": null,
"Product_Id": "00008006 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2445,
"name": "زاهر سمن بقرى برطمان 2.25 ك - موقوف",
"price": 250,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمن بقرى برطمان 2.25 ك - موقوف",
"Product_EN": null,
"Product_Id": "00008007 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2446,
"name": "زاهر سمنه بقرى طبيعي برطمان 400 جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمنه بقرى طبيعي برطمان 400 جم",
"Product_EN": "Zaher Natural Cow Ghee Jar 400 g",
"Product_Id": "00008008 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2447,
"name": "زاهر حلويات ارز باللبن بسكويت لوتس وسط 190 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات ارز باللبن بسكويت لوتس وسط 190 جم",
"Product_EN": "Zaher Rice Pudding w Lotus Biscuit 190 g",
"Product_Id": "00008009 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2448,
"name": "هولز ليمون اخضر كبير 9 ق",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولز ليمون اخضر كبير 9 ق",
"Product_EN": "Halls Lemon Green Large 9 Pieces",
"Product_Id": "00008010 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2449,
"name": "زاهر - اكلير مكسرات 1 ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - اكلير مكسرات 1 ق",
"Product_EN": null,
"Product_Id": "00008011 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2450,
"name": "الضحى دقيق وزن - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى دقيق وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008013 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2451,
"name": "السلام بسطرمة فاكيوم وزن - موقوف",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "السلام بسطرمة فاكيوم وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008014 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2452,
"name": "زاهر مخبوزات بقسماط ساده 400 جم - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات بقسماط ساده 400 جم - موقوف",
"Product_EN": "Zaher Plain Grissini 400 g",
"Product_Id": "00008015 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2453,
"name": "زاهر مخبوزات بقسماط بالسمسم 400 جم - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات بقسماط بالسمسم 400 جم - موقوف",
"Product_EN": "Zaher Grissini w Sesame 400 g",
"Product_Id": "00008016 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2454,
"name": "زاهر مخبوزات بقسماط حبه البركه 400 جم - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات بقسماط حبه البركه 400 جم - موقوف",
"Product_EN": "Zaher Grissini w Nigella Sativa 400 g",
"Product_Id": "00008017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2455,
"name": "زاهر مخبوزات بقسماط سن 400 جم - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات بقسماط سن 400 جم - موقوف",
"Product_EN": "Zaher Brown Grissini 400 g",
"Product_Id": "00008018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2456,
"name": "زاهر مخبوزات باتون سالية 400 جم - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات باتون سالية 400 جم - موقوف",
"Product_EN": "Zaher Plain Baton Sale 400 g",
"Product_Id": "00008019 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2457,
"name": "بونجورنو كوفى ميكس بندق ظرف 12 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كوفى ميكس بندق ظرف 12 جم",
"Product_EN": "Bonjorno Coffee Mix Hazelnut Sachet 12 gm",
"Product_Id": "00008020 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2458,
"name": "بيبسى بلاك ليمون كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى بلاك ليمون كان 330 مل",
"Product_EN": null,
"Product_Id": "00008021 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2459,
"name": "زاهر سمنه جاموسى طبيعي برطمان 400 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمنه جاموسى طبيعي برطمان 400 جم",
"Product_EN": "Zaher Natural Buffalo Ghee Jar 400 g",
"Product_Id": "00008022 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2460,
"name": "زاهر سمنه بقرى طبيعي برطمان 3.5 كجم",
"price": 400,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمنه بقرى طبيعي برطمان 3.5 كجم",
"Product_EN": "Zaher Natural Cow Ghee Jar 3.5 Kg ",
"Product_Id": "00008023 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2461,
"name": "شيبسى بلايز جبنه وفلفل 66 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى بلايز جبنه وفلفل 66 جم",
"Product_EN": null,
"Product_Id": "00008024 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2462,
"name": "شيبسى ملح جامبو 138 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى ملح جامبو 138 جم",
"Product_EN": null,
"Product_Id": "00008025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2463,
"name": "كوكاكولا مشروب طاقه 250 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا مشروب طاقه 250 مل",
"Product_EN": "Coca-Cola Energy Drink 250 ml",
"Product_Id": "00008027 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2464,
"name": "زاهر انجلش كيك ميكس - موقوف",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر انجلش كيك ميكس - موقوف",
"Product_EN": "Zaher English Cake Mix",
"Product_Id": "00008028 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2465,
"name": "برسيل جيل 2.6ك عرض+بريل 600 جم - موقوف",
"price": 79,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جيل 2.6ك عرض+بريل 600 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2466,
"name": "دانون زبادى فروتس فراولة 105 جم 4ق عرض وفر - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى فروتس فراولة 105 جم 4ق عرض وفر - موقوف",
"Product_EN": null,
"Product_Id": "00008030 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2467,
"name": "زاهر جبنه موزاريلا طبيعى 500 جمم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه موزاريلا طبيعى 500 جمم",
"Product_EN": "Zaher Nature Mozzarella Cheese 500 g",
"Product_Id": "00008031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2468,
"name": "زاهر جبنه موزاريلا طبيعى 250 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه موزاريلا طبيعى 250 جم",
"Product_EN": "Zaher Nature Mozzarella Cheese 250 g",
"Product_Id": "00008032 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2469,
"name": "زاهر ديزيرت - كوكيز",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - كوكيز",
"Product_EN": null,
"Product_Id": "00008033 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2470,
"name": "بسكريم بيج باك عادى",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكريم بيج باك عادى",
"Product_EN": null,
"Product_Id": "00008034 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2471,
"name": "ديتول صابون كوول 165 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون كوول 165 جم",
"Product_EN": null,
"Product_Id": "00008035 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2472,
"name": "ديتول صابون عناية بالبشرة 165 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون عناية بالبشرة 165 جم",
"Product_EN": null,
"Product_Id": "00008036 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2473,
"name": "ديتول صابون كوول 125 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون كوول 125 جم",
"Product_EN": null,
"Product_Id": "00008037 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2474,
"name": "هاى جين حماية مزدوجة 20 منديل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاى جين حماية مزدوجة 20 منديل",
"Product_EN": null,
"Product_Id": "00008038 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2475,
"name": "زاهر بيتى فور شيكولاته 250 جم - علبه - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتى فور شيكولاته 250 جم - علبه - موقوف",
"Product_EN": "Zaher Petit Four w Chocolate 250 g",
"Product_Id": "00008039 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2476,
"name": "كوفى بريك ميكس 2*1 + مج عرض - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوفى بريك ميكس 2*1 + مج عرض - موقوف",
"Product_EN": null,
"Product_Id": "00008040 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2477,
"name": "دولفين تونه قطع دايت 170 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونه قطع دايت 170 جم",
"Product_EN": "Sunshine Tuna Diet Cold 185 gm",
"Product_Id": "00008041 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2478,
"name": "دولفين تونه قطع بارد 185 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونه قطع بارد 185 جم",
"Product_EN": "Sunshine Tuna Diet 185 gm",
"Product_Id": "00008042 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2479,
"name": "زاهر مخبوزات منين ساده لوكس 250 جم - علبه- موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات منين ساده لوكس 250 جم - علبه- موقوف",
"Product_EN": "Zaher Plain Menin 250 g",
"Product_Id": "00008043 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2480,
"name": "زاهر مخبوزات منين عجوه لوكس 250 جم - علبه موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات منين عجوه لوكس 250 جم - علبه موقوف",
"Product_EN": "Zaher Ajwa Menin 250 g",
"Product_Id": "00008044 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2481,
"name": "زاهر مخبوزات منين ملبن لوكس 250 جم - علبه - موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات منين ملبن لوكس 250 جم - علبه - موقوف",
"Product_EN": "Zaher Malban Menin 250 g",
"Product_Id": "00008045 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2482,
"name": "زاهر مخبوزات منين شمر لوكس 250 جم - علبه - موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات منين شمر لوكس 250 جم - علبه - موقوف",
"Product_EN": "Zaher Fennel Menin 250 g",
"Product_Id": "00008046 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2483,
"name": "كيت كات شانكى شوكولاتة بيضاء 40 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شانكى شوكولاتة بيضاء 40 جم",
"Product_EN": "Kit Kat Chunky White Chocolate 40 gm",
"Product_Id": "00008048 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2484,
"name": "برسيل مسحوق منخفض الرغوة 8 كجم - موقوف",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق منخفض الرغوة 8 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008049 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2485,
"name": "ليون كافية قهوة بندق وزن",
"price": 320,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "ليون كافية قهوة بندق وزن",
"Product_EN": null,
"Product_Id": "00008050 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2486,
"name": "عبوه 24 اونز سيكيور",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "عبوه 24 اونز سيكيور",
"Product_EN": null,
"Product_Id": "00008051 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2487,
"name": "عبوه مستديره 360 مل",
"price": 1.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "عبوه مستديره 360 مل",
"Product_EN": null,
"Product_Id": "00008052 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2488,
"name": "قاعده سوشى مقاس 5*22.50",
"price": 1.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "قاعده سوشى مقاس 5*22.50",
"Product_EN": null,
"Product_Id": "00008053 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2489,
"name": "غطاء سوشى مقاس 5*22.50",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "غطاء سوشى مقاس 5*22.50",
"Product_EN": null,
"Product_Id": "00008054 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2490,
"name": "قاعده شفاف 750 مل",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "قاعده شفاف 750 مل",
"Product_EN": null,
"Product_Id": "00008055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2491,
"name": "غطاء شفاف 750 مل",
"price": 0.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "غطاء شفاف 750 مل",
"Product_EN": null,
"Product_Id": "00008056 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2492,
"name": "زاهر عسل نحل ابيض برطمان 40 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل ابيض برطمان 40 جم",
"Product_EN": "Zaher Bee Honey Jar 40 g",
"Product_Id": "00008059 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2493,
"name": "زاهر عسل نحل نوارة برسيم برطمان 240 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل نوارة برسيم برطمان 240 جم",
"Product_EN": "Zaher Clover Blossom Honey 240 g",
"Product_Id": "00008060 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2494,
"name": "تودو كيك ماكس",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تودو كيك ماكس",
"Product_EN": null,
"Product_Id": "00008061 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2495,
"name": "تودو كيك ماكس فراولة",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تودو كيك ماكس فراولة",
"Product_EN": null,
"Product_Id": "00008062 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2496,
"name": "زاهر عسل نحل نوارة برسيم برطمان 490 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل نوارة برسيم برطمان 490 جم",
"Product_EN": "Zaher Clover Blossom Honey 490 g",
"Product_Id": "00008063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2497,
"name": "كيرى جبنة مثلثات كريمى 8 ق",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنة مثلثات كريمى 8 ق",
"Product_EN": "Kiri Creamy Triangle Cheese 8 Pieces",
"Product_Id": "00008064 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2498,
"name": "اريال مسحوق اتوماتيك لافندر 9 كجم",
"price": 247,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك لافندر 9 كجم",
"Product_EN": null,
"Product_Id": "00008065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2499,
"name": "زاهر عسل نحل نوارة برسيم برطمان 980 جم",
"price": 73,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل نوارة برسيم برطمان 980 جم",
"Product_EN": "Zaher Clover Blossom Honey 980 g",
"Product_Id": "00008066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2500,
"name": "شيبسى بلايز فراخ مشويه",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى بلايز فراخ مشويه",
"Product_EN": null,
"Product_Id": "00008067 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2501,
"name": "شيتوس يافس شطه مولعه",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس يافس شطه مولعه",
"Product_EN": null,
"Product_Id": "00008068 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2502,
"name": "رويال جبنه فلمنك وزن",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رويال جبنه فلمنك وزن",
"Product_EN": null,
"Product_Id": "00008069 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2503,
"name": "رويال جبنه جوده وزن",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رويال جبنه جوده وزن",
"Product_EN": null,
"Product_Id": "00008070 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2504,
"name": "يونايتد زيتون اخضر يونانى وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "يونايتد زيتون اخضر يونانى وزن",
"Product_EN": null,
"Product_Id": "00008071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2505,
"name": "يونايتد زيتون كلاماتا جامبو يونانى وزن",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "يونايتد زيتون كلاماتا جامبو يونانى وزن",
"Product_EN": null,
"Product_Id": "00008072 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2506,
"name": "يونايتد زيتون كلاماتا بيبى يونانى وزن",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "يونايتد زيتون كلاماتا بيبى يونانى وزن",
"Product_EN": null,
"Product_Id": "00008073 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2507,
"name": "امانه بلاست رول قمامه 20 كيس",
"price": 13.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "امانه بلاست رول قمامه 20 كيس",
"Product_EN": null,
"Product_Id": "00008074 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2508,
"name": "امانه بلاست رول ثلاجه صغير م 20*م35",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "امانه بلاست رول ثلاجه صغير م 20*م35",
"Product_EN": null,
"Product_Id": "00008075 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2509,
"name": "زاهر ديزيرت - تورتة م 24",
"price": 165,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - تورتة م 24",
"Product_EN": null,
"Product_Id": "00008076 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2510,
"name": "خدمة اطلب Otlop ج1",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 12,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 6,
"Subcategory": "ديليفرى",
"Product_AR": "خدمة اطلب Otlop ج1",
"Product_EN": null,
"Product_Id": "00008077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2511,
"name": "حواء مكرونة فرن 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حواء مكرونة فرن 400 جم",
"Product_EN": "Hawaa Penne Pasta 400 gm",
"Product_Id": "00008078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2512,
"name": "كريستال زيت عباد 900 مل _ موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت عباد 900 مل _ موقوف",
"Product_EN": null,
"Product_Id": "00008079 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2513,
"name": "زاهر عسل اسود برطمان 450 جم ",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل اسود برطمان 450 جم ",
"Product_EN": "Zaher Molasses 450 g",
"Product_Id": "00008080 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2514,
"name": "هاينز صلصه طماطم 360 جم عبوة 2 ق - عرض",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصه طماطم 360 جم عبوة 2 ق - عرض",
"Product_EN": "Heinz Tomato Sauce 360 gm 2 Pieces - Width",
"Product_Id": "00008081 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2515,
"name": "البوادي هارفست فول ساده 400 جرام",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادي هارفست فول ساده 400 جرام",
"Product_EN": null,
"Product_Id": "00008082 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2516,
"name": "امريكانا فول مدمس حار 400 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فول مدمس حار 400 جم",
"Product_EN": null,
"Product_Id": "00008083 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2517,
"name": "حواء مكرونة خواتم 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حواء مكرونة خواتم 400 جم",
"Product_EN": "Hawaa Big Rings Pasta 400 gm",
"Product_Id": "00008084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2518,
"name": "وادى فود صلصه طماطم 320 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود صلصه طماطم 320 جم",
"Product_EN": null,
"Product_Id": "00008085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2519,
"name": "هارفست صلصة طماطم طبيعية برطمان 320 جم",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست صلصة طماطم طبيعية برطمان 320 جم",
"Product_EN": null,
"Product_Id": "00008087 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2520,
"name": "صن شاين تونة قطع 185 جم",
"price": 19.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين تونة قطع 185 جم",
"Product_EN": null,
"Product_Id": "00008088 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2521,
"name": "بيبسى بلاك توت كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى بلاك توت كان 330 مل",
"Product_EN": null,
"Product_Id": "00008090 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2522,
"name": "دومتى جبنه فيتا صفراء 250 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا صفراء 250 جم",
"Product_EN": "Domty Yellow Feta Cheese 250 gm",
"Product_Id": "00008091 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2523,
"name": "دومتى جبنه فيتا صفراء 125 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا صفراء 125 جم",
"Product_EN": "Domty Yellow Feta Cheese 125 gm",
"Product_Id": "00008092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2524,
"name": "تودو ماكس فانيليا مغطى كاكاو",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تودو ماكس فانيليا مغطى كاكاو",
"Product_EN": null,
"Product_Id": "00008093 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2525,
"name": "تودو مكس شيكولاتة بيضاء",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تودو مكس شيكولاتة بيضاء",
"Product_EN": null,
"Product_Id": "00008094 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2526,
"name": "البيلا ثرى دى ويفر شيكولاتة",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البيلا ثرى دى ويفر شيكولاتة",
"Product_EN": null,
"Product_Id": "00008095 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2527,
"name": "بلوكس بسكويت ويفر محشو كريمه",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلوكس بسكويت ويفر محشو كريمه",
"Product_EN": null,
"Product_Id": "00008096 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2528,
"name": "جنى تمر سكرى حجازى 3 ك",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جنى تمر سكرى حجازى 3 ك",
"Product_EN": null,
"Product_Id": "00008097 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2529,
"name": "حجازى تمر الوادى 450 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حجازى تمر الوادى 450 جم",
"Product_EN": null,
"Product_Id": "00008098 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2530,
"name": "شيبسى كباب 3 ج 48 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى كباب 3 ج 48 جم",
"Product_EN": null,
"Product_Id": "00008099 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2531,
"name": "شيبسى جامبو بلايز فراخ مشويه",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جامبو بلايز فراخ مشويه",
"Product_EN": null,
"Product_Id": "00008100 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2532,
"name": "ايجان كمبوت اناناس 850 جرام",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايجان كمبوت اناناس 850 جرام",
"Product_EN": null,
"Product_Id": "00008102 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2533,
"name": "كاليفورنيا فارمز كمبوت خوخ 850 جرام",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كاليفورنيا فارمز كمبوت خوخ 850 جرام",
"Product_EN": null,
"Product_Id": "00008103 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2534,
"name": "فيتراك مربى كريمى 430 جم",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى كريمى 430 جم",
"Product_EN": null,
"Product_Id": "00008104 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2535,
"name": "دانجو زبادى فراوله 4ق 105جم وفر 1ج _ موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو زبادى فراوله 4ق 105جم وفر 1ج _ موقوف",
"Product_EN": null,
"Product_Id": "00008105 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2536,
"name": "دانون هيبرو مشروب طاقة طبيعى بالفانيليا 260 مل",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون هيبرو مشروب طاقة طبيعى بالفانيليا 260 مل",
"Product_EN": "Danone Hypro Natural Energy Drink Vanilla 260 ml",
"Product_Id": "00008106 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2537,
"name": "حواء مكرونة شعرية 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حواء مكرونة شعرية 400 جم",
"Product_EN": "Hawaa Vermicelli Pasta 400 gm",
"Product_Id": "00008107 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2538,
"name": "حواء مكرونة لسان عصفور 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حواء مكرونة لسان عصفور 400 جم",
"Product_EN": "Hawaa Rice Pasta 400 gm",
"Product_Id": "00008108 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2539,
"name": "حواء مكرونة اسباجتى 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حواء مكرونة اسباجتى 400 جم",
"Product_EN": "Hawaa Spaghetti Pasta 400 gm",
"Product_Id": "00008109 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2540,
"name": "حواء مكرونة مرمرية 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حواء مكرونة مرمرية 400 جم",
"Product_EN": "Hawaa Small Rings Pasta 400 gm",
"Product_Id": "00008110 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2541,
"name": "ماكينة استريتش منزلى",
"price": 28.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "ماكينة استريتش منزلى",
"Product_EN": null,
"Product_Id": "00008111 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2542,
"name": "هاينز كاتشب 513 جم + هاينز كاتشب 200 جم حار هديه",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب 513 جم + هاينز كاتشب 200 جم حار هديه",
"Product_EN": "Heinz Ketchup 513 ml + Heinz Hot Ketchup 200 gm",
"Product_Id": "00008112 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2543,
"name": "هاينز صلصه طماطم تتراباك 135 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصه طماطم تتراباك 135 جم",
"Product_EN": "Heinz Sauce Tomato Tetra Pak 135 gm",
"Product_Id": "00008113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2544,
"name": "هاينز صلصه طماطم ظرف 42 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصه طماطم ظرف 42 جم",
"Product_EN": "Heinz Tomato Sauce Sachet 42 gm",
"Product_Id": "00008114 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2545,
"name": "هاينز بيتى ميكس بصل وملح 290 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز بيتى ميكس بصل وملح 290 جم",
"Product_EN": "Heinz Beity Mix Onion & Salt 290 gm",
"Product_Id": "00008115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2546,
"name": "هاينز بيتى ميكس ملح وفلفل 290 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز بيتى ميكس ملح وفلفل 290 جم",
"Product_EN": "Heinz Beity Mix Pepper & Salt 290 gm",
"Product_Id": "00008116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2547,
"name": "بريل منظف اطباق ليمون 600 مل _ موقوف",
"price": 13.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق ليمون 600 مل _ موقوف",
"Product_EN": null,
"Product_Id": "00008117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2548,
"name": "تمر سكرى سعودى سكرى 3 ك",
"price": 149,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمر سكرى سعودى سكرى 3 ك",
"Product_EN": "Al Shorouk Dates Saudi Sukkari 3 kg",
"Product_Id": "00008118 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2549,
"name": "اكس سبراى دارك 150 مل",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس سبراى دارك 150 مل",
"Product_EN": "Axe Spray Dark 150 ml",
"Product_Id": "00008119 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2550,
"name": "ريكسونا ضد البكتريا 50 مل - موقوف",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا ضد البكتريا 50 مل - موقوف",
"Product_EN": null,
"Product_Id": "00008120 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2551,
"name": "ريكسونا مزيل عرق شاور 150 مل - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق شاور 150 مل - موقوف",
"Product_EN": null,
"Product_Id": "00008121 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2552,
"name": "ريكسونا مزيل مضاد للعرق 150 مل - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل مضاد للعرق 150 مل - موقوف",
"Product_EN": null,
"Product_Id": "00008122 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2553,
"name": "ريكسونا مزيل عرق 50 مل - موقوف",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق 50 مل - موقوف",
"Product_EN": null,
"Product_Id": "00008123 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2554,
"name": "ريكسونا مزيل عرق بودر حريمى 50 مل",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق بودر حريمى 50 مل",
"Product_EN": "Rexona Antiperspirant Powder For Women 50 ml",
"Product_Id": "00008124 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2555,
"name": "شيتوس كرانشى جبنة مشطشطة 76 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس كرانشى جبنة مشطشطة 76 جم",
"Product_EN": null,
"Product_Id": "00008125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2556,
"name": "ريكسونا مزيل عرق بامبو حريمى 50 مل",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق بامبو حريمى 50 مل",
"Product_EN": "Rexona Antiperspirant Bamboo for Women 50 ml",
"Product_Id": "00008126 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2557,
"name": "ريكسونا مزيل عرق انت باك 150 مل - موقوف",
"price": 34.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق انت باك 150 مل - موقوف",
"Product_EN": null,
"Product_Id": "00008127 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2558,
"name": "كلير شامبو لتساقط الشعر حريمي 400 مل 12 % خصم ",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو لتساقط الشعر حريمي 400 مل 12 % خصم ",
"Product_EN": "Clear Shampoo Anti Hair Fall For Women 400 ml 12%",
"Product_Id": "00008128 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2559,
"name": "كلير شامبو لتساقط الشعر رجالى - عرض",
"price": 40.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو لتساقط الشعر رجالى - عرض",
"Product_EN": "Clear Shampoo Anti Hair Fall For Man - Offer",
"Product_Id": "00008129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2560,
"name": "كلير رجالى شامبو لتساقط الشعر 360 مل",
"price": 50.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير رجالى شامبو لتساقط الشعر 360 مل",
"Product_EN": "Clear Shampoo Anti Hair Fall For Man 360 ml ",
"Product_Id": "00008130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2561,
"name": "كلير حريمى شامبو نعومه ولمعان 360 مل",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير حريمى شامبو نعومه ولمعان 360 مل",
"Product_EN": "Clear Shampoo for women smoothness $ shine 360 ml",
"Product_Id": "00008131 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2562,
"name": "كلير شامبو النمو الصحى 360 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو النمو الصحى 360 مل",
"Product_EN": "Clear Shampoo Strong Growth 360 ml",
"Product_Id": "00008132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2563,
"name": "لوكس صابون حلم السعاده 3+1 مجانا 120 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون حلم السعاده 3+1 مجانا 120 جم",
"Product_EN": "LUX Shower Dream Delight 3+1 Free 120 gm ",
"Product_Id": "00008133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2564,
"name": "جراندوز جولد قهوه سريعة التحضير 50 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندوز جولد قهوه سريعة التحضير 50 جم",
"Product_EN": null,
"Product_Id": "00013794 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2565,
"name": "جراندوز موكا قهوه سريعة التحضير 50 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندوز موكا قهوه سريعة التحضير 50 جم",
"Product_EN": null,
"Product_Id": "00013795 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2566,
"name": "تيفانى بسكويت ساندويتش بكريمة الشيكولاتة 84 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت ساندويتش بكريمة الشيكولاتة 84 جم",
"Product_EN": null,
"Product_Id": "00013796 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2567,
"name": "تيفانى بسكويت دايجيستيف عادى 400 جم - 30% عرض",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت دايجيستيف عادى 400 جم - 30% عرض",
"Product_EN": null,
"Product_Id": "00013797 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2568,
"name": "تيفانى بسكويت دايجيستيف لايت 400 جم ",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت دايجيستيف لايت 400 جم ",
"Product_EN": null,
"Product_Id": "00013798 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2569,
"name": "ميربا كوكيز بقطع الشيكولاتة الغامقة 200 جم",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا كوكيز بقطع الشيكولاتة الغامقة 200 جم",
"Product_EN": null,
"Product_Id": "00013799 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2570,
"name": "ميربا كوكيز بقطع الشيكولاتة 150 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا كوكيز بقطع الشيكولاتة 150 جم",
"Product_EN": null,
"Product_Id": "00013800 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2571,
"name": "تيفاني بريك ريزو بسكويت ريزو بالشيكولاته 35 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني بريك ريزو بسكويت ريزو بالشيكولاته 35 جم",
"Product_EN": null,
"Product_Id": "00013801 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2572,
"name": "تيفانى بسكويت بالشوفان والبندق 50 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت بالشوفان والبندق 50 جم",
"Product_EN": null,
"Product_Id": "00013802 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2573,
"name": "تيفاني بيج بريك ويفر مقرمش بشيكولاته الحليب 35 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني بيج بريك ويفر مقرمش بشيكولاته الحليب 35 جم",
"Product_EN": null,
"Product_Id": "00013803 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2574,
"name": "ستورك ويزرس بنبون زبدة بكريمة القهوة 125 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ويزرس بنبون زبدة بكريمة القهوة 125 جم",
"Product_EN": null,
"Product_Id": "00013804 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2575,
"name": "بريك مينى فن 384 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بريك مينى فن 384 جم",
"Product_EN": null,
"Product_Id": "00013805 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2576,
"name": "تيفاني ديلايت ويفر بشيكولاته الحليب 16.5 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني ديلايت ويفر بشيكولاته الحليب 16.5 جم",
"Product_EN": null,
"Product_Id": "00013806 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2577,
"name": "المونداى شيكولاته بالحليب واللوز المحمص 35 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المونداى شيكولاته بالحليب واللوز المحمص 35 جم",
"Product_EN": null,
"Product_Id": "00013807 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2578,
"name": "تيفانى كعك بالزبدة 200 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى كعك بالزبدة 200 جم",
"Product_EN": null,
"Product_Id": "00013808 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2579,
"name": "ستورك ويزرس بنبون بالزبدة والكراميل 50 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ويزرس بنبون بالزبدة والكراميل 50 جم",
"Product_EN": null,
"Product_Id": "00013809 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2580,
"name": "ستورك ويزرس بنبون بالزبدة والكراميل 150 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ويزرس بنبون بالزبدة والكراميل 150 جم",
"Product_EN": null,
"Product_Id": "00013810 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2581,
"name": "بيبيتو جيلى ثور استكس ليمون 35 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبيتو جيلى ثور استكس ليمون 35 جم",
"Product_EN": null,
"Product_Id": "00013811 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2582,
"name": "ستورك ويزرس بنبون بالزبدة والكراميل 400 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ويزرس بنبون بالزبدة والكراميل 400 جم",
"Product_EN": null,
"Product_Id": "00013812 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2583,
"name": "ميربا مينى كوكيز سناك بالشيكولاتة 175 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا مينى كوكيز سناك بالشيكولاتة 175 جم",
"Product_EN": null,
"Product_Id": "00013813 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2584,
"name": "تيفانى بسكويت بالشوفان والتين 50 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت بالشوفان والتين 50 جم",
"Product_EN": null,
"Product_Id": "00013814 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2585,
"name": "ميربا اكسترا بالتوت البرى و شيكولاتة بيضاء 37.5 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا اكسترا بالتوت البرى و شيكولاتة بيضاء 37.5 جم",
"Product_EN": null,
"Product_Id": "00013815 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2586,
"name": "تيفانى بسكويت بكريمة الشيكولاتة 200 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت بكريمة الشيكولاتة 200 جم",
"Product_EN": null,
"Product_Id": "00013816 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2587,
"name": "تيفانى سندوتش بكريمة الشيكولاتة 100 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى سندوتش بكريمة الشيكولاتة 100 جم",
"Product_EN": null,
"Product_Id": "00013817 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2588,
"name": "تيفانى بسكويت ساندويتش بالكريمة البرتقال 84 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت ساندويتش بالكريمة البرتقال 84 جم",
"Product_EN": null,
"Product_Id": "00013818 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2589,
"name": "ستورك بنبون زبدة محشو كريمة كراميل 125 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك بنبون زبدة محشو كريمة كراميل 125 جم",
"Product_EN": null,
"Product_Id": "00013819 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2590,
"name": "البوادى حلاوه اسبريد بالكراميل 300 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه اسبريد بالكراميل 300 جم",
"Product_EN": null,
"Product_Id": "00013820 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2591,
"name": "البوادى حلاوه اسبريد شيكولاته بالبندق 300 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه اسبريد شيكولاته بالبندق 300 جم",
"Product_EN": null,
"Product_Id": "00013821 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2592,
"name": "البوادى حلاوه اسبريد 300 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه اسبريد 300 جم",
"Product_EN": null,
"Product_Id": "00013822 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2593,
"name": "تيفانى حليب 50 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى حليب 50 جم",
"Product_EN": null,
"Product_Id": "00013823 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2594,
"name": "مونارك ذرة حلوة كاملة 340 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مونارك ذرة حلوة كاملة 340 جم",
"Product_EN": null,
"Product_Id": "00013825 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2595,
"name": "مونارك زبده فول سوداني كرانشي 340 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مونارك زبده فول سوداني كرانشي 340 جم",
"Product_EN": null,
"Product_Id": "00013826 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2596,
"name": "سيجنال معجون اسنان ضد التسوس 50 مل 1+1 ق",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان ضد التسوس 50 مل 1+1 ق",
"Product_EN": "Signal toothpaste against cavities 50 ml 1+1 Pcs",
"Product_Id": "00013827 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2597,
"name": "تيفانى فيورى نوجا 36 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى فيورى نوجا 36 جم",
"Product_EN": null,
"Product_Id": "00013828 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2598,
"name": "مونارك زبده فول سودانى كريمى 340 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مونارك زبده فول سودانى كريمى 340 جم",
"Product_EN": null,
"Product_Id": "00013829 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2599,
"name": "فيورى كراميل 40 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيورى كراميل 40 جم",
"Product_EN": null,
"Product_Id": "00013830 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2600,
"name": "اوكسى منظف صحون ليمون 2.5 لتر",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى منظف صحون ليمون 2.5 لتر",
"Product_EN": null,
"Product_Id": "00013831 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2601,
"name": "ميربا كوكيز بقطع الشيكولاتة الغامقة 200 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا كوكيز بقطع الشيكولاتة الغامقة 200 جم",
"Product_EN": null,
"Product_Id": "00013833 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2602,
"name": "ميربا كوكيز بالزبيب والتفاح 200 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا كوكيز بالزبيب والتفاح 200 جم",
"Product_EN": null,
"Product_Id": "00013834 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2603,
"name": "دلما بطعم الفواكه عرض 2+1 (توت&فراوله&خوخ)90جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما بطعم الفواكه عرض 2+1 (توت&فراوله&خوخ)90جم",
"Product_EN": null,
"Product_Id": "00013835 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2604,
"name": "دلما بطعم الفواكه 2+1خوخ & راوله &اخضر نعناع مغرب",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما بطعم الفواكه 2+1خوخ & راوله &اخضر نعناع مغرب",
"Product_EN": null,
"Product_Id": "00013836 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2605,
"name": "جراندوز موكا قهوه سريعة التحضير 200 جم",
"price": 84,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندوز موكا قهوه سريعة التحضير 200 جم",
"Product_EN": null,
"Product_Id": "00013837 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2606,
"name": "اوريجنال جورميه مصاصة 31 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريجنال جورميه مصاصة 31 جم",
"Product_EN": null,
"Product_Id": "00013838 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2607,
"name": "كبده صافى بلدى وزن - بوم استلام",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كبده صافى بلدى وزن - بوم استلام",
"Product_EN": null,
"Product_Id": "00013839 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2608,
"name": "الربيع عصير مانجو تتراباك 1 لتر",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير مانجو تتراباك 1 لتر",
"Product_EN": null,
"Product_Id": "00013840 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2609,
"name": "الربيع عصير تفاح تتراباك 1 لتر",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير تفاح تتراباك 1 لتر",
"Product_EN": null,
"Product_Id": "00013841 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2610,
"name": "الربيع عصير كيوي وليمون تتراباك 1 لتر",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير كيوي وليمون تتراباك 1 لتر",
"Product_EN": null,
"Product_Id": "00013842 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2611,
"name": "الربيع عصير توت مشكل تتراباك 1 لتر",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير توت مشكل تتراباك 1 لتر",
"Product_EN": null,
"Product_Id": "00013843 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2612,
"name": "الربيع عصير مانجو تتراباك 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير مانجو تتراباك 330 مل",
"Product_EN": null,
"Product_Id": "00013844 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2613,
"name": "الربيع عصير كيوي وليمون تتراباك 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير كيوي وليمون تتراباك 330 مل",
"Product_EN": null,
"Product_Id": "00013845 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2614,
"name": "الربيع عصير توت مشكل تتراباك 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير توت مشكل تتراباك 330 مل",
"Product_EN": null,
"Product_Id": "00013846 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2615,
"name": "الربيع عصير مانجو تتراباك 200 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير مانجو تتراباك 200 مل",
"Product_EN": null,
"Product_Id": "00013847 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2616,
"name": "الربيع عصير تفاح تتراباك 200 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير تفاح تتراباك 200 مل",
"Product_EN": null,
"Product_Id": "00013848 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2617,
"name": "الربيع عصير كيوي وليمون تتراباك 200 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير كيوي وليمون تتراباك 200 مل",
"Product_EN": null,
"Product_Id": "00013849 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2618,
"name": "الربيع عصير توت مشكل تتراباك 200 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير توت مشكل تتراباك 200 مل",
"Product_EN": null,
"Product_Id": "00013850 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2619,
"name": "لاكتيل بى اكتيف رايب لايت 220 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل بى اكتيف رايب لايت 220 جم",
"Product_EN": "Lactel B Active Rayeb Light 220 gm",
"Product_Id": "00013852 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2620,
"name": "ريحانه سكر بودره 1 كجم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريحانه سكر بودره 1 كجم",
"Product_EN": null,
"Product_Id": "00013853 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2621,
"name": "سناب بسكويت بندق 1 جنيه",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سناب بسكويت بندق 1 جنيه",
"Product_EN": null,
"Product_Id": "00013854 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2622,
"name": "سناب بسكويت شيكولاته 1 جنيه",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سناب بسكويت شيكولاته 1 جنيه",
"Product_EN": null,
"Product_Id": "00013855 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2623,
"name": "سناب بسكويت فانيليا 1 جنيه",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سناب بسكويت فانيليا 1 جنيه",
"Product_EN": null,
"Product_Id": "00013856 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2624,
"name": "سناب بسكويت بندق 8 قطعه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سناب بسكويت بندق 8 قطعه",
"Product_EN": null,
"Product_Id": "00013858 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2625,
"name": "سناب بسكويت شيكولاته 8 قطعه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سناب بسكويت شيكولاته 8 قطعه",
"Product_EN": null,
"Product_Id": "00013859 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2626,
"name": "سناب بسكويت فانيليا 8 قطعه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سناب بسكويت فانيليا 8 قطعه",
"Product_EN": null,
"Product_Id": "00013860 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2627,
"name": "سناب بسكويت فراولة 8 قطعه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سناب بسكويت فراولة 8 قطعه",
"Product_EN": null,
"Product_Id": "00013861 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2628,
"name": "ميلانو بسكويت ويفر شيكولاته",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلانو بسكويت ويفر شيكولاته",
"Product_EN": null,
"Product_Id": "00013863 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2629,
"name": "ميلانو بسكويت ويفر فانيليا",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلانو بسكويت ويفر فانيليا",
"Product_EN": null,
"Product_Id": "00013864 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2630,
"name": "ديتول عنايه بالبشره 50 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول عنايه بالبشره 50 مل",
"Product_EN": null,
"Product_Id": "00013866 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2631,
"name": "رويال شاى اخضر & النعناع 20 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى اخضر & النعناع 20 فلتر",
"Product_EN": "Royal Green Tea & Mint 20 Bags",
"Product_Id": "00013867 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2632,
"name": "زاهر تورتة ايس كريم فانيليا & مانجو",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم فانيليا & مانجو",
"Product_EN": "Zaher Mango & Vanilla Ice Cream Torte ",
"Product_Id": "00013868 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2633,
"name": "زاهر كعك سادة 1 كجم - 2021",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كعك سادة 1 كجم - 2021",
"Product_EN": "Zaher Cakes 1 Kg ",
"Product_Id": "00013870 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2634,
"name": "زاهر بيتى فور لوكس 1 كجم - 2021",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتى فور لوكس 1 كجم - 2021",
"Product_EN": " Zaher Betty Four Luxe 1 Kg ",
"Product_Id": "00013872 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2635,
"name": "ميراندا يوسفى كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا يوسفى كان 330 مل",
"Product_EN": "Mirinda Tangerine Can 330 ml",
"Product_Id": "00013873 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2636,
"name": "ميراندا ليمون كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا ليمون كان 330 مل",
"Product_EN": "Mirinda Citrus Can 300 ml",
"Product_Id": "00013874 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2637,
"name": "ديلي عصير جريب فروت 1 لتر",
"price": 216,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير جريب فروت 1 لتر",
"Product_EN": "Dili Grapefruit Juice 1 L",
"Product_Id": "00013875 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2638,
"name": "ديلي عصير رمان 1 لتر",
"price": 216,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير رمان 1 لتر",
"Product_EN": "Dili Pomegranate Juice 1 L",
"Product_Id": "00013876 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2639,
"name": "ديلي عصير مانجو 1 لتر",
"price": 216,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير مانجو 1 لتر",
"Product_EN": "Dili Mango Juice 1 L",
"Product_Id": "00013877 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2640,
"name": "ديلي عصير برتقال خالى من السكر 1 لتر",
"price": 216,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير برتقال خالى من السكر 1 لتر",
"Product_EN": "Dili Sugar Free Orange Juice 1 L",
"Product_Id": "00013878 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2641,
"name": "ديلي عصير برتقال 1 لتر",
"price": 216,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير برتقال 1 لتر",
"Product_EN": "Dili Orange Juice 1 L",
"Product_Id": "00013879 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2642,
"name": "ديلي عصير فراولة 1 لتر",
"price": 216,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير فراولة 1 لتر",
"Product_EN": "Dili Strawberry Juice 1 L ",
"Product_Id": "00013880 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2643,
"name": "ديلي عصير كوكتيل 1 لتر",
"price": 168,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير كوكتيل 1 لتر",
"Product_EN": "Dili Cocktail Juice 1 L",
"Product_Id": "00013881 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2644,
"name": "ديلي عصير جوافه 1 لتر",
"price": 168,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير جوافه 1 لتر",
"Product_EN": "Dili Guava juice 1 L",
"Product_Id": "00013882 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2645,
"name": "ديلي عصير ليمون نعناع 1 لتر",
"price": 168,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير ليمون نعناع 1 لتر",
"Product_EN": "Dili Mint Lemonade Juice 1 L ",
"Product_Id": "00013883 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2646,
"name": "ديلي عصير جريب فروت 290 مل",
"price": 108,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير جريب فروت 290 مل",
"Product_EN": "Dili Grapefruit Juice 290 ml ",
"Product_Id": "00013884 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2647,
"name": "ديلي عصير رمان 290 مل",
"price": 108,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير رمان 290 مل",
"Product_EN": "Dili Pomegranate Juice 290 ml ",
"Product_Id": "00013885 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2648,
"name": "ديلي عصير مانجو 290 مل",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير مانجو 290 مل",
"Product_EN": "Dili Mango Juice 290 ml ",
"Product_Id": "00013886 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2649,
"name": "ديلي عصير برتقال 290 مل",
"price": 108,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير برتقال 290 مل",
"Product_EN": "Dili Orange Juice 290 ml",
"Product_Id": "00013887 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2650,
"name": "ديلي عصير برتقال 290 مل",
"price": 108,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير برتقال 290 مل",
"Product_EN": "Dili Orange Juice 290 ml",
"Product_Id": "00013888 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2651,
"name": "ديلي عصير فراولة 290 مل",
"price": 108,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير فراولة 290 مل",
"Product_EN": "Dili Strawberry Juice 290 ml ",
"Product_Id": "00013889 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2652,
"name": "ديلي عصير كوكتيل 290 مل",
"price": 108,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير كوكتيل 290 مل",
"Product_EN": "Dili Cocktail Juice 290 ml",
"Product_Id": "00013890 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2653,
"name": "ديلي عصير جوافه 290 مل",
"price": 108,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير جوافه 290 مل",
"Product_EN": "Dili Guava juice 290 ml",
"Product_Id": "00013891 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2654,
"name": "ديلي عصير ليمون نعناع 290 مل",
"price": 108,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير ليمون نعناع 290 مل",
"Product_EN": "Dili Mint Lemonade Juice 290 ml ",
"Product_Id": "00013892 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2655,
"name": "ديلي قمر الدين 1 لتر",
"price": 216,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي قمر الدين 1 لتر",
"Product_EN": "Dili Qamar ElDin 1 L",
"Product_Id": "00013893 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2656,
"name": "ديلي عصير دوم خالى من السكر 1 لتر",
"price": 168,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير دوم خالى من السكر 1 لتر",
"Product_EN": "Dili Sugar Free Doum Juice 1 L",
"Product_Id": "00013894 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2657,
"name": "ديلي عصير دوم 1 لتر",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير دوم 1 لتر",
"Product_EN": "Dili Doum Juice 1 L",
"Product_Id": "00013895 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2658,
"name": "ديلي عصير عناب 1 لتر",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير عناب 1 لتر",
"Product_EN": "Dili Ennab Juice 1 L",
"Product_Id": "00013896 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2659,
"name": "ديلي عصير تمر هندى 1 لتر",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير تمر هندى 1 لتر",
"Product_EN": "Dili Tamr Hendi Juice 1 L",
"Product_Id": "00013897 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2660,
"name": "ديلي عصير خروب 1 لتر",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير خروب 1 لتر",
"Product_EN": "Dili Kharoub Juice 1 L",
"Product_Id": "00013898 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2661,
"name": "ديلي عصير عرقسوس 1 لتر",
"price": 102,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير عرقسوس 1 لتر",
"Product_EN": "Dili Licorice juice 1 L ",
"Product_Id": "00013899 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2662,
"name": "منجل بسبوسه مكسرات 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل بسبوسه مكسرات 400 جم",
"Product_EN": null,
"Product_Id": "00013900 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2663,
"name": "اكس جولد تمبتيشن سبراي مزيل العرق للرجال 150 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس جولد تمبتيشن سبراي مزيل العرق للرجال 150 مل",
"Product_EN": "AXe Gold Temptation Deodorant Spray For Men 150ml",
"Product_Id": "00013901 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2664,
"name": "دوف بديل الزيت اصلاح مكثف 300 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف بديل الزيت اصلاح مكثف 300 مل",
"Product_EN": "DOVE Intens Rescue Rplmnt Crm 300 ml ",
"Product_Id": "00013902 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2665,
"name": "فانيش سائل 900 مل 2 قطعه + فاينش ابيض 900 مل",
"price": 101,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانيش سائل 900 مل 2 قطعه + فاينش ابيض 900 مل",
"Product_EN": null,
"Product_Id": "00013903 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2666,
"name": "كوين رول ورق غذائي 40 سم - 240 جرام",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول ورق غذائي 40 سم - 240 جرام",
"Product_EN": null,
"Product_Id": "00013904 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2667,
"name": "كوين رول فويل الومنيوم 40 سم * 10 متر",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول فويل الومنيوم 40 سم * 10 متر",
"Product_EN": null,
"Product_Id": "00013906 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2668,
"name": "جهاز جليد اوتوماتيك بوكر عبق الورد والتوت البري",
"price": 162,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جهاز جليد اوتوماتيك بوكر عبق الورد والتوت البري",
"Product_EN": null,
"Product_Id": "00013907 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2669,
"name": "مستر ماسل منظف مرحاض نسيم البحر 40 جم _ موقوف",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسل منظف مرحاض نسيم البحر 40 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00013910 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2670,
"name": "مستر ماسل ارضيات لافندر 500 مل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسل ارضيات لافندر 500 مل",
"Product_EN": null,
"Product_Id": "00013911 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2671,
"name": "مستر ماسل منظف حمام رشاش 500 مل",
"price": 59,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسل منظف حمام رشاش 500 مل",
"Product_EN": null,
"Product_Id": "00013912 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2672,
"name": "جهاز جليد اوتوماتيك بوكر فانيليا",
"price": 162,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جهاز جليد اوتوماتيك بوكر فانيليا",
"Product_EN": null,
"Product_Id": "00013913 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2673,
"name": "بليدج منظف رخام وسيراميك 750 مل",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بليدج منظف رخام وسيراميك 750 مل",
"Product_EN": null,
"Product_Id": "00013914 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2674,
"name": "جليد اسبراي فانليا 300 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد اسبراي فانليا 300 مل",
"Product_EN": null,
"Product_Id": "00013917 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2675,
"name": "مستر ماسل منظف متعدد الاغراض روعة الزهور 500 مل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسل منظف متعدد الاغراض روعة الزهور 500 مل",
"Product_EN": null,
"Product_Id": "00013918 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2676,
"name": "بامبرز مناديل مبلله للاطفال 64 منديل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز مناديل مبلله للاطفال 64 منديل",
"Product_EN": null,
"Product_Id": "00013919 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2677,
"name": "اريال كبسولات بلمسه داونى 15 كبسوله - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال كبسولات بلمسه داونى 15 كبسوله - موقوف",
"Product_EN": null,
"Product_Id": "00013920 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2678,
"name": "اريال كبسولات بلمسه داونى 15 كبسوله",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال كبسولات بلمسه داونى 15 كبسوله",
"Product_EN": null,
"Product_Id": "00013921 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2679,
"name": "هيركود جيل شعر ازرق 185 مل",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيركود جيل شعر ازرق 185 مل",
"Product_EN": null,
"Product_Id": "00013923 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2680,
"name": "هيركود جيل شعر ازرق ظرف 50 مل",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيركود جيل شعر ازرق ظرف 50 مل",
"Product_EN": null,
"Product_Id": "00013924 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2681,
"name": "هيركود جيل شعر ازرق 250 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيركود جيل شعر ازرق 250 مل",
"Product_EN": null,
"Product_Id": "00013925 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2682,
"name": "ميربا كوكيز اكسترا بكريمه شيكولاتة وبندق 37 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا كوكيز اكسترا بكريمه شيكولاتة وبندق 37 جم",
"Product_EN": null,
"Product_Id": "00013926 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2683,
"name": "ميربا كوكيز اكسترا بالشيكولاته المزدوجه 37.5 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا كوكيز اكسترا بالشيكولاته المزدوجه 37.5 جم",
"Product_EN": null,
"Product_Id": "00013927 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2684,
"name": "ساميانج نودلز كورى بنكهه فواكه البحر 150 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ساميانج نودلز كورى بنكهه فواكه البحر 150 جم",
"Product_EN": null,
"Product_Id": "00013929 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2685,
"name": "نودلز كورى بنكهه شاورمه لحم 140 جم ",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نودلز كورى بنكهه شاورمه لحم 140 جم ",
"Product_EN": null,
"Product_Id": "00013930 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2686,
"name": "فريدا منعم ملابس نسيم الربيع 4 لتر",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا منعم ملابس نسيم الربيع 4 لتر",
"Product_EN": null,
"Product_Id": "00013931 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2687,
"name": "فريدا منعم ملابس انتعاش الربيع 4 لتر",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا منعم ملابس انتعاش الربيع 4 لتر",
"Product_EN": null,
"Product_Id": "00013932 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2688,
"name": "فريدا جان كارد للحشرات 300 مل",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا جان كارد للحشرات 300 مل",
"Product_EN": null,
"Product_Id": "00013933 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2689,
"name": "فريدا اكيتشن مزيل دهون 550 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا اكيتشن مزيل دهون 550 مل",
"Product_EN": null,
"Product_Id": "00013934 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2690,
"name": "فريدا معقم يدين 90 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا معقم يدين 90 مل",
"Product_EN": null,
"Product_Id": "00013935 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2691,
"name": "فريدا ملمع زجاج 500 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا ملمع زجاج 500 مل",
"Product_EN": null,
"Product_Id": "00013936 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2692,
"name": "فريدا معطر ايرويك بالايس الكريم 250 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا معطر ايرويك بالايس الكريم 250 مل",
"Product_EN": null,
"Product_Id": "00013937 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2693,
"name": "فريدا معطر جو انتعاش الجليد 250 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا معطر جو انتعاش الجليد 250 مل",
"Product_EN": null,
"Product_Id": "00013938 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2694,
"name": "فريد معطر جو عطور عربيه 250 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريد معطر جو عطور عربيه 250 مل",
"Product_EN": null,
"Product_Id": "00013939 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2695,
"name": "فريدا معطر جو اناقه 250 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا معطر جو اناقه 250 مل",
"Product_EN": null,
"Product_Id": "00013940 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2696,
"name": "فريدا معطر جو نسيم الصباح 250 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا معطر جو نسيم الصباح 250 مل",
"Product_EN": null,
"Product_Id": "00013941 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2697,
"name": "عطاره . حليب بودره فرنساوى وزن - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . حليب بودره فرنساوى وزن - موقوف",
"Product_EN": "Attara French Powder Milk - Scalable",
"Product_Id": "00013942 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2698,
"name": "مقرمشات ماليزى وزن",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مقرمشات ماليزى وزن",
"Product_EN": "Malaysian Crackers - Scalable ",
"Product_Id": "00013943 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2699,
"name": "هاينز بيتى ميكس ملح وفلفل 290 جم 2ق+ بيتى ميكس 2ق",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز بيتى ميكس ملح وفلفل 290 جم 2ق+ بيتى ميكس 2ق",
"Product_EN": "Heinz Petit Mix Salt & Pepper 290 gm2 Pieces ",
"Product_Id": "00013944 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2700,
"name": "عطاره . خميره وزن",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . خميره وزن",
"Product_EN": "Attara Instant - Scalable ",
"Product_Id": "00013945 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2701,
"name": "سينابون جلاس سادة 400 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سينابون جلاس سادة 400 جم",
"Product_EN": null,
"Product_Id": "00013946 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2702,
"name": "سينابون جلاس مكسرات 400 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سينابون جلاس مكسرات 400 جم",
"Product_EN": null,
"Product_Id": "00013947 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2703,
"name": "ريسبى خلطه توابل شاورمه دجاج 5 كجم",
"price": 350,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريسبى خلطه توابل شاورمه دجاج 5 كجم",
"Product_EN": null,
"Product_Id": "00013948 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2704,
"name": "ريسبى خلطه توابل دجاج باليمون 5 كجم",
"price": 350,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريسبى خلطه توابل دجاج باليمون 5 كجم",
"Product_EN": null,
"Product_Id": "00013949 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2705,
"name": "ريسبى خلطه توابل دجاج تندورى ماسالا 5 كجم",
"price": 350,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريسبى خلطه توابل دجاج تندورى ماسالا 5 كجم",
"Product_EN": null,
"Product_Id": "00013950 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2706,
"name": "ريسبى خلطه توابل دجاج كارى 5 كجم",
"price": 350,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريسبى خلطه توابل دجاج كارى 5 كجم",
"Product_EN": null,
"Product_Id": "00013951 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2707,
"name": "ريسبى خلطه توابل دجاج مدخن 5 كجم",
"price": 350,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريسبى خلطه توابل دجاج مدخن 5 كجم",
"Product_EN": null,
"Product_Id": "00013952 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2708,
"name": "ريسبى خلطه توابل حمام محشى ارز 5 كجم",
"price": 350,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريسبى خلطه توابل حمام محشى ارز 5 كجم",
"Product_EN": null,
"Product_Id": "00013953 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2709,
"name": "ريسبى خلطه توابل دجاج مقلى 4 كجم",
"price": 280,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريسبى خلطه توابل دجاج مقلى 4 كجم",
"Product_EN": null,
"Product_Id": "00013954 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2710,
"name": "عطاره . ريسبى خلطه توابل انواع وزن",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ريسبى خلطه توابل انواع وزن",
"Product_EN": "Attara Rispy Mix Spices Different - Scalable ",
"Product_Id": "00013955 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2711,
"name": "بريزيدون لبنه 180 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون لبنه 180 جم",
"Product_EN": "President Labneh 180 gm",
"Product_Id": "00013956 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2712,
"name": "دومتى حليب خالى الدسم 1 لتر",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دومتى حليب خالى الدسم 1 لتر",
"Product_EN": "Domty Skimmed MilK 1 L",
"Product_Id": "00013957 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2713,
"name": "تاج السلطان بقسماط شامى",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تاج السلطان بقسماط شامى",
"Product_EN": null,
"Product_Id": "00013958 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2714,
"name": "العربية طرشى مخلل ازرق 1 كيس",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العربية طرشى مخلل ازرق 1 كيس",
"Product_EN": null,
"Product_Id": "00013961 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2715,
"name": "العربية طرشى مخلل احمر 1 كيس",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": null,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "العربية طرشى مخلل احمر 1 كيس",
"Product_EN": null,
"Product_Id": "00013962 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2716,
"name": "ايليت ميت لانشون ساده -زيتون -بهار وزن",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ايليت ميت لانشون ساده -زيتون -بهار وزن",
"Product_EN": null,
"Product_Id": "00013963 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2717,
"name": "ايليت ميت لانشون صدور دجاج مدخن وزن",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ايليت ميت لانشون صدور دجاج مدخن وزن",
"Product_EN": null,
"Product_Id": "00013964 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2718,
"name": "ايليت ميت صدور رومى مدخن وزن",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ايليت ميت صدور رومى مدخن وزن",
"Product_EN": null,
"Product_Id": "00013965 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2719,
"name": "ايليت ميت روزبيف وزن",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ايليت ميت روزبيف وزن",
"Product_EN": null,
"Product_Id": "00013966 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2720,
"name": "ايليت ميت دجاج ساده وزن",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ايليت ميت دجاج ساده وزن",
"Product_EN": null,
"Product_Id": "00013967 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2721,
"name": "زاهر زيتون اسود شرايح زجاج 600 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اسود شرايح زجاج 600 جم",
"Product_EN": null,
"Product_Id": "00013968 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2722,
"name": "زاهربصل خلطة زجاج 400 جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهربصل خلطة زجاج 400 جم",
"Product_EN": null,
"Product_Id": "00013970 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2723,
"name": "نسكويك بودر شيكولاته 330 جم عرض",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك بودر شيكولاته 330 جم عرض",
"Product_EN": null,
"Product_Id": "00013971 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2724,
"name": "رويال اعشاب زنجبيل وقرفه 12 فلتر+ 3 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب زنجبيل وقرفه 12 فلتر+ 3 فلتر",
"Product_EN": "Royal Cinnamon & Ginger Herbs 12 Bags + 3 Bags",
"Product_Id": "00013972 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2725,
"name": "جاردينو خل 1 لتر +2 جاردينو صلصه 380 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جاردينو خل 1 لتر +2 جاردينو صلصه 380 جم",
"Product_EN": null,
"Product_Id": "00013973 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2726,
"name": "زاهر معجون بسكويت لوتس 400 جم - موقوف",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر معجون بسكويت لوتس 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00013974 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2727,
"name": "العربية طرشى بلدى سوبر وزن",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العربية طرشى بلدى سوبر وزن",
"Product_EN": null,
"Product_Id": "00013975 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2728,
"name": "زاهر نخاع عظم طبيعى وزن",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر نخاع عظم طبيعى وزن",
"Product_EN": "Zaher Bone Marrow Normal - Scalable ",
"Product_Id": "00013976 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2729,
"name": "سانتيه شوفان كرتون 500 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سانتيه شوفان كرتون 500 جم",
"Product_EN": null,
"Product_Id": "00013977 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2730,
"name": "سانتيه كورن فليكس سادة 250 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سانتيه كورن فليكس سادة 250 جم",
"Product_EN": null,
"Product_Id": "00013978 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2731,
"name": "كلاس ايه ستروب وافل كراميل 300 جم 10 ق",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاس ايه ستروب وافل كراميل 300 جم 10 ق",
"Product_EN": null,
"Product_Id": "00013979 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2732,
"name": "كلاس ايه ستروب وافل شيكولاته 300 جم 10 ق",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاس ايه ستروب وافل شيكولاته 300 جم 10 ق",
"Product_EN": null,
"Product_Id": "00013980 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2733,
"name": "كلاس ايه ستروب وافل حليب وعسل 300 جم 10 ق",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاس ايه ستروب وافل حليب وعسل 300 جم 10 ق",
"Product_EN": null,
"Product_Id": "00013981 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2734,
"name": "هيلثى ميل دقيق جميع الاستخدامات خالى من الجلوتين ",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى ميل دقيق جميع الاستخدامات خالى من الجلوتين ",
"Product_EN": null,
"Product_Id": "00013982 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2735,
"name": "ريو ماري تونه لايت بزيت الزيتون 160 جم * 2 قطعة",
"price": 98,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريو ماري تونه لايت بزيت الزيتون 160 جم * 2 قطعة",
"Product_EN": null,
"Product_Id": "00013983 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2736,
"name": "مستر بيكرى خميره فوريه 10 جم ظرف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مستر بيكرى خميره فوريه 10 جم ظرف",
"Product_EN": null,
"Product_Id": "00013984 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2737,
"name": "اوكيه شيكولاته ميلك بالكراميل 30 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوكيه شيكولاته ميلك بالكراميل 30 جم",
"Product_EN": null,
"Product_Id": "00013985 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2738,
"name": "اوكيه شيكولاته ميلك بالفراوله 30 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوكيه شيكولاته ميلك بالفراوله 30 جم",
"Product_EN": null,
"Product_Id": "00013986 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2739,
"name": "اوكيه شيكولاته ميلك وايت 30 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوكيه شيكولاته ميلك وايت 30 جم",
"Product_EN": null,
"Product_Id": "00013987 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2740,
"name": "هيلثى ميل دقيق الشوفان 500 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى ميل دقيق الشوفان 500 جم",
"Product_EN": null,
"Product_Id": "00013988 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2741,
"name": "هيلثى ميل شوفان مع الشيا 500 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى ميل شوفان مع الشيا 500 جم",
"Product_EN": null,
"Product_Id": "00013989 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2742,
"name": "هيلثى ميل دقيق اللوز 400 جم",
"price": 146,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى ميل دقيق اللوز 400 جم",
"Product_EN": null,
"Product_Id": "00013990 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2743,
"name": "هيلثى ميل دقيق جوز الهند 400 جم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:37",
"updated_at": "2021-11-01 19:45:37",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى ميل دقيق جوز الهند 400 جم",
"Product_EN": null,
"Product_Id": "00013991 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2744,
"name": "هيلثى ميل دقيق الحمص 500 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى ميل دقيق الحمص 500 جم",
"Product_EN": null,
"Product_Id": "00013992 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2745,
"name": "هيلثى ميل شوفان عالى البروتين 500 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى ميل شوفان عالى البروتين 500 جم",
"Product_EN": null,
"Product_Id": "00013993 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2746,
"name": "تيك تيك كشرى سريع التحضير 155 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيك تيك كشرى سريع التحضير 155 جم",
"Product_EN": null,
"Product_Id": "00013995 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2747,
"name": "تيك تيك كشرى سريع التحضير 105 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيك تيك كشرى سريع التحضير 105 جم",
"Product_EN": null,
"Product_Id": "00013996 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2748,
"name": "فان فودز غزل بنات أنواع 18 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان فودز غزل بنات أنواع 18 جم",
"Product_EN": null,
"Product_Id": "00013997 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2749,
"name": "أيلو جود فرنس ثوميه صوص 500 جم",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "أيلو جود فرنس ثوميه صوص 500 جم",
"Product_EN": null,
"Product_Id": "00013999 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2750,
"name": "اليو جود فرانس هريسه دريسنج 500 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اليو جود فرانس هريسه دريسنج 500 جم",
"Product_EN": null,
"Product_Id": "00014000 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2751,
"name": "اليو جود فرانس كول سلو صوص 500 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اليو جود فرانس كول سلو صوص 500 جم",
"Product_EN": null,
"Product_Id": "00014001 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2752,
"name": "أيلو جود فرنس مايونيز مدخن 500 جم",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "أيلو جود فرنس مايونيز مدخن 500 جم",
"Product_EN": null,
"Product_Id": "00014002 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2753,
"name": "أيلو جود فرنس سويت شيلى صوص 500 جم",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "أيلو جود فرنس سويت شيلى صوص 500 جم",
"Product_EN": null,
"Product_Id": "00014003 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2754,
"name": "أيلو جود فرنس ثاوزند ايلاند دريسينج 500 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "أيلو جود فرنس ثاوزند ايلاند دريسينج 500 جم",
"Product_EN": null,
"Product_Id": "00014004 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2755,
"name": "ايلو جود فرنس رانش دريسينج 500 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايلو جود فرنس رانش دريسينج 500 جم",
"Product_EN": null,
"Product_Id": "00014005 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2756,
"name": "ميجو فحم سريع الاشتعال 1 كجم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ميجو فحم سريع الاشتعال 1 كجم",
"Product_EN": null,
"Product_Id": "00014006 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2757,
"name": "كوكو لافرز سوفت ميلت فانيليا 2ق",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكو لافرز سوفت ميلت فانيليا 2ق",
"Product_EN": null,
"Product_Id": "00014007 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2758,
"name": "كوكو لافرز سوفت ميلت كاكاو 2ق",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكو لافرز سوفت ميلت كاكاو 2ق",
"Product_EN": null,
"Product_Id": "00014008 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2759,
"name": "جاردينو مايونيز كاتشب دويباك 280 جم",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جاردينو مايونيز كاتشب دويباك 280 جم",
"Product_EN": null,
"Product_Id": "00014010 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2760,
"name": "دافيدوف قهوه اسبريسو 100 جم",
"price": 114,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دافيدوف قهوه اسبريسو 100 جم",
"Product_EN": "Davidoff espresso coffee 100 gm",
"Product_Id": "00014011 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2761,
"name": "دافيدوف قهوه غنية النكهه 100 جم",
"price": 114,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دافيدوف قهوه غنية النكهه 100 جم",
"Product_EN": "Davidoff Coffee Rich In Flavor 100 gm",
"Product_Id": "00014012 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2762,
"name": "دافيدوف قهوه هادى النكهه 100 جم",
"price": 114,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دافيدوف قهوه هادى النكهه 100 جم",
"Product_EN": "Davidoff Coffee Soft Flavor 100 gm",
"Product_Id": "00014013 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2763,
"name": "كيت كات شوكولاتة انواع 2 صباع 5+1 هديه",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة انواع 2 صباع 5+1 هديه",
"Product_EN": "Kit Kat Chocolate 2 Types of Chocolate 5+1 Offer ",
"Product_Id": "00014014 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2764,
"name": "الشمس رنجه هولندي فاكيوم وزن",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الشمس رنجه هولندي فاكيوم وزن",
"Product_EN": null,
"Product_Id": "00014015 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2765,
"name": "ميراند تفاح اخضر 2 لتر + 500 مل زيادة",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراند تفاح اخضر 2 لتر + 500 مل زيادة",
"Product_EN": null,
"Product_Id": "00014016 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2766,
"name": "سيجنال معجون اسنان وايتنج 100مل + فرشه هديه",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان وايتنج 100مل + فرشه هديه",
"Product_EN": "Signal Whitening Toothpaste100ml + Free Toothbrush",
"Product_Id": "00014017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2767,
"name": "لايف بوى صابون عنايه 175 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى صابون عنايه 175 جم",
"Product_EN": "Lifebuoy Soap Care 175 gm",
"Product_Id": "00014018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2768,
"name": "دوف شامبو اصلاح مكثف 600 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو اصلاح مكثف 600 مل",
"Product_EN": "Dove shampoo intense repair 600 ml",
"Product_Id": "00014019 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2769,
"name": "دوف مزيل عرق جوز هند 50 مل - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف مزيل عرق جوز هند 50 مل - موقوف",
"Product_EN": null,
"Product_Id": "00014020 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2770,
"name": "لايف بوى صابون متكامل 125 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى صابون متكامل 125 جم",
"Product_EN": "Lifebuoy Complete Soap 125 gm",
"Product_Id": "00014021 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2771,
"name": "كلوس اب معجون اسنان وايت اصلى 75 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوس اب معجون اسنان وايت اصلى 75 مل",
"Product_EN": "Closeup Toothpaste White Original 75 ml",
"Product_Id": "00014022 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2772,
"name": "كلوس اب معجون اسنان وايت جولد 75 مل",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوس اب معجون اسنان وايت جولد 75 مل",
"Product_EN": "Closeup Toothpaste White Gold 75 ml",
"Product_Id": "00014023 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2773,
"name": "ليبتون شاى اخضر صافى بدون مراره 100 فلتر",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر صافى بدون مراره 100 فلتر",
"Product_EN": "Lipton Pure Non-Bitter Green Tea 100 Bags",
"Product_Id": "00014024 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2774,
"name": "لايف بوى سائل غسيل ايدى 200 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى سائل غسيل ايدى 200 مل",
"Product_EN": "Lifebuoy Hand Wash 200 ml",
"Product_Id": "00014025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2775,
"name": "تريسمي شامبو نعومه وانسيابيه الكيراتين 400 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي شامبو نعومه وانسيابيه الكيراتين 400 مل",
"Product_EN": "Tresemme Keratin Smooth Smoothing Shampoo 400 ml",
"Product_Id": "00014026 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2776,
"name": "تريزيمى شامبو ترطيب للشعر الكيرلي 400 مل",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريزيمى شامبو ترطيب للشعر الكيرلي 400 مل",
"Product_EN": "Tresemme Shampoo For Curly Hair 400 ml",
"Product_Id": "00014027 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2777,
"name": "تريسمي شامبو تغذيه وتجديد 400 مل",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي شامبو تغذيه وتجديد 400 مل",
"Product_EN": "Botanix Nourish & Replenish Shampoo 400 ml",
"Product_Id": "00014028 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2778,
"name": "تريزيمى بلسم بحليب جوزالهند والصبار 200 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريزيمى بلسم بحليب جوزالهند والصبار 200 مل",
"Product_EN": "Tresemme Conditioner Coconut Milk &Aloe Vera 200ml",
"Product_Id": "00014029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2779,
"name": "لايف بوي شاور العنايه المتكامله 500 مل",
"price": 69,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي شاور العنايه المتكامله 500 مل",
"Product_EN": "Lifebuoy Shower Total Care 500 ml",
"Product_Id": "00014030 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2780,
"name": "لايف بوي شاور عناية ناعمه 500 مل",
"price": 69,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي شاور عناية ناعمه 500 مل",
"Product_EN": "Lifebuoy Soft Care Shower 500 ml",
"Product_Id": "00014031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2781,
"name": "لايف بوي شاور العنايه المتكامله 300 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي شاور العنايه المتكامله 300 مل",
"Product_EN": "Lifebuoy Shower Total Care 300 ml",
"Product_Id": "00014032 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2782,
"name": "لايف بوي شاور عنايه ناعمه 300 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي شاور عنايه ناعمه 300 مل",
"Product_EN": "Lifebuoy Shower Gentle Care 300 ml",
"Product_Id": "00014033 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2783,
"name": "تريسمي بلسم تغذيه وتجديد 200 مل",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي بلسم تغذيه وتجديد 200 مل",
"Product_EN": "Tresemme Nourishing&Replenishing Conditioner 200ml",
"Product_Id": "00014034 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2784,
"name": "تريسمي بلسم نعومه الكيراتين 200 مل",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي بلسم نعومه الكيراتين 200 مل",
"Product_EN": "Tresemme Keratin Smooth Conditioner 200 ml",
"Product_Id": "00014035 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2785,
"name": "سيجنال معجون اسنان كومبليت 100 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت 100 مل",
"Product_EN": "Signal Toothpaste Complete 100 ml",
"Product_Id": "00014036 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2786,
"name": "لوكس صابون كريمه غنيه 170جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون كريمه غنيه 170جم",
"Product_EN": "LUX Creamy Rich Soap 170 gm",
"Product_Id": "00014037 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2787,
"name": "لايف بوى سائل غسيل ايدى 450 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى سائل غسيل ايدى 450 مل",
"Product_EN": "Lifebuoy Hand Wash 450 ml",
"Product_Id": "00014038 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2788,
"name": "لايف بوى سائل غسيل ايدى 500 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى سائل غسيل ايدى 500 مل",
"Product_EN": "Lifebuoy Hand Wash 500 ml",
"Product_Id": "00014039 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2789,
"name": "نستله فينتس رقائق شوفان مخبوز زيتون واوريجانو 36جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله فينتس رقائق شوفان مخبوز زيتون واوريجانو 36جم",
"Product_EN": null,
"Product_Id": "00014042 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2790,
"name": "زاهر تورتة ايس كريم فانيليا & شيكولاتة",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم فانيليا & شيكولاتة",
"Product_EN": "Zaher Chocolate & Vanilla Ice Cream Torte",
"Product_Id": "00014043 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2791,
"name": "زاهر تورتة ايس كريم تشيز كيك",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم تشيز كيك",
"Product_EN": "Zaher Cheesecake",
"Product_Id": "00014044 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2792,
"name": "بيتى عصير مانجو واناناس 235 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو واناناس 235 مل",
"Product_EN": "Beyti Mango w Pineapple Juice 235 ml ",
"Product_Id": "00014046 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2793,
"name": "بيتى عصير فخفاخينا 235 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير فخفاخينا 235 مل",
"Product_EN": "Beyti Fakhfakhina Juice 235 ml",
"Product_Id": "00014047 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2794,
"name": "بيتى عصير يوسفى 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير يوسفى 1 لتر",
"Product_EN": "Beyti Tangerine Juice 1 L",
"Product_Id": "00014048 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2795,
"name": "برسيل مسحوق اتوماتيك لافندر 9 كجم",
"price": 205,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك لافندر 9 كجم",
"Product_EN": null,
"Product_Id": "00014049 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2796,
"name": "برسيل مسحوق اتوماتيك ابيض لافندر 2.5 كجم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك ابيض لافندر 2.5 كجم",
"Product_EN": null,
"Product_Id": "00014050 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2797,
"name": "زاهر ايس كريم بابلز وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم بابلز وزن",
"Product_EN": "Zaher Bubbles Ice Cream - Scalable ",
"Product_Id": "00014051 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2798,
"name": "توما هوك لحم بلدى وزن",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "توما هوك لحم بلدى وزن",
"Product_EN": null,
"Product_Id": "00014052 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2799,
"name": "تاج سلك مجلفن 3 ق",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "تاج سلك مجلفن 3 ق",
"Product_EN": null,
"Product_Id": "00014054 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2800,
"name": "سيلا ورق غذائي 30 * 175 م",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا ورق غذائي 30 * 175 م",
"Product_EN": null,
"Product_Id": "00014055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2801,
"name": "سيلا رول ورق غذائي 40×250جم",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول ورق غذائي 40×250جم",
"Product_EN": null,
"Product_Id": "00014056 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2802,
"name": "سيلا غطاء بوتجاز( 2غلاف )",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا غطاء بوتجاز( 2غلاف )",
"Product_EN": null,
"Product_Id": "00014057 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2803,
"name": "سيلا غطاء بوتجاز ثقيل (1غلاف )",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا غطاء بوتجاز ثقيل (1غلاف )",
"Product_EN": null,
"Product_Id": "00014058 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2804,
"name": "رولى رول قمامه 1 كيلو 60*70",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رولى رول قمامه 1 كيلو 60*70",
"Product_EN": null,
"Product_Id": "00014059 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2805,
"name": "ميجو فحم طبيعى 1 كجم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ميجو فحم طبيعى 1 كجم",
"Product_EN": null,
"Product_Id": "00014061 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2806,
"name": "جود داى صوص شيكولاته أنبوبة 120 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص شيكولاته أنبوبة 120 جم",
"Product_EN": null,
"Product_Id": "00014062 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2807,
"name": "جود داى صوص شيكولاته بيضاء أنبوبة 120جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص شيكولاته بيضاء أنبوبة 120جم",
"Product_EN": null,
"Product_Id": "00014063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2808,
"name": "جود داى صوص شيكولاته غامقه أنبوبة 120جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص شيكولاته غامقه أنبوبة 120جم",
"Product_EN": null,
"Product_Id": "00014064 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2809,
"name": "جود داى صوص فراوله أنبوبة 120جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص فراوله أنبوبة 120جم",
"Product_EN": null,
"Product_Id": "00014065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2810,
"name": "جود داى صوص كراميل أنبوبة 120جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص كراميل أنبوبة 120جم",
"Product_EN": null,
"Product_Id": "00014066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2811,
"name": "جود داى صوص بلوبيرى أنبوبة 120جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص بلوبيرى أنبوبة 120جم",
"Product_EN": null,
"Product_Id": "00014067 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2812,
"name": "جود داى صوص شيكولاته بجوز الهند أنبوبة 120جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى صوص شيكولاته بجوز الهند أنبوبة 120جم",
"Product_EN": null,
"Product_Id": "00014068 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2813,
"name": "ماكسيون شيكولاتة جولد بجوز الهند واللوز 100 جم ",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاتة جولد بجوز الهند واللوز 100 جم ",
"Product_EN": null,
"Product_Id": "00014069 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2814,
"name": "ماكسيون شيكولاتة جولد بيضاء بالفسدق 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاتة جولد بيضاء بالفسدق 100 جم",
"Product_EN": null,
"Product_Id": "00014070 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2815,
"name": "ماكسيون شيكولاته دارك 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته دارك 100 جم",
"Product_EN": null,
"Product_Id": "00014071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2816,
"name": "ناكسيون شيكولاته حليب 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناكسيون شيكولاته حليب 100 جم",
"Product_EN": null,
"Product_Id": "00014072 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2817,
"name": "ماكسيون شيكولاته لوتس 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته لوتس 100 جم",
"Product_EN": null,
"Product_Id": "00014073 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2818,
"name": "ماكسيون شيكولاته ايس كريم 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته ايس كريم 100 جم",
"Product_EN": null,
"Product_Id": "00014074 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2819,
"name": "ماكسيون شيكولاته مره 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته مره 100 جم",
"Product_EN": null,
"Product_Id": "00014075 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2820,
"name": "لمار كريمه خفق 500 مل",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لمار كريمه خفق 500 مل",
"Product_EN": "Lamar Whipping Cream - 500 ml",
"Product_Id": "00014076 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2821,
"name": "لمار كريمه طهى 500 مل",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لمار كريمه طهى 500 مل",
"Product_EN": "Lamar Cooking Cream - 500 ml ",
"Product_Id": "00014077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2822,
"name": "ماكسيون شيكولاته بالنوجه 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته بالنوجه 100 جم",
"Product_EN": null,
"Product_Id": "00014078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2823,
"name": "ماكسيون شيكولاته دارك بندق 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته دارك بندق 100 جم",
"Product_EN": null,
"Product_Id": "00014079 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2824,
"name": "ماكسيون شيكولاته براونى 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته براونى 100 جم",
"Product_EN": null,
"Product_Id": "00014080 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2825,
"name": "ماكسيون شيكولاته ماكيتولاتيه 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته ماكيتولاتيه 100 جم",
"Product_EN": null,
"Product_Id": "00014081 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2826,
"name": "ماكسيون شيكولاته شيكولاته بالحليب والبندق 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته شيكولاته بالحليب والبندق 100 جم",
"Product_EN": "Maxion Chocolate Milk & Hazelnut Chocolate 100 gm",
"Product_Id": "00014082 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2827,
"name": "ماكسيون شوجتين بيرفكت ماتش بالقرفة 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شوجتين بيرفكت ماتش بالقرفة 100 جم",
"Product_EN": null,
"Product_Id": "00014083 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2828,
"name": "ماكسيون شوجتين بيرفكت ماتش بالفيشار والكراميل 100",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شوجتين بيرفكت ماتش بالفيشار والكراميل 100",
"Product_EN": null,
"Product_Id": "00014084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2829,
"name": "ماكسيون شيكولاته بالحليب كامل الدسم 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته بالحليب كامل الدسم 100 جم",
"Product_EN": null,
"Product_Id": "00014085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2830,
"name": "ماكسيون شيكولاته بالنوجه 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شيكولاته بالنوجه 100 جم",
"Product_EN": null,
"Product_Id": "00014086 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2831,
"name": "تيفاني شوك فنجر بسكويت قمح مقرمش 38 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني شوك فنجر بسكويت قمح مقرمش 38 جم",
"Product_EN": null,
"Product_Id": "00014087 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2832,
"name": "تيفانى بريك سوبا اصابع ويفر بالكراميل 38 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بريك سوبا اصابع ويفر بالكراميل 38 جم",
"Product_EN": null,
"Product_Id": "00014088 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2833,
"name": "بيبيتو جيلي ثور استكس بلاك كرنت 35 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبيتو جيلي ثور استكس بلاك كرنت 35 جم",
"Product_EN": null,
"Product_Id": "00014089 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2834,
"name": "بيبتو جيلى ثور استكس تفاح 35 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبتو جيلى ثور استكس تفاح 35 جم",
"Product_EN": null,
"Product_Id": "00014090 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2835,
"name": "بيبتو جيلى ثور استكس كولا 35 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبتو جيلى ثور استكس كولا 35 جم",
"Product_EN": null,
"Product_Id": "00014091 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2836,
"name": "بيبتو جيلى ثور استكس فراولة 35 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبتو جيلى ثور استكس فراولة 35 جم",
"Product_EN": null,
"Product_Id": "00014092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2837,
"name": "بيبتو جيلى ثور استكس بطيخ 35 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبتو جيلى ثور استكس بطيخ 35 جم",
"Product_EN": null,
"Product_Id": "00014093 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2838,
"name": "جرينز شوفان أبيض كيس 500 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جرينز شوفان أبيض كيس 500 جم",
"Product_EN": "Greens White Oats Bag 500 gm",
"Product_Id": "00014094 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2839,
"name": "مونارك مشروم شرائح 400 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مونارك مشروم شرائح 400 جم",
"Product_EN": null,
"Product_Id": "00014095 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2840,
"name": "جرينز مشروم شرائح 800 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جرينز مشروم شرائح 800 جم",
"Product_EN": null,
"Product_Id": "00014096 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2841,
"name": "جراندوز جولد قهوه سريعة التحضير 200 جم",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندوز جولد قهوه سريعة التحضير 200 جم",
"Product_EN": null,
"Product_Id": "00014097 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2842,
"name": "جراندوز جولد قهوه سريعة التحضير 100 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندوز جولد قهوه سريعة التحضير 100 جم",
"Product_EN": null,
"Product_Id": "00014098 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2843,
"name": "جراندوز موكا قهوه سريعة التحضير 100 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراندوز موكا قهوه سريعة التحضير 100 جم",
"Product_EN": null,
"Product_Id": "00014099 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2844,
"name": "دريسينج ثاوزند ايلاند 250 جم",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريسينج ثاوزند ايلاند 250 جم",
"Product_EN": null,
"Product_Id": "00014100 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2845,
"name": "ريميا دريسينج فرنسية 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريميا دريسينج فرنسية 250 مل",
"Product_EN": null,
"Product_Id": "00014101 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2846,
"name": "دريسينج بلوتشيز 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريسينج بلوتشيز 250 مل",
"Product_EN": null,
"Product_Id": "00014102 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2847,
"name": "دريسينج سيزر 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريسينج سيزر 250 مل",
"Product_EN": null,
"Product_Id": "00014103 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2848,
"name": "ريميا دريسينج كريمة 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريميا دريسينج كريمة 250 مل",
"Product_EN": null,
"Product_Id": "00014104 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2849,
"name": "ريميا صوص شيلى 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريميا صوص شيلى 250 مل",
"Product_EN": null,
"Product_Id": "00014105 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2850,
"name": "ريميا صوص الثوم 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريميا صوص الثوم 250 مل",
"Product_EN": null,
"Product_Id": "00014106 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2851,
"name": "ريميا دريسنج ايطاليه 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريميا دريسنج ايطاليه 250 مل",
"Product_EN": null,
"Product_Id": "00014107 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2852,
"name": "ريميا صلصه مكسيكيه 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريميا صلصه مكسيكيه 250 مل",
"Product_EN": null,
"Product_Id": "00014108 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2853,
"name": "ريميا صوص باربيكيو 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريميا صوص باربيكيو 250 مل",
"Product_EN": null,
"Product_Id": "00014109 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2854,
"name": "ريميا دريسينج الثوم 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريميا دريسينج الثوم 250 مل",
"Product_EN": null,
"Product_Id": "00014110 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2855,
"name": "رودس جبنه بسطرمه 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه بسطرمه 250 جم",
"Product_EN": "Rhodes Pasterma Cheese 250 gm",
"Product_Id": "00014111 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2856,
"name": "رودس جبنه بسطرمه 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه بسطرمه 500 جم",
"Product_EN": "Rhodes Pasterma Cheese 250 gm",
"Product_Id": "00014112 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2857,
"name": "سبرايت زيرو كان 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت زيرو كان 300 مل",
"Product_EN": "Sprite Zero Can 300 ml",
"Product_Id": "00014113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2858,
"name": "كوكاكولا بلاستيك زيرو 950 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا بلاستيك زيرو 950 مل",
"Product_EN": "Coca-Cola Zero Plastic 950 ml",
"Product_Id": "00014114 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2859,
"name": "زاهر ايس كريم بطيخ وزن",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم بطيخ وزن",
"Product_EN": "Zaher Watermelon Ice Cream - Scalable ",
"Product_Id": "00014115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2860,
"name": "فريبس - فاكهة مجففة فراولة 12 جرم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريبس - فاكهة مجففة فراولة 12 جرم",
"Product_EN": null,
"Product_Id": "00014116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2861,
"name": "فريبس - فاكهة مجففة تفاح 14 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريبس - فاكهة مجففة تفاح 14 جم",
"Product_EN": null,
"Product_Id": "00014117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2862,
"name": "فريبس - فاكهة مجففة عنب 16 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريبس - فاكهة مجففة عنب 16 جم",
"Product_EN": null,
"Product_Id": "00014118 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2863,
"name": "برافو بطاطس كاتشب 80-90 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برافو بطاطس كاتشب 80-90 جم",
"Product_EN": null,
"Product_Id": "00014119 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2864,
"name": "برافو بطاطس شطة وليمون 80-90 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برافو بطاطس شطة وليمون 80-90 جم",
"Product_EN": null,
"Product_Id": "00014120 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2865,
"name": "برافو بطاطس كباب 80-90 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برافو بطاطس كباب 80-90 جم",
"Product_EN": null,
"Product_Id": "00014121 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2866,
"name": "برافو بطاطس فراخ 80-90 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برافو بطاطس فراخ 80-90 جم",
"Product_EN": null,
"Product_Id": "00014122 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2867,
"name": "برافو بطاطس جبنة مكس 80-90 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برافو بطاطس جبنة مكس 80-90 جم",
"Product_EN": null,
"Product_Id": "00014123 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2868,
"name": "برافو بطاطس كاتشب 50-57 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برافو بطاطس كاتشب 50-57 جم",
"Product_EN": null,
"Product_Id": "00014124 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2869,
"name": "برافو بطاطس شطة وليمون 50-57 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برافو بطاطس شطة وليمون 50-57 جم",
"Product_EN": null,
"Product_Id": "00014125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2870,
"name": "برافو بطاطس كباب 50-57 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برافو بطاطس كباب 50-57 جم",
"Product_EN": null,
"Product_Id": "00014126 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2871,
"name": "برافو بطاطس فراخ 50-57 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برافو بطاطس فراخ 50-57 جم",
"Product_EN": null,
"Product_Id": "00014127 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2872,
"name": "برافو بطاطس جبنة مكس 50-57 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برافو بطاطس جبنة مكس 50-57 جم",
"Product_EN": null,
"Product_Id": "00014128 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2873,
"name": "بافيتوس بيتزا 90-100 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافيتوس بيتزا 90-100 جم",
"Product_EN": null,
"Product_Id": "00014129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2874,
"name": "بافيتوس جبنة 90-100 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافيتوس جبنة 90-100 جم",
"Product_EN": null,
"Product_Id": "00014130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2875,
"name": "جو ميكس ملح وخل 80-90 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جو ميكس ملح وخل 80-90 جم",
"Product_EN": null,
"Product_Id": "00014131 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2876,
"name": "جو ميكس سويت شيلي 80-90 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جو ميكس سويت شيلي 80-90 جم",
"Product_EN": null,
"Product_Id": "00014132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2877,
"name": "جو ميكس كريمة بالاعشاب 80-90 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جو ميكس كريمة بالاعشاب 80-90 جم",
"Product_EN": null,
"Product_Id": "00014133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2878,
"name": "رو بطاطس ملح بحر وخل بلسميك 50 -57 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس ملح بحر وخل بلسميك 50 -57 جم",
"Product_EN": null,
"Product_Id": "00014134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2879,
"name": "رو بطاطس ملح بحر 95-105 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس ملح بحر 95-105 جم",
"Product_EN": null,
"Product_Id": "00014135 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2880,
"name": "رو بطاطس ملح بحر وخل بلسميك 95-105 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس ملح بحر وخل بلسميك 95-105 جم",
"Product_EN": null,
"Product_Id": "00014136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2881,
"name": "رو بطاطس فلفل حلو 95 -105 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس فلفل حلو 95 -105 جم",
"Product_EN": null,
"Product_Id": "00014137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2882,
"name": "رو بطاطس جبنة شيدر وبصل 95-105 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس جبنة شيدر وبصل 95-105 جم",
"Product_EN": null,
"Product_Id": "00014138 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2883,
"name": "رو بطاطس فلفل حار 95 - 105 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس فلفل حار 95 - 105 جم",
"Product_EN": null,
"Product_Id": "00014139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2884,
"name": "رو بطاطس هيكوري مدخن 95-105 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس هيكوري مدخن 95-105 جم",
"Product_EN": null,
"Product_Id": "00014140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2885,
"name": "برسيل جل اتوماتيك برميوم 2.2 كجم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك برميوم 2.2 كجم",
"Product_EN": null,
"Product_Id": "00014141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2886,
"name": "الكبوس شاى اخضر نعناع 25 فلتر",
"price": 13.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس شاى اخضر نعناع 25 فلتر",
"Product_EN": null,
"Product_Id": "00014142 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2887,
"name": "الكبوس شاى خرز 250 جم",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس شاى خرز 250 جم",
"Product_EN": null,
"Product_Id": "00014143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2888,
"name": "الكبوس كافيه سريع الذوبان كلاسيك 50 جم",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس كافيه سريع الذوبان كلاسيك 50 جم",
"Product_EN": null,
"Product_Id": "00014144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2889,
"name": "الكبوس كافيه سريع الذوبان جولد 50 جم",
"price": 40.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس كافيه سريع الذوبان جولد 50 جم",
"Product_EN": null,
"Product_Id": "00014145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2890,
"name": "لاكتيل مشروب رايب لايت 440 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل مشروب رايب لايت 440 جم",
"Product_EN": "Lactel Rayab Light Drink 440 gm",
"Product_Id": "00014146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2891,
"name": "الكبوس كافيه سريع الذوبان كلاسيك 100 جم",
"price": 51.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس كافيه سريع الذوبان كلاسيك 100 جم",
"Product_EN": null,
"Product_Id": "00014147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2892,
"name": "الكبوس كافيه سريع الذوبان جولد 100 جم",
"price": 74.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس كافيه سريع الذوبان جولد 100 جم",
"Product_EN": null,
"Product_Id": "00014148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2893,
"name": "الكبوس كافيه سريع الذوبان كلاسيك 200 جم",
"price": 102,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس كافيه سريع الذوبان كلاسيك 200 جم",
"Product_EN": null,
"Product_Id": "00014149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2894,
"name": "الكبوس كافيه سريع الذوبان جولد 200 جم",
"price": 138,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس كافيه سريع الذوبان جولد 200 جم",
"Product_EN": null,
"Product_Id": "00014150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2895,
"name": "بافيتوس كاتشب 90 - 100 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافيتوس كاتشب 90 - 100 جم",
"Product_EN": null,
"Product_Id": "00014151 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2896,
"name": "جينرال منظف حمامات 50 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف حمامات 50 جم",
"Product_EN": null,
"Product_Id": "00014153 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2897,
"name": "برسيل مسحوق اتوماتيك رائحه الزهور 8 كجم",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك رائحه الزهور 8 كجم",
"Product_EN": null,
"Product_Id": "00014154 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2898,
"name": "كورونا شكولاتة ماجيك 35 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شكولاتة ماجيك 35 جم",
"Product_EN": null,
"Product_Id": "00014155 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2899,
"name": "كورونا شيكولاتة نابوليتان نعناع 15 ق",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة نابوليتان نعناع 15 ق",
"Product_EN": null,
"Product_Id": "00014156 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2900,
"name": "كورونا شيكولاتة نابوليتان دارك 15 ق",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة نابوليتان دارك 15 ق",
"Product_EN": null,
"Product_Id": "00014157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2901,
"name": "بيمبو اورجينال 33 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيمبو اورجينال 33 جم",
"Product_EN": null,
"Product_Id": "00014159 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2902,
"name": "كورونا ويفر نياتى 4 ق",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا ويفر نياتى 4 ق",
"Product_EN": null,
"Product_Id": "00014160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2903,
"name": "كورونا شيكولاتة بندق 55 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة بندق 55 جم",
"Product_EN": null,
"Product_Id": "00014161 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2904,
"name": "فيتراك مربى فراوله 900 جم + شاى 40 جم هديه",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 900 جم + شاى 40 جم هديه",
"Product_EN": null,
"Product_Id": "00014162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2905,
"name": "اورال بي الترا ثين لون أسود 2+1 عرض",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بي الترا ثين لون أسود 2+1 عرض",
"Product_EN": null,
"Product_Id": "00014163 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2906,
"name": "أورال بي غسول نعناع 500 مل",
"price": 69,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "أورال بي غسول نعناع 500 مل",
"Product_EN": null,
"Product_Id": "00014164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2907,
"name": "اولويز فوط صحيه ماكسى سميك 9 فوط",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز فوط صحيه ماكسى سميك 9 فوط",
"Product_EN": null,
"Product_Id": "00014165 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2908,
"name": "اولويز يومي فوط صحيه طويل 16 فوطه",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز يومي فوط صحيه طويل 16 فوطه",
"Product_EN": null,
"Product_Id": "00014166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2909,
"name": "أولويز يومي فوط صحيه طويل 40 فوطة",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "أولويز يومي فوط صحيه طويل 40 فوطة",
"Product_EN": null,
"Product_Id": "00014167 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2910,
"name": "اورال بى فرشاه اسنان برواكسبرت اكسترا كلين ناعمه",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى فرشاه اسنان برواكسبرت اكسترا كلين ناعمه",
"Product_EN": null,
"Product_Id": "00014168 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2911,
"name": "اورال بي عنايه باللثه ومينا على الاسنان 1+1 ق",
"price": 59.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بي عنايه باللثه ومينا على الاسنان 1+1 ق",
"Product_EN": null,
"Product_Id": "00014169 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2912,
"name": "تايد اتوماتيك ليمون2*(4ك+2ك)+فيرى ليمون 500 مل",
"price": 171,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد اتوماتيك ليمون2*(4ك+2ك)+فيرى ليمون 500 مل",
"Product_EN": null,
"Product_Id": "00014170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2913,
"name": "نستله نيدو الاساسي حليب مجفف 25 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نيدو الاساسي حليب مجفف 25 جم",
"Product_EN": null,
"Product_Id": "00014171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2914,
"name": "عصب بقرى وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عصب بقرى وزن",
"Product_EN": null,
"Product_Id": "00014172 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2915,
"name": "لايف بوي سائل غسيل ايدى عنايه متكامله 200 مل ",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي سائل غسيل ايدى عنايه متكامله 200 مل ",
"Product_EN": "Lifebuoy Hand Wash Liquid Complete Care 200 ml",
"Product_Id": "00014173 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2916,
"name": "سيجنال فرشاة اسنان pc",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال فرشاة اسنان pc",
"Product_EN": "Signal Toothbrush Pc",
"Product_Id": "00014174 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2917,
"name": "ريكسونا حريمي انتعاش الاستحمام 150 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا حريمي انتعاش الاستحمام 150 مل",
"Product_EN": "Rexona Women's Shower Freshness 150 ml",
"Product_Id": "00014175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2918,
"name": "تريسمي شامبو نعومه وانسيابيه الكيراتين 600 مل",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي شامبو نعومه وانسيابيه الكيراتين 600 مل",
"Product_EN": "Tresemme Keratin Smooth Smoothing Shampoo 600 ml",
"Product_Id": "00014176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2919,
"name": "دوف مزيل عرق غير مرئي 50 مل",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف مزيل عرق غير مرئي 50 مل",
"Product_EN": "Dove Antiperspirant Invisible Dry 50 ml",
"Product_Id": "00014177 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2920,
"name": "ريكسونا رجالي مضاد للبكتيريا + غير مرئي 50 مل",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا رجالي مضاد للبكتيريا + غير مرئي 50 مل",
"Product_EN": "Rexona Men Anti-Bacterial + Invisible 50ml",
"Product_Id": "00014178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2921,
"name": "صانسيلك شامبو زيت جوز الهند المرطب 600 مل",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو زيت جوز الهند المرطب 600 مل",
"Product_EN": "Sunsilk Shampoo Coconut Oil Moisturizing 600 ml",
"Product_Id": "00014180 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2922,
"name": "كلير شامبو رجالي للتنظيف العميق 180 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو رجالي للتنظيف العميق 180 مل",
"Product_EN": "Clear Shampoo Men's Deep Clean 180 ml",
"Product_Id": "00014181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2923,
"name": "صانسيلك زيت الزيتون والافوكادو 250 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك زيت الزيتون والافوكادو 250 مل",
"Product_EN": "Sunsilk Avocado & Olive Oil 250 ml",
"Product_Id": "00014182 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2924,
"name": "دوف شامبو ضد تساقط الشعر 400 مل",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو ضد تساقط الشعر 400 مل",
"Product_EN": "Dove Shampoo Anti Hair Fall 400 ml",
"Product_Id": "00014183 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2925,
"name": "دوف شامبو اصلاح مكثف للشعر 400 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو اصلاح مكثف للشعر 400 مل",
"Product_EN": "Dove Shampoo Intensive Repair 400 ml",
"Product_Id": "00014184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2926,
"name": "كلير شامبو رجالي الاسطوره 360 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو رجالي الاسطوره 360 مل",
"Product_EN": "Clear Shampoo legend For Men 360 ml",
"Product_Id": "00014185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2927,
"name": "نستله بودينج شيكولاتة جولد",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله بودينج شيكولاتة جولد",
"Product_EN": "Nestle Gold Chocolate Pudding ",
"Product_Id": "00000003 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2928,
"name": "دانون اكتيفيا زبادى فراولة 110 جم",
"price": 3.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا زبادى فراولة 110 جم",
"Product_EN": "Danone Activia Strawberry Yogurt 110 gm",
"Product_Id": "00000004 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2929,
"name": "الدلتا ارز 1 كجم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا ارز 1 كجم",
"Product_EN": "Delta Rice 1 kg",
"Product_Id": "00000005 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2930,
"name": "هاينز كلاسيك مايونيز 310 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كلاسيك مايونيز 310 جم",
"Product_EN": "Heinz Classic Mayonnaise 310 gm",
"Product_Id": "00000006 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2931,
"name": "كوكس بيكنج بودر - موقوف",
"price": 1.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس بيكنج بودر - موقوف",
"Product_EN": "Mirinda Apple Green Can 330 ml",
"Product_Id": "00000007 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2932,
"name": "سوهاجى ارز مصرى 5 كجم",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى ارز مصرى 5 كجم",
"Product_EN": "Suhagy Egyptian Rice 5 kg",
"Product_Id": "00000008 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2933,
"name": "هاينز مستردة 235 جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز مستردة 235 جم",
"Product_EN": "Heinz Mustard 235 gm",
"Product_Id": "00000009 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2934,
"name": "سوهاجى دقيق جميع الاستعمالات 1 كجم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى دقيق جميع الاستعمالات 1 كجم",
"Product_EN": "Suhagy All-Purpose Flour 1 kg",
"Product_Id": "00000010 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2935,
"name": "فيتراك مربى تين كريمى 380 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين كريمى 380 جم",
"Product_EN": "Vitrac Creamy Fig Jam 380 gm",
"Product_Id": "00000011 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2936,
"name": "كل يوم عصير تفاح 200مل - موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كل يوم عصير تفاح 200مل - موقوف",
"Product_EN": null,
"Product_Id": "00000012 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2937,
"name": "السوهاجى ارز بسمتى 1ك - موقوف",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السوهاجى ارز بسمتى 1ك - موقوف",
"Product_EN": null,
"Product_Id": "00000013 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2938,
"name": "كوكس فانليا ظرف 1 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس فانليا ظرف 1 جم",
"Product_EN": null,
"Product_Id": "00000015 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2939,
"name": "فيتراك مربى مشمش صفيح 850 جم",
"price": 21.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش صفيح 850 جم",
"Product_EN": null,
"Product_Id": "00000016 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2940,
"name": "الضحى ارز مصرى 1 كجم",
"price": 16.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى ارز مصرى 1 كجم",
"Product_EN": "Al-Doha Egyptian Rice 1 kg",
"Product_Id": "00000017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2941,
"name": "دانون اكتيفيا زبادى فواكه مشمش 110 جم",
"price": 3.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا زبادى فواكه مشمش 110 جم",
"Product_EN": "Danone Activia Yogurt Apricot 110 gm",
"Product_Id": "00000018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2942,
"name": "الضحى ارز مصرى 5 كجم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى ارز مصرى 5 كجم",
"Product_EN": "Al-Doha Egyptian Rice 5 kg",
"Product_Id": "00000020 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2943,
"name": "فيتراك شربات تمر هندى 770مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات تمر هندى 770مل",
"Product_EN": null,
"Product_Id": "00000021 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2944,
"name": "دريم كيك شيف 23 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كيك شيف 23 جم",
"Product_EN": "Dreem Cake Chef 23 gm",
"Product_Id": "00000022 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2945,
"name": "فيتراك مربى مشمش 900 جم ( موقوف )",
"price": 21.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 900 جم ( موقوف )",
"Product_EN": null,
"Product_Id": "00000023 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2946,
"name": "سوهاجى عدس اصفر 500 جم ",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى عدس اصفر 500 جم ",
"Product_EN": "Suhagy Bulgur 500 g",
"Product_Id": "00000024 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2947,
"name": "دانون زبادى طبيعى 105جم 5 ق+1 مجانا - موقوف",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى 105جم 5 ق+1 مجانا - موقوف",
"Product_EN": "Danone Natural Yogurt 105 gm 5 Pieces + 1 Free",
"Product_Id": "00000025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2948,
"name": "كل يوم عصير جوافة 200مل - موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كل يوم عصير جوافة 200مل - موقوف",
"Product_EN": null,
"Product_Id": "00000026 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2949,
"name": "سوهاجى عدس اصفر 500جم - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى عدس اصفر 500جم - موقوف",
"Product_EN": null,
"Product_Id": "00000027 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2950,
"name": "الشروق تمر طبق 300 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر طبق 300 جم",
"Product_EN": "Al Shorouk Dates Platter 300 gm",
"Product_Id": "00000028 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2951,
"name": "كل يوم عصير كوكتيل200مل - موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كل يوم عصير كوكتيل200مل - موقوف",
"Product_EN": null,
"Product_Id": "00000029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2952,
"name": "دانون مشروب زبادى بالفراوله 220 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب زبادى بالفراوله 220 جم",
"Product_EN": "Danone Strawberry Yogurt Drink 220 gm",
"Product_Id": "00000030 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2953,
"name": "سوهاجى فاصوليا بيضاء 500 جم ",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى فاصوليا بيضاء 500 جم ",
"Product_EN": "Suhagy Flour 1 Kg",
"Product_Id": "00000031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2954,
"name": "الشروق تمور طبق 550 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمور طبق 550 جم",
"Product_EN": "Al Shorouk Dates Platter 550 gm",
"Product_Id": "00000032 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2955,
"name": "ياهوو عصير مانجو 250ملل - موقوف",
"price": 2.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ياهوو عصير مانجو 250ملل - موقوف",
"Product_EN": null,
"Product_Id": "00000033 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2956,
"name": "سوهاجى قمح مبشور 500 جم ",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى قمح مبشور 500 جم ",
"Product_EN": "Suhagy Frek Crushed 500 g",
"Product_Id": "00000034 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2957,
"name": "الشروق تمر الوادى علبه 550 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر الوادى علبه 550 جم",
"Product_EN": "Al-Shorouk Valley Dates 550 gm",
"Product_Id": "00000035 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2958,
"name": "دانون مشروب زبادى بالخوخ 220 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب زبادى بالخوخ 220 جم",
"Product_EN": "Danone Peach Yogurt Drink 220 gm",
"Product_Id": "00000036 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2959,
"name": "باندا موزاريلا 350 جم",
"price": 23.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا موزاريلا 350 جم",
"Product_EN": null,
"Product_Id": "00000037 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2960,
"name": "ياهوو عصير جوافة زجاج 1لتر - موقوف",
"price": 9.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ياهوو عصير جوافة زجاج 1لتر - موقوف",
"Product_EN": null,
"Product_Id": "00000038 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2961,
"name": "الضحى فريك بلدى 500 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى فريك بلدى 500 جم",
"Product_EN": "Al Doha Freekeh 500 gm",
"Product_Id": "00000039 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2962,
"name": "دانون مشروب زبادى بالخوخ 400 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب زبادى بالخوخ 400 جم",
"Product_EN": "Danone Peach Yogurt Drink 400 gm",
"Product_Id": "00000040 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2963,
"name": "ياهوو عصير مانجو زجاج 1لتر - موقوف",
"price": 9.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ياهوو عصير مانجو زجاج 1لتر - موقوف",
"Product_EN": null,
"Product_Id": "00000041 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2964,
"name": "باندا موزاريلا 200 جم",
"price": 14.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا موزاريلا 200 جم",
"Product_EN": null,
"Product_Id": "00000042 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2965,
"name": "جهينه كلاسيك عصير تفاح 235 مل",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير تفاح 235 مل",
"Product_EN": "Juhayna Apple Juice 235 ml",
"Product_Id": "00000043 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2966,
"name": "الشروق تمر الوادى 700 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر الوادى 700 جم",
"Product_EN": "Al Shorouk Dates 700 gm",
"Product_Id": "00000044 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2967,
"name": "جهينه كلاسيك عصير مانجو 235 مل",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير مانجو 235 مل",
"Product_EN": "Juhayna Mango Juice 235 ml",
"Product_Id": "00000045 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2968,
"name": "جهينه كلاسيك عصير جوافة 235 مل",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير جوافة 235 مل",
"Product_EN": "Juhayna Guava Juice 235 ml",
"Product_Id": "00000046 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2969,
"name": "جهينه كلاسيك عصير كوكتيل 235 مل",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير كوكتيل 235 مل",
"Product_EN": "Juhayna Cocktail Juice 235 ml",
"Product_Id": "00000048 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2970,
"name": "القرشى تمر الوادى 650 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر الوادى 650 جم",
"Product_EN": "Al Qurashi Dates Al Wadi 650 gm",
"Product_Id": "00000049 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2971,
"name": "جهينه كلاسيك عصير برتقال 235 مل",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير برتقال 235 مل",
"Product_EN": "Juhayna Orange Juice 235 ml",
"Product_Id": "00000050 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2972,
"name": "باندا جبنة كوبيات 240 جم 2 ق",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة كوبيات 240 جم 2 ق",
"Product_EN": null,
"Product_Id": "00000051 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2973,
"name": "دوني بسكويت ساده",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوني بسكويت ساده",
"Product_EN": "Donny Biscuits plain",
"Product_Id": "00000052 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2974,
"name": "جهينة عصير رمان 235ملل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير رمان 235ملل",
"Product_EN": "Juhayna Pomegranate 235 ml",
"Product_Id": "00000053 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2975,
"name": "بيمبو دابل شوكو بسكويت مغطي بالشيكولاتة 33 جم ",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيمبو دابل شوكو بسكويت مغطي بالشيكولاتة 33 جم ",
"Product_EN": null,
"Product_Id": "00000055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2976,
"name": "جهينة عصير اناناس كنتالوب 235 ملل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير اناناس كنتالوب 235 ملل",
"Product_EN": "Juhayna Cantaloupe w Pineapple Juice 235 ml",
"Product_Id": "00000056 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2977,
"name": "كورونا بى وان 1 ق",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا بى وان 1 ق",
"Product_EN": null,
"Product_Id": "00000057 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2978,
"name": "كورونا بسكويت مارى 170 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا بسكويت مارى 170 جم",
"Product_EN": null,
"Product_Id": "00000058 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2979,
"name": "جهينه بيورعصير كوكتيل 1 لتر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيورعصير كوكتيل 1 لتر",
"Product_EN": "Juhayna Pure Cocktail Juice 1 L",
"Product_Id": "00000059 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2980,
"name": "صولا بسكويت ويفر شيكولاتة - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا بسكويت ويفر شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00000060 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2981,
"name": "جهينه بيور عصير مانجو وخوخ 1 لتر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيور عصير مانجو وخوخ 1 لتر",
"Product_EN": "Juhayna Pure Mango w Peach Juice 1 L",
"Product_Id": "00000061 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2982,
"name": "عبور لاند جبنه فيتا 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا 125 جم",
"Product_EN": "Obour Land Feta Cheese 125 gm",
"Product_Id": "00000062 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2983,
"name": "صولا بسكويت ويفر - موقوف",
"price": 1.62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا بسكويت ويفر - موقوف",
"Product_EN": null,
"Product_Id": "00000063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2984,
"name": "جهينة عصير رمان 1لتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير رمان 1لتر",
"Product_EN": "Juhayna Pure Pomegranate Juice 1 L",
"Product_Id": "00000064 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2985,
"name": "بيمبو بسكويت جولد 37جم - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيمبو بسكويت جولد 37جم - موقوف",
"Product_EN": null,
"Product_Id": "00000065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2986,
"name": "جهينه كلاسيك عصير مانجو 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير مانجو 1 لتر",
"Product_EN": "Juhayna Mango Juice 1 L",
"Product_Id": "00000066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2987,
"name": "عبور لاند جبنه اسطنبولى 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه اسطنبولى 125 جم",
"Product_EN": "Obour Land Istanbully Cheese 125 gm",
"Product_Id": "00000067 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2988,
"name": "جهينه كلاسيك عصير برتقال 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير برتقال 1 لتر",
"Product_EN": "Juhayna Orange Juice 1 L",
"Product_Id": "00000068 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2989,
"name": "الطاهيه فول مدمس بالكمون 400 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه فول مدمس بالكمون 400 جم",
"Product_EN": "Al Tahya Fava Beans Plain Fava Cumin 400 gm",
"Product_Id": "00000069 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2990,
"name": "جهينه كلاسيك عصير جوافه 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير جوافه 1 لتر",
"Product_EN": "Juhayna Guava Juice 1 L",
"Product_Id": "00000070 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2991,
"name": "عبور لاند جبنه فيتا زيتون 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا زيتون 125 جم",
"Product_EN": "Obour Land Feta Cheese Olive 125 gm",
"Product_Id": "00000071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2992,
"name": "جهينه كلاسيك عصير كوكتيل 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير كوكتيل 1 لتر",
"Product_EN": "Juhayna Cocktail Juice 1 L",
"Product_Id": "00000072 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2993,
"name": "العلا عين جمل مقشر 40جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا عين جمل مقشر 40جم",
"Product_EN": null,
"Product_Id": "00000073 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2994,
"name": "جهينه كلاسيك عصير تفاح 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير تفاح 1 لتر",
"Product_EN": "Juhayna Apple Juice 1 L",
"Product_Id": "00000074 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2995,
"name": "عبور لاند جبنه فيتا زيتون 250 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا زيتون 250 جم",
"Product_EN": "Obour Land Feta Cheese Olive 250 gm",
"Product_Id": "00000075 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2996,
"name": "العلا فلفل اسود ناعم 17جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا فلفل اسود ناعم 17جم",
"Product_EN": null,
"Product_Id": "00000076 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2997,
"name": "دانجو زبادى فراولة 5ق+1 عرض - موقوف",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو زبادى فراولة 5ق+1 عرض - موقوف",
"Product_EN": null,
"Product_Id": "00000077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2998,
"name": "جهينه كلاسيك عصير عنب احمر 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير عنب احمر 1 لتر",
"Product_EN": "Juhayna Red Grapes Juice 1 L",
"Product_Id": "00000078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 2999,
"name": "العلا شطه هندي 40جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا شطه هندي 40جم",
"Product_EN": null,
"Product_Id": "00000079 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3000,
"name": "جرين لاند جبنه اسطنبولى 500 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه اسطنبولى 500 جم",
"Product_EN": "Green Land Istanbouli Cheese 500 gm",
"Product_Id": "00000080 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3001,
"name": "بيتى عصير اناناس 1لتر 100%بيور - موقوف",
"price": 19.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير اناناس 1لتر 100%بيور - موقوف",
"Product_EN": null,
"Product_Id": "00000081 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3002,
"name": "جرين لاند جبنه اسطمبولى 250 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه اسطمبولى 250 جم",
"Product_EN": "Green Land Istanbouli Cheese 250 gm",
"Product_Id": "00000082 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3003,
"name": "دانون زبادى طبيعى عرض - موقوف",
"price": 15.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى عرض - موقوف",
"Product_EN": null,
"Product_Id": "00000083 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3004,
"name": "دانون اكتيفيا زبادى طبيعى 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا زبادى طبيعى 105 جم",
"Product_EN": "Danone Activia Natural Yogurt 105 gm",
"Product_Id": "00000084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3005,
"name": "دانون زبادى فراولة 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى فراولة 105 جم",
"Product_EN": "Danone Strawberry Yogurt 105 gm",
"Product_Id": "00000085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3006,
"name": "العلا بهارات محوجه 350جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا بهارات محوجه 350جم",
"Product_EN": null,
"Product_Id": "00000086 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3007,
"name": "دانون زبادى مشمش 108 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى مشمش 108 جم",
"Product_EN": "Danone Apricot Yogurt 108 gm",
"Product_Id": "00000087 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3008,
"name": "دانون زبادى فواكه بالتوت 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى فواكه بالتوت 105 جم",
"Product_EN": "Danone Fruit Berry Yogurt 105 gm",
"Product_Id": "00000088 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3009,
"name": "لاكتيل زبادى طبيعى 120 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى طبيعى 120 جم",
"Product_EN": "Lactel Natural Yogurt 120 gm",
"Product_Id": "00000089 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3010,
"name": "العلا قرفه برازيل 40جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا قرفه برازيل 40جم",
"Product_EN": null,
"Product_Id": "00000090 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3011,
"name": "بيتى عصير تفاح 200مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير تفاح 200مل - موقوف",
"Product_EN": null,
"Product_Id": "00000091 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3012,
"name": "العلا حبهان 7 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا حبهان 7 جم",
"Product_EN": null,
"Product_Id": "00000092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3013,
"name": "لاكتيل كلاونى زبادى بالفراولة 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل كلاونى زبادى بالفراولة 105 جم",
"Product_EN": "Lactel Clowny Yogurt Strawberry 105 gm",
"Product_Id": "00000093 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3014,
"name": "العلا كاري هندي 350جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا كاري هندي 350جم",
"Product_EN": null,
"Product_Id": "00000094 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3015,
"name": "بيتى عصير مانجو 200مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو 200مل - موقوف",
"Product_EN": null,
"Product_Id": "00000095 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3016,
"name": "لاكتيل دويتو مشروب زبادى بالفراولة 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو مشروب زبادى بالفراولة 220 مل",
"Product_EN": "Lactel Duetto Strawberry Yogurt Drink 220 ml",
"Product_Id": "00000096 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3017,
"name": "بيت فود عصير برتقال تيمبو750جم - موقوف",
"price": 21.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود عصير برتقال تيمبو750جم - موقوف",
"Product_EN": null,
"Product_Id": "00000097 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3018,
"name": "بيت فود عصير مانجو تيمبو750جم - موقوف",
"price": 20.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود عصير مانجو تيمبو750جم - موقوف",
"Product_EN": null,
"Product_Id": "00000098 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3019,
"name": "نستله زبادى طبيعى 200 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى طبيعى 200 جم",
"Product_EN": "Nestle Natural Yogurt 200 gm",
"Product_Id": "00000099 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3020,
"name": "بيت فود عصير تفاح تيمبو 60جم - موقوف",
"price": 1.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود عصير تفاح تيمبو 60جم - موقوف",
"Product_EN": null,
"Product_Id": "00000100 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3021,
"name": "كريستال زيت ذرة 900 مل",
"price": 33.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذرة 900 مل",
"Product_EN": "Crystal Corn Oil 900 ml ",
"Product_Id": "00000101 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3022,
"name": "لاكتيل دويتو مشروب زبادى بالفراولة 220 مل - عرض",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو مشروب زبادى بالفراولة 220 مل - عرض",
"Product_EN": "Lactel Duetto Strawberry Yogurt Drink 220 ml",
"Product_Id": "00000102 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3023,
"name": "بيت فود عصير اناناس تيمبو 60جم - موقوف",
"price": 1.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود عصير اناناس تيمبو 60جم - موقوف",
"Product_EN": null,
"Product_Id": "00000103 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3024,
"name": "بيك رولز جبنة ناتشو 55 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز جبنة ناتشو 55 جم",
"Product_EN": "Bake Rolls Nacho Cheese 55 gm",
"Product_Id": "00000104 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3025,
"name": "كريستال زيت ذره 2.4 لتر",
"price": 74,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذره 2.4 لتر",
"Product_EN": "Crystal Corn Oil 2.4 L ",
"Product_Id": "00000105 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3026,
"name": "لاكتيل دويتو مشروب زبادى بالفراولة 440 مل ",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو مشروب زبادى بالفراولة 440 مل ",
"Product_EN": "Lactel Duetto Strawberry Yogurt Drink 440 ml",
"Product_Id": "00000106 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3027,
"name": "بيت فود عصير تفاج تيمبو 12جم - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود عصير تفاج تيمبو 12جم - موقوف",
"Product_EN": null,
"Product_Id": "00000107 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3028,
"name": "بيك رولز بالكاتشب 32 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز بالكاتشب 32 جم",
"Product_EN": "Bake Rolls Crackers Ketchup 32 gm",
"Product_Id": "00000108 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3029,
"name": "كريستال زيت عباد الشمس900 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت عباد الشمس900 مل",
"Product_EN": "Crystal Sunflower Oil 900 ml",
"Product_Id": "00000109 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3030,
"name": "بيك رولز مقرمشات بميكس جبن 36 جم ",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز مقرمشات بميكس جبن 36 جم ",
"Product_EN": "Bake Rolz Crackers With Mix Chees 36 gm",
"Product_Id": "00000110 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3031,
"name": "بيت فود عصير خوخ تيمبو12جم - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود عصير خوخ تيمبو12جم - موقوف",
"Product_EN": null,
"Product_Id": "00000111 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3032,
"name": "لاكتيل زبادو خوخ 440 جم عرض - موقوف",
"price": 7.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادو خوخ 440 جم عرض - موقوف",
"Product_EN": "",
"Product_Id": "00000112 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3033,
"name": "كريستال زيت عباد 2 لتر - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت عباد 2 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00000113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3034,
"name": "شيبسى عائلى بيتزا",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى عائلى بيتزا",
"Product_EN": null,
"Product_Id": "00000114 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3035,
"name": "ميرندا برتقال بلاستيك 2 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميرندا برتقال بلاستيك 2 لتر",
"Product_EN": "Mirinda Orange 2 L",
"Product_Id": "00000115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3036,
"name": "شيبسى جامبو كريمه متبلة",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جامبو كريمه متبلة",
"Product_EN": null,
"Product_Id": "00000116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3037,
"name": "لاكتيل دويتو مشروب زبادى بالخوخ 440 مل ",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو مشروب زبادى بالخوخ 440 مل ",
"Product_EN": "Lactel Duetto Peach Yogurt Drink 440 ml",
"Product_Id": "00000117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3038,
"name": "شيتوس كرانشى بالجبنة",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس كرانشى بالجبنة",
"Product_EN": null,
"Product_Id": "00000118 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3039,
"name": "عافيه زيت ذرة 900 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت ذرة 900 مل",
"Product_EN": "Afia Corn Oil 900 ml",
"Product_Id": "00000119 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3040,
"name": "ميرندا برتقال بلاستيك 0.97 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميرندا برتقال بلاستيك 0.97 لتر",
"Product_EN": "Mirinda Orange 1 L",
"Product_Id": "00000120 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3041,
"name": "جهينة كريمة خفق أوريجينال 200 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة كريمة خفق أوريجينال 200 جم",
"Product_EN": "Juhayna Whipping Cream Original 200 ml",
"Product_Id": "00000121 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3042,
"name": "كرانشى بطعم الجبنة",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى بطعم الجبنة",
"Product_EN": null,
"Product_Id": "00000122 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3043,
"name": "المراعى كريمة طهى 200 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى كريمة طهى 200 جم",
"Product_EN": "Almarai Cooking Cream 200 gm",
"Product_Id": "00000123 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3044,
"name": "صن بايتس طماطم 65جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن بايتس طماطم 65جم",
"Product_EN": null,
"Product_Id": "00000124 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3045,
"name": "حلوة زيت 800 مل - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوة زيت 800 مل - موقوف",
"Product_EN": null,
"Product_Id": "00000125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3046,
"name": "بيبسى كانز 355 ملى - موقوف",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى كانز 355 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00000126 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3047,
"name": "صن بايتس فلفل حلو",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن بايتس فلفل حلو",
"Product_EN": null,
"Product_Id": "00000127 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3048,
"name": "جهينة لبن رايب 1 لتر",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة لبن رايب 1 لتر",
"Product_EN": "Juhayna Rayeb Milk 1 L",
"Product_Id": "00000128 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3049,
"name": "صن بايتس كبير ",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن بايتس كبير ",
"Product_EN": null,
"Product_Id": "00000129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3050,
"name": "سلايت زيت عباد 820 مل - موقوف",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سلايت زيت عباد 820 مل - موقوف",
"Product_EN": null,
"Product_Id": "00000130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3051,
"name": "بيبسى كانز لايت 355 مل - موقوف",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى كانز لايت 355 مل - موقوف",
"Product_EN": null,
"Product_Id": "00000131 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3052,
"name": "شيبسى جبنة متبلة",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جبنة متبلة",
"Product_EN": null,
"Product_Id": "00000132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3053,
"name": "سفن اب كانز 355 مل - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب كانز 355 مل - موقوف",
"Product_EN": null,
"Product_Id": "00000133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3054,
"name": "شيبسى شطه وليمون",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى شطه وليمون",
"Product_EN": null,
"Product_Id": "00000134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3055,
"name": "نستله جو مشروب زبادي خوخ 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله جو مشروب زبادي خوخ 220 مل",
"Product_EN": "Nestle Go Peach Yogurt Drink 220 ml",
"Product_Id": "00000135 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3056,
"name": "شيبسى جبنة",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جبنة",
"Product_EN": null,
"Product_Id": "00000136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3057,
"name": "شيبسى ملح",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى ملح",
"Product_EN": null,
"Product_Id": "00000137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3058,
"name": "شيبسى وسط بطعم الجبنة 40 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى وسط بطعم الجبنة 40 جم",
"Product_EN": null,
"Product_Id": "00000138 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3059,
"name": "جهينة لبن رايب 500 مل",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة لبن رايب 500 مل",
"Product_EN": "Juhayna Rayeb Milk 500 ml",
"Product_Id": "00000139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3060,
"name": "صنى زيت للقلى 750 مل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صنى زيت للقلى 750 مل",
"Product_EN": "Sunny Oil Frying 750 ml",
"Product_Id": "00000140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3061,
"name": "دوريتوس بالفلفل الحار",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس بالفلفل الحار",
"Product_EN": null,
"Product_Id": "00000141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3062,
"name": "دوريتوس بطعم الجبنة",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس بطعم الجبنة",
"Product_EN": null,
"Product_Id": "00000143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3063,
"name": "زاهر زيت زيتون بكر ممتاز 250 مل",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر زيت زيتون بكر ممتاز 250 مل",
"Product_EN": "Zaher Extra Virgin Olive Oil 250 ml",
"Product_Id": "00000144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3064,
"name": "جهينة لبن رايب شاى اخضر و ليمون 500 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة لبن رايب شاى اخضر و ليمون 500 جم",
"Product_EN": "Juhayna Green Tea Lemon Rayeb 450 ml",
"Product_Id": "00000145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3065,
"name": "كرانشى بطعم الشطه صغير",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى بطعم الشطه صغير",
"Product_EN": null,
"Product_Id": "00000146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3066,
"name": "كرانشى كباب صغير",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى كباب صغير",
"Product_EN": null,
"Product_Id": "00000147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3067,
"name": "جهينة لبن رايب لايت 500 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة لبن رايب لايت 500 جم",
"Product_EN": "Juhayna Rayeb Milk Lite 500 ml",
"Product_Id": "00000149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3068,
"name": "زاهر زيت زيتون بكر ممتاز 500 مل",
"price": 69,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر زيت زيتون بكر ممتاز 500 مل",
"Product_EN": "Zaher Extra Virgin Olive Oil 500 ml",
"Product_Id": "00000150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3069,
"name": "شيتوس كرانشى اكس اوه",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس كرانشى اكس اوه",
"Product_EN": null,
"Product_Id": "00000151 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3070,
"name": "صن بايتس زيتون",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن بايتس زيتون",
"Product_EN": null,
"Product_Id": "00000152 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3071,
"name": "جهينة لبن رايب 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة لبن رايب 220 مل",
"Product_EN": "Juhayna Rayeb Milk 220 ml",
"Product_Id": "00000153 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3072,
"name": "ايزيس اعشاب ينسون 12 فلتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب ينسون 12 فلتر",
"Product_EN": "ISIS Anise Herbs 12 Bags",
"Product_Id": "00000154 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3073,
"name": "صن بايتس بالجبنة المتبلة",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن بايتس بالجبنة المتبلة",
"Product_EN": null,
"Product_Id": "00000155 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3074,
"name": "مولتو مينى كرواسون بالشيكولاتة 4 قطع",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو مينى كرواسون بالشيكولاتة 4 قطع",
"Product_EN": "Molto Mini Croissants Chocolate 4 Pieces ",
"Product_Id": "00000156 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3075,
"name": "جهينة لبن رايب بالشاي الاخضر 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة لبن رايب بالشاي الاخضر 220 مل",
"Product_EN": "Juhayna Rayeb Milk With Green Tea 220 ml",
"Product_Id": "00000157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3076,
"name": "ايزيس اعشاب قرفه 12 فلتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب قرفه 12 فلتر",
"Product_EN": "ISIS Cinnamon Herbs 12 Bags",
"Product_Id": "00000158 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3077,
"name": "ايزيس اعشاب تيليو 12 فلتر",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب تيليو 12 فلتر",
"Product_EN": "ISIS Telio Herbs 12 Bags",
"Product_Id": "00000159 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3078,
"name": "المراعى حليب رايب 1 لتر",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى حليب رايب 1 لتر",
"Product_EN": "Almarai Rayeb Milk 1 L",
"Product_Id": "00000160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3079,
"name": "مولتو كرواسون شيكولاته بندق اكس لارج 1 قطعه ",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو كرواسون شيكولاته بندق اكس لارج 1 قطعه ",
"Product_EN": "Molto Croissant Chocolate Hazelnut XL 1 Pieces",
"Product_Id": "00000161 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3080,
"name": "ايزيس اعشاب ينسون 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب ينسون 20 فلتر",
"Product_EN": "ISIS Anise Herbs 20 Bags",
"Product_Id": "00000162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3081,
"name": "مولتو كرواسون شيكولاتة بندق دبل اكس لارج 1 قطعه",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو كرواسون شيكولاتة بندق دبل اكس لارج 1 قطعه",
"Product_EN": "Molto Croissant Chocolate Hazelnut XXL 1 Pieces",
"Product_Id": "00000163 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3082,
"name": "مولتو كرواسون ميكس شيكولاته و كريمه 1 قطعه",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو كرواسون ميكس شيكولاته و كريمه 1 قطعه",
"Product_EN": "Molto Croissant Mix Chocolate & Cream 1 Piece",
"Product_Id": "00000164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3083,
"name": "المراعى حليب رايب 500 مل",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى حليب رايب 500 مل",
"Product_EN": "Almarai Rayeb Milk 500 ml",
"Product_Id": "00000165 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3084,
"name": "ايزيس اعشاب تيليو 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب تيليو 20 فلتر",
"Product_EN": "ISIS Telio Herbs 20 Bags",
"Product_Id": "00000166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3085,
"name": "مولتو كرواسون ميكس فراوله و كريمه 1 قطعه",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو كرواسون ميكس فراوله و كريمه 1 قطعه",
"Product_EN": "Molto Croissant Mix Strawberry & Cream 1 Pieces",
"Product_Id": "00000167 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3086,
"name": "المراعى مشروب زبادى فراولة 450 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى مشروب زبادى فراولة 450 مل",
"Product_EN": "Almarai Strawberry Yogurt Drink 450 ml",
"Product_Id": "00000168 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3087,
"name": "مولتو كرواسون بالشيكولاتة 1 قطعه",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو كرواسون بالشيكولاتة 1 قطعه",
"Product_EN": "Molto Croissant Chocolate 1 Pieces",
"Product_Id": "00000169 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3088,
"name": "نستله بودينج كراميل 60 جم",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله بودينج كراميل 60 جم",
"Product_EN": "Nestle Caramel Pudding 60 gm",
"Product_Id": "00000170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3089,
"name": "ليبتون شاى ناعم 25 فتلة - موقوف",
"price": 10.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى ناعم 25 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00000171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3090,
"name": "العلا كركم 35جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا كركم 35جم",
"Product_EN": null,
"Product_Id": "00000172 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3091,
"name": "المراعى مشروب زبادى خوخ 450 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى مشروب زبادى خوخ 450 مل",
"Product_EN": "Almarai Peach Yoghurt Drink 450 ml",
"Product_Id": "00000173 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3092,
"name": "دومتي جبنه فيتا لايت 500 جم",
"price": 12.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتي جبنه فيتا لايت 500 جم",
"Product_EN": "Domty Feta Cheese Light 500 gm",
"Product_Id": "00000174 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3093,
"name": "زاهر سمن بقرى صافى 700 جم - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمن بقرى صافى 700 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3094,
"name": "ليبتون شاى خرز250جم _ موقوف",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى خرز250جم _ موقوف",
"Product_EN": null,
"Product_Id": "00000176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3095,
"name": "المراعى مشروب زبادى مانجو 450 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى مشروب زبادى مانجو 450 مل",
"Product_EN": "Almarai Mango Yoghurt Drink 450 ml",
"Product_Id": "00000177 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3096,
"name": "ليبتون شاى ناعم 40 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى ناعم 40 جم",
"Product_EN": "Lipton Dust Tea 40 gm",
"Product_Id": "00000178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3097,
"name": "العلا زعتر تركي 25جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا زعتر تركي 25جم",
"Product_EN": null,
"Product_Id": "00000179 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3098,
"name": "دانون اكتيفيا حليب رايب 220 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا حليب رايب 220 مل",
"Product_EN": "Danone Activia Rayeb Milk 220 ml",
"Product_Id": "00000180 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3099,
"name": "ليبتون شاى ناعم 100جم - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى ناعم 100جم - موقوف",
"Product_EN": null,
"Product_Id": "00000181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3100,
"name": "دانون اكتيفيا حليب رايب 400 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا حليب رايب 400 مل",
"Product_EN": "Danone Activia Rayeb Milk 400 ml",
"Product_Id": "00000182 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3101,
"name": "دومتي جبنه فيتا لايت 250 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتي جبنه فيتا لايت 250 جم",
"Product_EN": "Domty Feta Cheese Light 250 gm",
"Product_Id": "00000183 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3102,
"name": "ليبتون شاى ناعم 250 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى ناعم 250 جم",
"Product_EN": "Lipton Dust Tea 250 gm",
"Product_Id": "00000184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3103,
"name": "زاهر سمن جاموسى صافى 700 جم - موقوف",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمن جاموسى صافى 700 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3104,
"name": "دانون حليب كامل الدسم 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون حليب كامل الدسم 200 مل",
"Product_EN": "Danone Full Cream milk 200 ml",
"Product_Id": "00000187 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3105,
"name": "ليبتون شاى100فتلة عرض - موقوف",
"price": 46.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى100فتلة عرض - موقوف",
"Product_EN": null,
"Product_Id": "00000188 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3106,
"name": "دومتى جبنه ملح خفيف 1 كجم",
"price": 25.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه ملح خفيف 1 كجم",
"Product_EN": "Domty cheese Low Salt 1 kg",
"Product_Id": "00000190 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3107,
"name": "العروسه شاى اسود ناعم 100 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العروسه شاى اسود ناعم 100 جم",
"Product_EN": "Al Arosa Soft Black Tea 100 g",
"Product_Id": "00000191 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3108,
"name": "العروسه شاى اسود ناعم 250 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العروسه شاى اسود ناعم 250 جم",
"Product_EN": "Al Arosa Soft Black Tea 250 g",
"Product_Id": "00000192 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3109,
"name": "ريتش بيك بقسماط 500 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك بقسماط 500 جم",
"Product_EN": null,
"Product_Id": "00000193 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3110,
"name": "العروسه شاى اسود ناعم 40 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العروسه شاى اسود ناعم 40 جم",
"Product_EN": "Al Arosa Soft Black Tea 40 g",
"Product_Id": "00000194 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3111,
"name": "كريستال سمنه صفراء 750 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال سمنه صفراء 750 جم",
"Product_EN": "Crystal Yellow Ghee 750 gm",
"Product_Id": "00000196 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3112,
"name": "دومتي بلس جبنه فيتا 250 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتي بلس جبنه فيتا 250 جم",
"Product_EN": "Domty Feta Cheese Plus 250 g",
"Product_Id": "00000197 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3113,
"name": "ليبتون شاى اخضر كلاسيك 25 فتله",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر كلاسيك 25 فتله",
"Product_EN": "Lipton Green Tea Classic 25 Bags",
"Product_Id": "00000198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3114,
"name": "الضحى بقسماط مطحون 350 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الضحى بقسماط مطحون 350 جم",
"Product_EN": "Al Doha Bread Crumbs 350 gm",
"Product_Id": "00000199 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3115,
"name": "العلا روز ماري 20جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا روز ماري 20جم",
"Product_EN": null,
"Product_Id": "00000200 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3116,
"name": "كريستال سمنة صفراء 1.5 كجم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال سمنة صفراء 1.5 كجم",
"Product_EN": "Crystal Yellow Ghee 1.5 Kg",
"Product_Id": "00000201 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3117,
"name": "نستله نسكافيه 3*1 قهوة سريعة التحضير 18 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه 3*1 قهوة سريعة التحضير 18 جم",
"Product_EN": "Nestle Nescafe 3 in 1 Instant 18 gm ",
"Product_Id": "00000202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3118,
"name": "السبكى جلاش 500 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "السبكى جلاش 500 جم",
"Product_EN": null,
"Product_Id": "00000203 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3119,
"name": "العلا بهارات لحمه 35جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا بهارات لحمه 35جم",
"Product_EN": null,
"Product_Id": "00000204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3120,
"name": "جنه سمنه صفراء 700 جم",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جنه سمنه صفراء 700 جم",
"Product_EN": "Ganna Vegetable Ghee 700 gm",
"Product_Id": "00000205 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3121,
"name": "نسكافيه كيس 1.8 جم علبه - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه كيس 1.8 جم علبه - موقوف",
"Product_EN": null,
"Product_Id": "00000206 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3122,
"name": "العلا ورق لورا 15جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا ورق لورا 15جم",
"Product_EN": null,
"Product_Id": "00000207 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3123,
"name": "فارم فريتس بطاطس بوم فريت 1 كجم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس بطاطس بوم فريت 1 كجم",
"Product_EN": null,
"Product_Id": "00000208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3124,
"name": "دومتي بلس جبنه فيتا 500 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتي بلس جبنه فيتا 500 جم",
"Product_EN": "Domty Feta Cheese Plus 500 g",
"Product_Id": "00000209 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3125,
"name": "نسكافيه ظرف 25جم - موقوف",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه ظرف 25جم - موقوف",
"Product_EN": null,
"Product_Id": "00000210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3126,
"name": "العلا فستق مملح 40جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا فستق مملح 40جم",
"Product_EN": null,
"Product_Id": "00000211 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3127,
"name": "نستله نسكافيه 2*1 قهوة سريعه التحضير 10 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه 2*1 قهوة سريعه التحضير 10 جم",
"Product_EN": "Nestle Nescafe Mixes 2 in 1 Instant Coffee 10 gm",
"Product_Id": "00000212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3128,
"name": "بسمه بسله سادة مجمد 400 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه بسله سادة مجمد 400 جم",
"Product_EN": "Basma Frozen Peas 400 g",
"Product_Id": "00000213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3129,
"name": "دومتي جبنه اسطنبولى 1 كجم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتي جبنه اسطنبولى 1 كجم",
"Product_EN": "Domty Istanbolly Cheese 1 Kg ",
"Product_Id": "00000214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3130,
"name": "العلا كاجو مملح 40جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا كاجو مملح 40جم",
"Product_EN": null,
"Product_Id": "00000215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3131,
"name": "بسمه بسلة بالجزر مجمد 400 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه بسلة بالجزر مجمد 400 جم",
"Product_EN": "Basma Frozen Peas w Carrots 400 g",
"Product_Id": "00000216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3132,
"name": "العلا جوز هند 40جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا جوز هند 40جم",
"Product_EN": null,
"Product_Id": "00000217 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3133,
"name": "بسمه بامية خضراء زيرو مجمد 400 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه بامية خضراء زيرو مجمد 400 جم",
"Product_EN": "Basma Frozen Green Okra \" Zero \" 400 g",
"Product_Id": "00000218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3134,
"name": "نسكافيه1*2 علبه *12 ظرف - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه1*2 علبه *12 ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00000219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3135,
"name": "دومتي جبنه فيتا زيتون 1 كجم",
"price": 25.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتي جبنه فيتا زيتون 1 كجم",
"Product_EN": "Domty Feta Cheese Olives 1 Kg ",
"Product_Id": "00000220 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3136,
"name": "نستله نسكافيه كلاسيك قهوة سريعة التحضير برطمان50جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه كلاسيك قهوة سريعة التحضير برطمان50جم",
"Product_EN": "Nestle Nescafe Classic Instant Coffee Jar 50 gm",
"Product_Id": "00000221 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3137,
"name": "بسمه ملوخيه خضراء مجمد 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه ملوخيه خضراء مجمد 400 جم",
"Product_EN": "Basma Frozen Green Molokhia 400 g",
"Product_Id": "00000222 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3138,
"name": "نستله نسكافيه كلاسيك قهوة سريعة التحضيربرطمان100جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:38",
"updated_at": "2021-11-01 19:45:38",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه كلاسيك قهوة سريعة التحضيربرطمان100جم",
"Product_EN": "Nestle Nescafe Classic Instant Coffee Jar 100 gm",
"Product_Id": "00000223 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3139,
"name": "بسمه خضار مشكل مجمد 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه خضار مشكل مجمد 400 جم",
"Product_EN": "Basma Frozen Mixed Vegetables 400 g",
"Product_Id": "00000224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3140,
"name": "دومتى جبنه فيتا بلس بالزيتون 500 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا بلس بالزيتون 500 جم",
"Product_EN": "Domty Feta Plus Cheese Olives 500 gm",
"Product_Id": "00000225 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3141,
"name": "نسكافيه شيكولاتة 2*1 - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه شيكولاتة 2*1 - موقوف",
"Product_EN": null,
"Product_Id": "00000226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3142,
"name": "العلا خلطه حشو 50 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا خلطه حشو 50 جم",
"Product_EN": null,
"Product_Id": "00000227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3143,
"name": "بسمه بامية خضراء ممتازة مجمد 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه بامية خضراء ممتازة مجمد 400 جم",
"Product_EN": "Basma Frozen Green Okra \" Excellent \" 400 g",
"Product_Id": "00000228 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3144,
"name": "دومتى بلس جبنه اسطنبولى 500 جم ",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه اسطنبولى 500 جم ",
"Product_EN": "Domty Plus Istanbolly Cheese 500 gm ",
"Product_Id": "00000229 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3145,
"name": "العلا زبيب جولدن 50جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا زبيب جولدن 50جم",
"Product_EN": null,
"Product_Id": "00000230 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3146,
"name": "نسكافيه بندق 2*1 ظرف - موقوف",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه بندق 2*1 ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00000231 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3147,
"name": "ساديا دجاج كامل 1100 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ساديا دجاج كامل 1100 جم",
"Product_EN": "Sadia Whole Chicken 1100 gm",
"Product_Id": "00000232 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3148,
"name": "العلا فارمسيلي بني\/اللوان 50جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا فارمسيلي بني\/اللوان 50جم",
"Product_EN": null,
"Product_Id": "00000233 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3149,
"name": "جنه سمنه صفراء 1.5 كجم",
"price": 53.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جنه سمنه صفراء 1.5 كجم",
"Product_EN": "Ganna Yellow Ghee 1.5 kg",
"Product_Id": "00000234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3150,
"name": "نسكافيه 2 *1 كراميل - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه 2 *1 كراميل - موقوف",
"Product_EN": null,
"Product_Id": "00000235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3151,
"name": "العلي كريز احمر \/ اخضر 50جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلي كريز احمر \/ اخضر 50جم",
"Product_EN": null,
"Product_Id": "00000236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3152,
"name": "حلواني برجر بقرى 16 ق",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلواني برجر بقرى 16 ق",
"Product_EN": "Halwani Beef Burger 16 Pieces",
"Product_Id": "00000237 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3153,
"name": "العلا فلفل اسود حصي 17جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا فلفل اسود حصي 17جم",
"Product_EN": null,
"Product_Id": "00000240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3154,
"name": "دومتى جبنه فيتا بالزيتون 250 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا بالزيتون 250 جم",
"Product_EN": "Domty Feta Cheese Olives 250 gm",
"Product_Id": "00000241 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3155,
"name": "العلا جنزبيل 20جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا جنزبيل 20جم",
"Product_EN": null,
"Product_Id": "00000242 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3156,
"name": "نستله نسكافيه كلاسيك قهوة سريعه التحضير 1.8 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه كلاسيك قهوة سريعه التحضير 1.8 جم",
"Product_EN": "Nestle Nescafe Classic Instant coffee 1.8 gm",
"Product_Id": "00000244 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3157,
"name": "حلواني برجر بقرى 8 ق",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلواني برجر بقرى 8 ق",
"Product_EN": "Halwani Beef Burger 8 Pieces",
"Product_Id": "00000245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3158,
"name": "العلا بهارات كفته 35جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا بهارات كفته 35جم",
"Product_EN": null,
"Product_Id": "00000246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3159,
"name": "العلا لوز مقشر 40جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا لوز مقشر 40جم",
"Product_EN": null,
"Product_Id": "00000248 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3160,
"name": "حلوانى سجق شرقى بقرى 350 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى سجق شرقى بقرى 350 جم",
"Product_EN": "Halwani Oriental Sausage 350 gm",
"Product_Id": "00000249 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3161,
"name": "دومتى جبنه اسطنبولى 250 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه اسطنبولى 250 جم",
"Product_EN": "Domty Istanbolly Cheese 250 gm",
"Product_Id": "00000251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3162,
"name": "العلا بندق مقشر 40جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا بندق مقشر 40جم",
"Product_EN": null,
"Product_Id": "00000252 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3163,
"name": "حلوانى لحم مفروم بقرى 350 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى لحم مفروم بقرى 350 جم",
"Product_EN": "Halwani Minced Meat 350 gm",
"Product_Id": "00000253 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3164,
"name": "العلا سوداني مقشر 75جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا سوداني مقشر 75جم",
"Product_EN": null,
"Product_Id": "00000256 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3165,
"name": "حلوانى فرانك بقرى 200 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى فرانك بقرى 200 جم",
"Product_EN": "Halwani Beef Frankfurter 200 gm ",
"Product_Id": "00000258 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3166,
"name": "العلا فلفل اسود 40جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا فلفل اسود 40جم",
"Product_EN": null,
"Product_Id": "00000259 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3167,
"name": "بونجورنو مشروب شيكولاتة ظرف 30 جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو مشروب شيكولاتة ظرف 30 جم",
"Product_EN": "Bonjorno Hot Chocolate Sachet Sachet 30 gm",
"Product_Id": "00000260 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3168,
"name": "حلايب جبنة فيتا 250 جم - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلايب جبنة فيتا 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000261 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3169,
"name": "العلا كمون بلدي 80جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا كمون بلدي 80جم",
"Product_EN": "",
"Product_Id": "00000263 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3170,
"name": "موزاريلا جبنة دومتى مبشور 325 جم - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "موزاريلا جبنة دومتى مبشور 325 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000264 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3171,
"name": "بونجورنو كابتشينو بندق ظرف 14 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كابتشينو بندق ظرف 14 جم",
"Product_EN": "Bonjorno Cappuccino Hazelnut Sachet Sachet 14 gm",
"Product_Id": "00000265 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3172,
"name": "ماجى خلطه البشاميل 75 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى خلطه البشاميل 75 جم",
"Product_EN": "MAGGI Béchamel Mix 75 gm ",
"Product_Id": "00000267 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3173,
"name": "كنور خلطة فيجيتار عادى 40 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطة فيجيتار عادى 40 جم",
"Product_EN": "Knorr Vegetar 40 gm",
"Product_Id": "00000268 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3174,
"name": "حلايب جبنة اسطنبولى 500 جم - موقوف",
"price": 11.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلايب جبنة اسطنبولى 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000269 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3175,
"name": "كنور خلطة فيجيتار حار 40 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطة فيجيتار حار 40 جم",
"Product_EN": "Knorr Hot Vegetar 40 gm",
"Product_Id": "00000270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3176,
"name": "بونجورنو كوفى ميكس 2*1 12 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كوفى ميكس 2*1 12 جم",
"Product_EN": "Bonjorno coffee Mix 2*1 12 gm ",
"Product_Id": "00000272 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3177,
"name": "كنور خلطة كفته 35 جم",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطة كفته 35 جم",
"Product_EN": "Knorr Kofta Mix 35 gm",
"Product_Id": "00000273 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3178,
"name": "حلايب جبنه اسطنبولى 250 جم - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلايب جبنه اسطنبولى 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000275 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3179,
"name": "ايزى كير 15 منديل",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير 15 منديل",
"Product_EN": "Easy Care 15 Wipes",
"Product_Id": "00000276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3180,
"name": "كوفى ميكس ظرف 12 جم - موقوف",
"price": 1.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوفى ميكس ظرف 12 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000277 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3181,
"name": "كبريت سويدى 40 عود",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "كبريت سويدى 40 عود",
"Product_EN": null,
"Product_Id": "00000279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3182,
"name": "بونجورنو كابتشينو موكا ظرف 14 جم",
"price": 38.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كابتشينو موكا ظرف 14 جم",
"Product_EN": "Bonjorno Cappuccino Mocha Sachet 14 gm",
"Product_Id": "00000280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3183,
"name": "طعمة جبنه مثلثات 32 ق",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنه مثلثات 32 ق",
"Product_EN": "Teama Triangle Cheese 32 Pieces",
"Product_Id": "00000281 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3184,
"name": "ماجى مرقة مكعب خضروات 8 مكعب 72 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى مرقة مكعب خضروات 8 مكعب 72 جم",
"Product_EN": "Maggi Vegitables Bouillon Cubes 72 gm",
"Product_Id": "00000282 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3185,
"name": "بونجورنو كابتشينو فانيليا ظرف 14 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كابتشينو فانيليا ظرف 14 جم",
"Product_EN": "Bonjorno Cappuccino Vanilla Sachet 14 gm",
"Product_Id": "00000284 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3186,
"name": "اطياب ناجتس دجاج 20 ق",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب ناجتس دجاج 20 ق",
"Product_EN": "Atyab Nuggets 20 pieces",
"Product_Id": "00000286 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3187,
"name": "شاهين بن سادة 50جم",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاهين بن سادة 50جم",
"Product_EN": "Shaheen Coffee Plain 50 gm",
"Product_Id": "00000287 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3188,
"name": "طعمة جبنه مثلثات 8 ق",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنه مثلثات 8 ق",
"Product_EN": "Teama Triangle Cheese 8 Pieces",
"Product_Id": "00000288 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3189,
"name": "اطياب ناجتس المرج 400 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب ناجتس المرج 400 جم",
"Product_EN": "Atyab Fun Nuggets 400 g",
"Product_Id": "00000289 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3190,
"name": "شاهين بن محوج 50 جم",
"price": 8.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاهين بن محوج 50 جم",
"Product_EN": "Shaheen coffee Mahoj 50 gm",
"Product_Id": "00000290 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3191,
"name": "ماجى مرقة دجاج 8 مكعبات",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى مرقة دجاج 8 مكعبات",
"Product_EN": "Maggi Chicken Stock Cubes 72 gram",
"Product_Id": "00000291 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3192,
"name": "شاهين بن سادة 100جم",
"price": 11.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاهين بن سادة 100جم",
"Product_EN": "Shaheen Coffee Plain 100 gm",
"Product_Id": "00000292 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3193,
"name": "طعمة جبنه مثلثات 16 ق",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنه مثلثات 16 ق",
"Product_EN": "Teama Triangle Cheese 16 Pieces",
"Product_Id": "00000293 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3194,
"name": "شاهين بن محوج وسط 100 جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاهين بن محوج وسط 100 جم",
"Product_EN": "Shaheen Coffee Mahoj Medium 100 gm",
"Product_Id": "00000294 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3195,
"name": "جهينة زبادى لايت 105 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى لايت 105 جم",
"Product_EN": "Juhayna Light Yogurt 105 gm",
"Product_Id": "00000295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3196,
"name": "كنور مرقة دجاج فاين فودز - موقوف",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور مرقة دجاج فاين فودز - موقوف",
"Product_EN": null,
"Product_Id": "00000296 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3197,
"name": "جهينة زبادى لايت 190 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى لايت 190 جم",
"Product_EN": "Juhayna Light Yogurt 190 gm",
"Product_Id": "00000298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3198,
"name": "ماجى مرقة دجاج شريط",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى مرقة دجاج شريط",
"Product_EN": "Maggi Chicken Bouillon Ribbon",
"Product_Id": "00000299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3199,
"name": "بونجورنو كابتشينو لاتية ظرف 14 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كابتشينو لاتية ظرف 14 جم",
"Product_EN": "Bonjorno Cappuccino Latte Sachet 14 gm",
"Product_Id": "00000300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3200,
"name": "جهينة زبادى طبيعى 190 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى طبيعى 190 جم",
"Product_EN": "Juhayna Natural Yogurt 190 gm",
"Product_Id": "00000302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3201,
"name": "بونجورنو كابتشينو كلاسيك ظرف 14 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كابتشينو كلاسيك ظرف 14 جم",
"Product_EN": "Bonjorno Cappuccino Classic Sachet 14 gm",
"Product_Id": "00000303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3202,
"name": "ماجى مرقة دجاج خضروات 2 مكعب",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى مرقة دجاج خضروات 2 مكعب",
"Product_EN": null,
"Product_Id": "00000304 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3203,
"name": "جهينة زبادو مشروب زبادي بالفراولة 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي بالفراولة 220 مل",
"Product_EN": "Juhayna Zabado Strawberry Yogurt Drink 220 ml",
"Product_Id": "00000306 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3204,
"name": "هاينز خل طبيعى 1 لتر",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز خل طبيعى 1 لتر",
"Product_EN": null,
"Product_Id": "00000307 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3205,
"name": "بونجورنو كابتشينو لاتيه كراميل ظرف 14 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كابتشينو لاتيه كراميل ظرف 14 جم",
"Product_EN": "Benjorno Cappuccino Latte Caramel Sachet 14 gm",
"Product_Id": "00000308 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3206,
"name": "طعمة جبنه فيتا 500 جم - موقوف",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنه فيتا 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3207,
"name": "جهينة زبادو مشروب زبادي بالخوخ 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي بالخوخ 220 مل",
"Product_EN": "Juhayna Zabado Peach Yogurt Drink 220 ml",
"Product_Id": "00000311 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3208,
"name": "هاينز صلصة 360 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصة 360 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000312 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3209,
"name": "كوفى ميكس ظرف 3*1 - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوفى ميكس ظرف 3*1 - موقوف",
"Product_EN": null,
"Product_Id": "00000313 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3210,
"name": "كنور فاين فودز صلصه طماطم برطمان 360 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فاين فودز صلصه طماطم برطمان 360 جم",
"Product_EN": "Knorr Fine Foods Tomato Sauce Jar 360g",
"Product_Id": "00000315 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3211,
"name": "جهينة زبادو مشروب زبادي بالفراوله 440 مل",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي بالفراوله 440 مل",
"Product_EN": "Juhayna Zabado Strawberry Yogurt Drink 440 ml",
"Product_Id": "00000316 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3212,
"name": "طعمة جبنه فيتا 250 جم - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنه فيتا 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3213,
"name": "كنور فاين فودز صلصه طماطم ظرف 50 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فاين فودز صلصه طماطم ظرف 50 جم",
"Product_EN": "Knorr Fine Foods Tomato Paste 50 gm",
"Product_Id": "00000318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3214,
"name": "نسكويك مسحوق مشروب شيكولاته 11 جم",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك مسحوق مشروب شيكولاته 11 جم",
"Product_EN": null,
"Product_Id": "00000319 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3215,
"name": "جهينة زبادو مشروب زبادي بالخوخ 440 مل",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي بالخوخ 440 مل",
"Product_EN": "Juhayna Zabado Peach Yogurt Drink 440 ml",
"Product_Id": "00000320 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3216,
"name": "كوكس ملح يودى 700جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس ملح يودى 700جم",
"Product_EN": null,
"Product_Id": "00000321 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3217,
"name": "الطاهية صلصه 135جم - موقوف",
"price": 2.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية صلصه 135جم - موقوف",
"Product_EN": null,
"Product_Id": "00000322 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3218,
"name": "دريم كريم شانتيه 45 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كريم شانتيه 45 جم",
"Product_EN": "Dreem Whipped Topping 45 gm",
"Product_Id": "00000323 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3219,
"name": "الطاهية صلصة 135جم* 4 ق - موقوف",
"price": 11.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية صلصة 135جم* 4 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000324 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3220,
"name": "طعمة جبنة مثلثات 24 ق",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنة مثلثات 24 ق",
"Product_EN": "Teama Triangle Cheese 24 Pieces",
"Product_Id": "00000325 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3221,
"name": "هاينز كاتشب طماطم بارد 200 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم بارد 200 مل",
"Product_EN": "Heinz Tomato Ketchup Cold 200 ml",
"Product_Id": "00000326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3222,
"name": "بونو ملح 200جم",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونو ملح 200جم",
"Product_EN": null,
"Product_Id": "00000327 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3223,
"name": "هاينز كاتشب طماطم بارد دويباك 285 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم بارد دويباك 285 جم",
"Product_EN": "Heinz Tomato Ketchup Doi Buck 285 gm",
"Product_Id": "00000328 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3224,
"name": "نسكويك شيكولاتة ظرف 11جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك شيكولاتة ظرف 11جم",
"Product_EN": null,
"Product_Id": "00000329 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3225,
"name": "هاينز كاتشب سكويزي 342 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب سكويزي 342 جم",
"Product_EN": "Heinz Ketchup Squeeze 342 gm",
"Product_Id": "00000330 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3226,
"name": "نسكويك مسحوق مشروب شيكولاته ظرف 55 جم",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك مسحوق مشروب شيكولاته ظرف 55 جم",
"Product_EN": null,
"Product_Id": "00000331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3227,
"name": "هاينز كاتشب طماطم حار 200 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم حار 200 مل",
"Product_EN": "Heinz Tomato Ketchup Hot 200 ml",
"Product_Id": "00000332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3228,
"name": "نسكويك مسحوق مشروب شيكولاته 352 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك مسحوق مشروب شيكولاته 352 جم",
"Product_EN": null,
"Product_Id": "00000333 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3229,
"name": "عبور لاند جبنه فيتا 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا 500 جم",
"Product_EN": "Obour Land Feta Cheese 500 gm",
"Product_Id": "00000334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3230,
"name": "هاينز مايونيز دويباك 285 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز مايونيز دويباك 285 جم",
"Product_EN": "Heinz Mayonnaise Doi Buck 310 gm",
"Product_Id": "00000335 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3231,
"name": "نسكويك مشروب شيكولاته بودر 154 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك مشروب شيكولاته بودر 154 جم",
"Product_EN": null,
"Product_Id": "00000337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3232,
"name": "كورونا مشروب كاكاو 77 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا مشروب كاكاو 77 جم",
"Product_EN": null,
"Product_Id": "00000338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3233,
"name": "عبور لاند جبنه فيتا 250 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا 250 جم",
"Product_EN": "Obour Land Feta Cheese 250 gm",
"Product_Id": "00000339 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3234,
"name": "نستلة نسكويك بودينج 100 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة نسكويك بودينج 100 جم",
"Product_EN": "Nestle Nesquik Pudding 100gm",
"Product_Id": "00000340 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3235,
"name": "عبور لاند جبنه اسطنبولى 250 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه اسطنبولى 250 جم",
"Product_EN": "Obour Land Istanbully Cheese 250 gm",
"Product_Id": "00000341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3236,
"name": "روز تونه قطعه واحده 200 جم",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روز تونه قطعه واحده 200 جم",
"Product_EN": null,
"Product_Id": "00000342 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3237,
"name": "الجودة بيض احمر - مغلف 30 بيضه",
"price": 51.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة بيض احمر - مغلف 30 بيضه",
"Product_EN": "Gouda Red Eggs - Packed 30 eggs",
"Product_Id": "00000343 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3238,
"name": "صن شاين تونه مفتته 185 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين تونه مفتته 185 جم",
"Product_EN": "Sunshine Shredded Tuna Easy Open185 gm",
"Product_Id": "00000344 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3239,
"name": "الجودة بيض ابيض - مغلف 30 بيضه",
"price": 50.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة بيض ابيض - مغلف 30 بيضه",
"Product_EN": "Gouda White Eggs - Packed 30 eggs",
"Product_Id": "00000345 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3240,
"name": "صن شاين ماكريل 145جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين ماكريل 145جم",
"Product_EN": "Sunshine Mackerel 145 gm",
"Product_Id": "00000346 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3241,
"name": "عبور لاند جبنه فيتا زيتون 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا زيتون 500 جم",
"Product_EN": "Obour Land Feta Cheese Olive 500 gm",
"Product_Id": "00000347 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3242,
"name": "حلوانى حلاوه طحينيه ساده 575 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوه طحينيه ساده 575 جم",
"Product_EN": "Halwani Halawa Tahini Plain 575 gm",
"Product_Id": "00000348 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3243,
"name": "صن شاين تونه قطع بارد 185 جم",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين تونه قطع بارد 185 جم",
"Product_EN": "Sunshine Chunks Diet Tuna 185 gm ",
"Product_Id": "00000349 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3244,
"name": "حلوانى حلاوه طحينية ساده 340 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوه طحينية ساده 340 جم",
"Product_EN": "Halwani Halawa Tahini Plain 340 gm",
"Product_Id": "00000350 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3245,
"name": "صن شاين تونه قطعه واحدة 200 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين تونه قطعه واحدة 200 جم",
"Product_EN": "Sunshine Solid Tuna 200 gm",
"Product_Id": "00000351 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3246,
"name": "حلوانى حلاوه بار 24 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوه بار 24 جم",
"Product_EN": "Halwani Halawa Bar 24 gm",
"Product_Id": "00000352 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3247,
"name": "لاباليزا انشوجه شرائح 50 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لاباليزا انشوجه شرائح 50 جم",
"Product_EN": null,
"Product_Id": "00000353 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3248,
"name": "الرشيدى الميزان حلاوة بار 55 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان حلاوة بار 55 جم",
"Product_EN": "El Rashidi El Mizan Halawa Bar 55 gm",
"Product_Id": "00000354 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3249,
"name": "بريزيدون جبنه شيدر ساندوتش شرائح 200 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه شيدر ساندوتش شرائح 200 جم",
"Product_EN": "President cheddar cheese sandwich slices 200 gm",
"Product_Id": "00000355 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3250,
"name": "هارفست فول مدمس ساده 400 جم",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس ساده 400 جم",
"Product_EN": null,
"Product_Id": "00000356 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3251,
"name": "الطاهية فول مدمس سادة 400 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية فول مدمس سادة 400 جم",
"Product_EN": "Al Tahya Plain Fava Beans 400 gm",
"Product_Id": "00000357 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3252,
"name": "الرشيدى الميزان حلاوة طحينية 340 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان حلاوة طحينية 340 جم",
"Product_EN": "El Rashidi Plain Halawa 340 g",
"Product_Id": "00000358 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3253,
"name": "الرشيدى الميزان حلاوة طحينيه 685 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان حلاوة طحينيه 685 جم",
"Product_EN": "El Rashidy El Mizan Tahini Halawa 685 gm",
"Product_Id": "00000359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3254,
"name": "فول مدمس التحية حار 400 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فول مدمس التحية حار 400 جم",
"Product_EN": "Al Tahya Fava Beans Spicy 400 gm",
"Product_Id": "00000360 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3255,
"name": "الرشيدى حلاوة سبريد شيكولاتة 320 جم ",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى حلاوة سبريد شيكولاتة 320 جم ",
"Product_EN": " El Rashidi Halawa Spread Chocolate 320 gm",
"Product_Id": "00000361 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3256,
"name": "امبريال كورندبيف340جم",
"price": 38.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امبريال كورندبيف340جم",
"Product_EN": null,
"Product_Id": "00000363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3257,
"name": "جهينة مكس زبادى فراولة 75جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة مكس زبادى فراولة 75جم",
"Product_EN": "Juhayna Mix Yogurt With Strawberry 75 gm",
"Product_Id": "00000364 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3258,
"name": "جهينه حليب كامل الدسم 1.5 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه حليب كامل الدسم 1.5 لتر",
"Product_EN": "Juhayna Full Cream Milk 1.5 L",
"Product_Id": "00000365 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3259,
"name": "كوكس جيلى مشمش 80 جم ",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس جيلى مشمش 80 جم ",
"Product_EN": null,
"Product_Id": "00000366 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3260,
"name": "جهينه حليب كامل الدسم 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه حليب كامل الدسم 200 مل",
"Product_EN": "Juhayna Full Cream Milk 200 ml ",
"Product_Id": "00000367 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3261,
"name": "المراعى زبادى طبيعى 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى طبيعى 400 جم",
"Product_EN": "Almarai Natural Yogurt 400 gm",
"Product_Id": "00000368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3262,
"name": "جهينه حليب كامل الدسم 1 لتر",
"price": 87,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه حليب كامل الدسم 1 لتر",
"Product_EN": "Juhayna Full Cream Milk 1 L ",
"Product_Id": "00000371 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3263,
"name": "المراعى زبادى طبيعى 170 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى طبيعى 170 جم",
"Product_EN": "Almarai Natural Yogurt 170 gm",
"Product_Id": "00000372 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3264,
"name": "المراعى زبادى طبيعى 105 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى طبيعى 105 جم",
"Product_EN": "Almarai Natural Yogurt 105 gm",
"Product_Id": "00000373 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3265,
"name": "جهينه حليب خالى الدسم 1 لتر",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه حليب خالى الدسم 1 لتر",
"Product_EN": "Juhayna Skimmed Milk 1 L ",
"Product_Id": "00000374 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3266,
"name": "دريم كريم كراميل 32 جم - 2 قطعه",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كريم كراميل 32 جم - 2 قطعه",
"Product_EN": "Dreem Cream Caramel - 2 Pieces",
"Product_Id": "00000375 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3267,
"name": "جهينه حليب كامل الدسم 500 مل",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه حليب كامل الدسم 500 مل",
"Product_EN": "Juhayna Full Cream Milk 500 ml",
"Product_Id": "00000376 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3268,
"name": "المراعى زبادى لايت 105 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى لايت 105 جم",
"Product_EN": "Almarai Light Yogurt 105 gm",
"Product_Id": "00000378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3269,
"name": "بخيره حليب كامل الدسم 500 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخيره حليب كامل الدسم 500 مل",
"Product_EN": "Bekhero Full Cream Milk 500 ml",
"Product_Id": "00000379 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3270,
"name": "النجوم دقيق جيم 1 ك",
"price": 7.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "النجوم دقيق جيم 1 ك",
"Product_EN": null,
"Product_Id": "00000380 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3271,
"name": "المراعى زبادى فراولة 110 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى فراولة 110 جم",
"Product_EN": "Almarai Strawberry Yogurt 110 gm",
"Product_Id": "00000381 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3272,
"name": "بخيره حليب كامل الدسم 1 لتر",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخيره حليب كامل الدسم 1 لتر",
"Product_EN": "Bekhero Full Cream Milk 1 L ",
"Product_Id": "00000382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3273,
"name": "نستلة فروتس زبادي خوخ 105 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة فروتس زبادي خوخ 105 جم",
"Product_EN": "Nestle Fruits Peach Yogurt 105 gm",
"Product_Id": "00000383 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3274,
"name": "الضحى دقيق كل الاستخدامات 1 كجم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى دقيق كل الاستخدامات 1 كجم",
"Product_EN": "Al Doha Flour All Uses 1 kg",
"Product_Id": "00000384 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3275,
"name": "جهينه ميكس حليب فراوله 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه ميكس حليب فراوله 200 مل",
"Product_EN": "Juhayna Mix Strawberry Milk 200 ml",
"Product_Id": "00000385 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3276,
"name": "حلوانى مربى فراوله لايت 380جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى فراوله لايت 380جم",
"Product_EN": "Halwani Lite Strawberry Jam 380 gm",
"Product_Id": "00000386 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3277,
"name": "حلو الشام خميره جافة فورية 9 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلو الشام خميره جافة فورية 9 جم",
"Product_EN": "Holw El Sham Instant Dry Yeast 9 gm ",
"Product_Id": "00000387 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3278,
"name": "المراعى حليب كامل الدسم 1 لتر- موقوف",
"price": 13.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب كامل الدسم 1 لتر- موقوف",
"Product_EN": null,
"Product_Id": "00000388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3279,
"name": "نستله زبادى لايت 105 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى لايت 105 جم",
"Product_EN": "Nestle Light Yogurt 105 gm",
"Product_Id": "00000389 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3280,
"name": "المراعى زبادى خوخ 110 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى خوخ 110 جم",
"Product_EN": "Almarai Yogurt Peach 110 gm",
"Product_Id": "00000390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3281,
"name": "المراعى حليب خالى الدسم 1 لتر",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب خالى الدسم 1 لتر",
"Product_EN": "Al Marai Skimmed Milk 1 L",
"Product_Id": "00000391 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3282,
"name": "حلوانى مربى فراولة 380 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى فراولة 380 جم",
"Product_EN": "Halwani Strawberry Jam 380 gm",
"Product_Id": "00000392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3283,
"name": "المراعى حليب نصف دسم 1 لتر",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب نصف دسم 1 لتر",
"Product_EN": "Al Marai Half Cream Milk 1 L",
"Product_Id": "00000393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3284,
"name": "المراعى زبادى مانجو 110 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى مانجو 110 جم",
"Product_EN": "Almarai Yogurt Mango 110 gm",
"Product_Id": "00000394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3285,
"name": "نستله مشروب زبادى بالفراولة 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله مشروب زبادى بالفراولة 220 مل",
"Product_EN": "Nestle Strawberry Yogurt Drink 220 ml",
"Product_Id": "00000395 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3286,
"name": "بيتى حليب كامل الدسم 900 مل",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى حليب كامل الدسم 900 مل",
"Product_EN": "Beyti Full Cream Milk 900 ml",
"Product_Id": "00000396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3287,
"name": "بيتى حليب كامل الدسم 1.4 لتر",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى حليب كامل الدسم 1.4 لتر",
"Product_EN": "Beyti Full Cream Milk 1.4 L ",
"Product_Id": "00000398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3288,
"name": "حلوانى مربى تين 380 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى تين 380 جم",
"Product_EN": "Halwani Fig Jam 380 gm",
"Product_Id": "00000399 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3289,
"name": "المراعى زبادى تارت فراوله 100 جم",
"price": 3.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى تارت فراوله 100 جم",
"Product_EN": "Almarai Yogurt Strawberry Tart 100 gm",
"Product_Id": "00000400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3290,
"name": "المراعى حليب بالشوكولاته 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب بالشوكولاته 200 مل",
"Product_EN": "Almarai Milk Chocolate 200 ml",
"Product_Id": "00000401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3291,
"name": "نستله زبادى فراولة 105 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى فراولة 105 جم",
"Product_EN": "Nestle Strawberry Yogurt 105 gm",
"Product_Id": "00000402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3292,
"name": "المراعى حليب كامل الدسم 1.5 لتر - موقوف",
"price": 22.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب كامل الدسم 1.5 لتر - موقوف",
"Product_EN": "Al Marai Full Cream Milk 1.5 L ",
"Product_Id": "00000403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3293,
"name": "حلوانى مربى فراولة 750 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى فراولة 750 جم",
"Product_EN": "Halwani Strawberry Jam 750 gm",
"Product_Id": "00000405 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3294,
"name": "دانون دانجو حليب شوكولاتة 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانجو حليب شوكولاتة 200 مل",
"Product_EN": "Danone Dango Chocolate Milk 200 ml",
"Product_Id": "00000406 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3295,
"name": "دانون دانجو حليب فراولة 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانجو حليب فراولة 200 مل",
"Product_EN": "Danone Dango Strawberry Milk 200 ml",
"Product_Id": "00000407 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3296,
"name": "دانون زبادى طبيعى 105 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى 105 جم",
"Product_EN": "Danone Natural Yogurt 105 gm",
"Product_Id": "00000408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3297,
"name": "فيتراك مربى تين 450 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 450 جم",
"Product_EN": null,
"Product_Id": "00000409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3298,
"name": "نستله زبادى طبيعى 105جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى طبيعى 105جم",
"Product_EN": "Nestle Natural Yogurt 105 gm",
"Product_Id": "00000410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3299,
"name": "دانون دانجو حليب موز 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانجو حليب موز 200 مل",
"Product_EN": "Danone Dango Banana Milk 200 ml",
"Product_Id": "00000411 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3300,
"name": "دانون زبادى سكر 105 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى سكر 105 جم",
"Product_EN": "Danone Yogurt Sugar 105 gm",
"Product_Id": "00000412 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3301,
"name": "لاكتيل حليب كامل الدسم فريش 1 لتر",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لاكتيل حليب كامل الدسم فريش 1 لتر",
"Product_EN": "Lactel Fresh Full Cream Milk 1 L ",
"Product_Id": "00000413 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3302,
"name": "دانون زبادى لايت 105 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى لايت 105 جم",
"Product_EN": "Danone Yogurt Light 105 gm",
"Product_Id": "00000414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3303,
"name": "فيتراك مربى مشمش 450 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 450 جم",
"Product_EN": null,
"Product_Id": "00000415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3304,
"name": "جهينة زبادى طبيعي 105 جم 5+1 عرض",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى طبيعي 105 جم 5+1 عرض",
"Product_EN": "Juhayna Natural Yogurt 105 gm 5+1 Offer",
"Product_Id": "00000416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3305,
"name": "لمار حليب كامل الدسم 1 لتر",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار حليب كامل الدسم 1 لتر",
"Product_EN": "Lamar Full Cream Milk 1 L",
"Product_Id": "00000417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3306,
"name": "دانون دانجو زبادى فراولة 105 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانجو زبادى فراولة 105 جم",
"Product_EN": "Danone Dango Strawberry Yogurt 105 gm",
"Product_Id": "00000418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3307,
"name": "فيتراك مربى فراولة كريمى 380 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراولة كريمى 380 جم",
"Product_EN": null,
"Product_Id": "00000419 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3308,
"name": "لمار حليب خالى الدسم 1 لتر",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار حليب خالى الدسم 1 لتر",
"Product_EN": "Lamar Skimmed Milk 1 L",
"Product_Id": "00000420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3309,
"name": "جهينة زبادى 6 ق عرض",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى 6 ق عرض",
"Product_EN": "Juhayna Yogurt 6 Offer",
"Product_Id": "00000421 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3310,
"name": "دانون دانيت كراميل 100 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانيت كراميل 100 جم",
"Product_EN": "Danone Danette Caramel 100 gm",
"Product_Id": "00000422 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3311,
"name": "لمار حليب نصف دسم 1 لتر",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار حليب نصف دسم 1 لتر",
"Product_EN": "Lamar Semi-Skimmed Milk 1 L",
"Product_Id": "00000423 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3312,
"name": "دانون دانيت شيكولاتة 100 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانيت شيكولاتة 100 جم",
"Product_EN": "Danone Danette Chocolate 100 gm",
"Product_Id": "00000424 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3313,
"name": "نيدو حليب مجفف 25 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيدو حليب مجفف 25 جم",
"Product_EN": null,
"Product_Id": "00000425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3314,
"name": "الرشيدى الميزان طحينة 300 جم",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان طحينة 300 جم",
"Product_EN": "El Rashidi ElMizan Tahina 300 g",
"Product_Id": "00000426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3315,
"name": "جهينة زبادو مشروب زبادي بالتوت 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي بالتوت 220 مل",
"Product_EN": "Juhayna Zabado Berry Yogurt Drink 220 ml",
"Product_Id": "00000428 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3316,
"name": "دانون دانيت فانيلا 100 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانيت فانيلا 100 جم",
"Product_EN": "Danone Danette Vanilla 100 gm",
"Product_Id": "00000429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3317,
"name": "الرشيدى الميزان طحينه 160جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان طحينه 160جم",
"Product_EN": "El Rashidi ElMizan Tahina 160 g",
"Product_Id": "00000430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3318,
"name": "نيدو فورتيجرو حليب مجفف 300 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيدو فورتيجرو حليب مجفف 300 جم",
"Product_EN": "Nido Fortigrow Milk Powder 300gm",
"Product_Id": "00000431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3319,
"name": "دانون اكتيفيا زبادى لايت 110 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا زبادى لايت 110 جم",
"Product_EN": "Danone Activia Yogurt Light 110 gm",
"Product_Id": "00000432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3320,
"name": "زاهر طحينه سمسم بيضاء برطمان 400 جم - موقوف",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر طحينه سمسم بيضاء برطمان 400 جم - موقوف",
"Product_EN": "Zaher Nature Tahini 500 ml ",
"Product_Id": "00000433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3321,
"name": "نيدو لبن 300جم + كوب عرض - موقوف",
"price": 37.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيدو لبن 300جم + كوب عرض - موقوف",
"Product_EN": null,
"Product_Id": "00000434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3322,
"name": "زاهر عسل نحل ابيض 250 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل ابيض 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3323,
"name": "نيدو لبن اساسى حديد ظرف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيدو لبن اساسى حديد ظرف",
"Product_EN": null,
"Product_Id": "00000437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3324,
"name": "زاهر عسل اسود برطمان 500 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل اسود برطمان 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3325,
"name": "نستله نيدو حليب مجفف ظرف 125 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نيدو حليب مجفف ظرف 125 جم",
"Product_EN": null,
"Product_Id": "00000439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3326,
"name": "زاهر عسل اسود برطمان 1 كجم - موقوف",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل اسود برطمان 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00000440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3327,
"name": "زاهر عسل نحل ابيض 1 كجم - موقوف",
"price": 74,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل ابيض 1 كجم - موقوف",
"Product_EN": "Zaher Clover Blossom Honey 1 Kg",
"Product_Id": "00000442 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3328,
"name": "بيت فود كاستر فانليا 300 جم - موقوف",
"price": 8.9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود كاستر فانليا 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3329,
"name": "بيت فود كاستر شيكولاتة 300 جم - موقوف",
"price": 9.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود كاستر شيكولاتة 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3330,
"name": "زاهر عسل نحل ابيض 500 جم - موقوف",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل ابيض 500 جم - موقوف",
"Product_EN": "Zaher Clover Blossom Honey 500 g",
"Product_Id": "00000445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3331,
"name": "تيميز شوكو بوبس 30 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو بوبس 30 جم",
"Product_EN": "Temmy's Choco Pops 30 gm",
"Product_Id": "00000446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3332,
"name": "بيت فود جيلى 70 جم - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود جيلى 70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3333,
"name": "تيميز كورن فليكس 30 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز كورن فليكس 30 جم",
"Product_EN": "Temmy's Corn Flakes 30 gm",
"Product_Id": "00000448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3334,
"name": "بيت فود كريم كراميل 60 جم - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود كريم كراميل 60 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3335,
"name": "تيميز كورن فليكس 250 جم",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز كورن فليكس 250 جم",
"Product_EN": "Temmy's Corn Flakes 250 gm",
"Product_Id": "00000450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3336,
"name": "بيت فودكريم فانليا 80 جم - موقوف",
"price": 5.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فودكريم فانليا 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3337,
"name": "تيميز شوكو سكوبس 250 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو سكوبس 250 جم",
"Product_EN": "Temmy's Choco Scoops 250 gm",
"Product_Id": "00000452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3338,
"name": "بيت فود كريم شيكولاتة 80 جم - موقوف",
"price": 5.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود كريم شيكولاتة 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3339,
"name": "تيميز شوفان ابيض لايت 500 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوفان ابيض لايت 500 جم",
"Product_EN": "Temmy's Light White Oats 500 gm",
"Product_Id": "00000455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3340,
"name": "دريم ايس كريم بودر فانيليا 80 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم ايس كريم بودر فانيليا 80 جم",
"Product_EN": "Dreem Ice Cream Powder Vanilla 80 gm",
"Product_Id": "00000456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3341,
"name": "دريم ايس كريم بودر فراولة 80 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم ايس كريم بودر فراولة 80 جم",
"Product_EN": "Dreem Ice Cream Powder Strawberry 80 gm",
"Product_Id": "00000457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3342,
"name": "لاكتيل زبادى طبيعى 200 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى طبيعى 200 جم",
"Product_EN": "Lactel Natural Yogurt 200 gm",
"Product_Id": "00000458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3343,
"name": "دريم ايس كريم بودر شيكولاتة 80 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم ايس كريم بودر شيكولاتة 80 جم",
"Product_EN": "Dreem Ice Cream Powder Chocolate 80 gm",
"Product_Id": "00000459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3344,
"name": "حلوانى معمول بالتمر 2 ق - موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى معمول بالتمر 2 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3345,
"name": "شيبسى جبنه متبله 5 ج 82 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جبنه متبله 5 ج 82 جم",
"Product_EN": null,
"Product_Id": "00000461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3346,
"name": "بيت فود بسبوسه جوز هند 400 جم - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود بسبوسه جوز هند 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3347,
"name": "شيبسى جبنه 5 ج 82 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جبنه 5 ج 82 جم",
"Product_EN": null,
"Product_Id": "00000463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3348,
"name": "الملتزم دقيق 1 ك",
"price": 5.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملتزم دقيق 1 ك",
"Product_EN": null,
"Product_Id": "00000465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3349,
"name": "صنى زيت للقلى 2.400 لتر",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صنى زيت للقلى 2.400 لتر",
"Product_EN": "Sunny Oil For Frying 2.400 L",
"Product_Id": "00000466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3350,
"name": "بيت فود فانليا ظرف 1 جم - موقوف",
"price": 0.3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود فانليا ظرف 1 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3351,
"name": "حلوه زيت للقلى 2.5 لتر",
"price": 49.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوه زيت للقلى 2.5 لتر",
"Product_EN": "Helwa Oil For Frying 2.5 L",
"Product_Id": "00000468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3352,
"name": "بيت فود بيكنج بودر ظرف 16 جم - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود بيكنج بودر ظرف 16 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3353,
"name": "جنه سمن نباتى ظرف 55 جم",
"price": 1.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جنه سمن نباتى ظرف 55 جم",
"Product_EN": "Ganna Vegetable Ghee 55 gm",
"Product_Id": "00000470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3354,
"name": "بيت فود مسحوق كريمه خفق ظرف 45 جم - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود مسحوق كريمه خفق ظرف 45 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3355,
"name": "دريم خميره جافه فوريه 12 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم خميره جافه فوريه 12 جم",
"Product_EN": "Dreem Instant Dry Yeast 12 gm",
"Product_Id": "00000473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3356,
"name": "بيت فود نشا 300 جم - موقوف",
"price": 9.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود نشا 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3357,
"name": "الملكه مكرونة لسان400 جم - موقوف",
"price": 3.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونة لسان400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3358,
"name": "بيت فود نشا 50 جم - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود نشا 50 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3359,
"name": "بيك رولز مقرمشات بالبيتزا الايطالية 55 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز مقرمشات بالبيتزا الايطالية 55 جم",
"Product_EN": "Bake Rolls Crackers With Italian Pizza 55 gm",
"Product_Id": "00000477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3360,
"name": "ايزى فود نشا ظرف 50 جم - موقوف",
"price": 0.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزى فود نشا ظرف 50 جم - موقوف",
"Product_EN": "",
"Product_Id": "00000478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3361,
"name": "شيبسى بطعم كباب 40 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى بطعم كباب 40 جم",
"Product_EN": null,
"Product_Id": "00000479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3362,
"name": "شيبسى بطعم ملح 40 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى بطعم ملح 40 جم",
"Product_EN": "",
"Product_Id": "00000480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3363,
"name": "بريزيدون جبنه براميلى تابس 250 جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه براميلى تابس 250 جم",
"Product_EN": "President Baramily Cheese Taps 250 gm",
"Product_Id": "00000481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3364,
"name": "شيبسى شطه وليمون جامبو",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى شطه وليمون جامبو",
"Product_EN": null,
"Product_Id": "00000482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3365,
"name": "بريزيدون جبنه اسطمبولى تابس 250 جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه اسطمبولى تابس 250 جم",
"Product_EN": "President Istanbuli Cheese Taps 250 gm",
"Product_Id": "00000484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3366,
"name": "بريزيدون جبنه فيتا تتراباك 250 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه فيتا تتراباك 250 جم",
"Product_EN": "President Baramily Cheese 250 gm",
"Product_Id": "00000486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3367,
"name": "تشيزا جبنة اسطمبولى 500 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تشيزا جبنة اسطمبولى 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3368,
"name": "المراعى زبادى فراولة 75 مل",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى فراولة 75 مل",
"Product_EN": "Almarai Yogurt Strawberry 75 ml",
"Product_Id": "00000490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3369,
"name": "المراعى زبادى 110 جم 6 ق عرض",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى 110 جم 6 ق عرض",
"Product_EN": "Almarai Yogurt 110 gm 6 Pieces - Offer",
"Product_Id": "00000492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3370,
"name": "المراعى زبادى ميكس 3+1 وفر 0.5 قرش",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى ميكس 3+1 وفر 0.5 قرش",
"Product_EN": "Almarai Yogurt Mix 3 + 1 Save 0.5 Piaster",
"Product_Id": "00000493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3371,
"name": "لاكتيل رايب طبيعى 220 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل رايب طبيعى 220 جم",
"Product_EN": "Lactel Rayeb Milk 220 ml",
"Product_Id": "00000495 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3372,
"name": "بيت فود ملح سولو 700 جم - موقوف",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود ملح سولو 700 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3373,
"name": "الرشيدي حلاوة طحينيه 165 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدي حلاوة طحينيه 165 جم",
"Product_EN": "Al-Rashidi Tahini Halawa 165 gm",
"Product_Id": "00000497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3374,
"name": "بشاير حليب كامل الدسم 500 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بشاير حليب كامل الدسم 500 مل",
"Product_EN": "Bashayer Full Cream Milk 500 ml",
"Product_Id": "00000498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3375,
"name": "لاكتيل رايب 440 جم وفر 50 قرش ",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل رايب 440 جم وفر 50 قرش ",
"Product_EN": "Lactel Rayeb Milk 440 ml Save 50 Piasters",
"Product_Id": "00000499 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3376,
"name": "صباحو لبن 450 مل - موقوف",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صباحو لبن 450 مل - موقوف",
"Product_EN": null,
"Product_Id": "00000500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3377,
"name": "جهينه زبادى مكس فراوله 105 جم ( 3 + 1 )",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى مكس فراوله 105 جم ( 3 + 1 )",
"Product_EN": "Juhayna Mix Yogurt With Strawberry 75 g",
"Product_Id": "00000501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3378,
"name": "الرشيدي طحينه ظرف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدي طحينه ظرف",
"Product_EN": "Al Rashidi Tahina Wittiness",
"Product_Id": "00000502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3379,
"name": "ايزيس عسل اسود 400 جم",
"price": 11.2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس عسل اسود 400 جم",
"Product_EN": "ISIS Black Honey 400 gm",
"Product_Id": "00000504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3380,
"name": "التوحيد مفتقه 750 جم ",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "التوحيد مفتقه 750 جم ",
"Product_EN": null,
"Product_Id": "00000505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3381,
"name": "التوحيد مفتقه 500 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "التوحيد مفتقه 500 جم",
"Product_EN": "Mirinda Orange Can 330 ml",
"Product_Id": "00000506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3382,
"name": "امريكانا باميه زيرو مجمد 400 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا باميه زيرو مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00000507 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3383,
"name": "شيكو ميكس شيكولاتة بالبندق - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيكو ميكس شيكولاتة بالبندق - موقوف",
"Product_EN": "",
"Product_Id": "00000508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3384,
"name": "امريكانا باميه ممتاز مجمد 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا باميه ممتاز مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00000509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3385,
"name": "التوحيد بلح 450 جم - موقوف",
"price": 13.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "التوحيد بلح 450 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3386,
"name": "امريكانا ملوخيه مجمد 400 جم",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا ملوخيه مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00000511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3387,
"name": "دوني بسكويت شاى صغير 9 ق",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوني بسكويت شاى صغير 9 ق",
"Product_EN": "Donny Tea Biscuits Small 9 Pieces",
"Product_Id": "00000512 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3388,
"name": "اطياب برجر بقرى 8 ق",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب برجر بقرى 8 ق",
"Product_EN": "Atyab Beef Burger 8 pieces",
"Product_Id": "00000513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3389,
"name": "اطياب لحم بقرى مفروم 350 جم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب لحم بقرى مفروم 350 جم",
"Product_EN": "Atyab Minced Beef 350 g",
"Product_Id": "00000514 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3390,
"name": "مولتو مينى مكس فراوله 66 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو مينى مكس فراوله 66 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3391,
"name": "الزهار جلاش 350 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الزهار جلاش 350 جم",
"Product_EN": "Al Zahar Goulash Filo Roll 350 g",
"Product_Id": "00000516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3392,
"name": "اطياب بانية حار 1 ك - موقوف",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب بانية حار 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00000518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3393,
"name": "كوكى جناح دجاج كرانشى حار 700 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى جناح دجاج كرانشى حار 700 جم",
"Product_EN": "Koki Crunchy Chicken Wings Hot 700 gm",
"Product_Id": "00000519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3394,
"name": "ميراندا تفاح اخضر بلاستيك 2 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا تفاح اخضر بلاستيك 2 لتر",
"Product_EN": null,
"Product_Id": "00000520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3395,
"name": "ايزيس جالون مياه 19 لتر",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس جالون مياه 19 لتر",
"Product_EN": "ISIS Gallon Water 19 L",
"Product_Id": "00000521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3396,
"name": "العروسه شاى اسود 100 كيس",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العروسه شاى اسود 100 كيس",
"Product_EN": "Al Arosa Soft Black Tea 100 Raw",
"Product_Id": "00000522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3397,
"name": "سفانه تونه قطع 140 جم - موقوف",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفانه تونه قطع 140 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3398,
"name": "سن جولد تونه قطع 130 جم - موقوف",
"price": 10.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سن جولد تونه قطع 130 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3399,
"name": "المثالى تونه قطع 65 جم - موقوف",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى تونه قطع 65 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3400,
"name": "المثالى سردين قطع حار 150 جم - موقوف",
"price": 8.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى سردين قطع حار 150 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3401,
"name": "جولدن فيش تونه مفتته س 140 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جولدن فيش تونه مفتته س 140 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3402,
"name": "جولدن فيش تونه ق 140 جم - موقوف",
"price": 14.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جولدن فيش تونه ق 140 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3403,
"name": "المثالى تونه مفتته 80 جم - موقوف",
"price": 7.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى تونه مفتته 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3404,
"name": "صن جولد تونه ق لايت 130 جم - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن جولد تونه ق لايت 130 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3405,
"name": "الوطنية لانشون بقرى 200 جم - موقوف",
"price": 16.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الوطنية لانشون بقرى 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3406,
"name": "الطاهية ارز بسمتى 1 كجم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية ارز بسمتى 1 كجم",
"Product_EN": "Al Tahya Basmati Rice 1 kg",
"Product_Id": "00000532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3407,
"name": "صن شاين ماكريل كبير 350 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين ماكريل كبير 350 جم",
"Product_EN": "Sunshine Mackerel Large 350 gm",
"Product_Id": "00000533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3408,
"name": "ايزيس اعشاب كركديه 12 فلتر",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب كركديه 12 فلتر",
"Product_EN": "ISIS Hibiscus Herbs 12 Bags",
"Product_Id": "00000534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3409,
"name": "ايزيس اعشاب نعناع 12 فلتر",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب نعناع 12 فلتر",
"Product_EN": "ISIS Mint Herbs 12 Bags",
"Product_Id": "00000535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3410,
"name": "ايزيس اعشاب زنجبيل بالقرفة 12 فلتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب زنجبيل بالقرفة 12 فلتر",
"Product_EN": "ISIS Herbs Ginger Cinnamon 12 Bags",
"Product_Id": "00000536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3411,
"name": "فارم فريتس بطاطس بوم فريت 2.5 كجم",
"price": 63,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس بطاطس بوم فريت 2.5 كجم",
"Product_EN": null,
"Product_Id": "00000537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3412,
"name": "الجودة بيض احمر - مغلف 10 بيضه",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة بيض احمر - مغلف 10 بيضه",
"Product_EN": "Gouda Red Eggs - Packed 10 eggs",
"Product_Id": "00000538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3413,
"name": "الجودة بيض بلدى - مغلف 10 بيضه",
"price": 25.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة بيض بلدى - مغلف 10 بيضه",
"Product_EN": "Gouda Local Eggs - Packed 10 eggs",
"Product_Id": "00000539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3414,
"name": "بريزيدون جبنه شيدر برجر شرائح 200 جم ",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه شيدر برجر شرائح 200 جم ",
"Product_EN": "President Cheddar Cheese Burger Slices 200 gm ",
"Product_Id": "00000540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3415,
"name": "كوكس جيلى مانجو 80 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس جيلى مانجو 80 جم",
"Product_EN": null,
"Product_Id": "00000541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3416,
"name": "كوكس جيلى موز 80 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس جيلى موز 80 جم",
"Product_EN": null,
"Product_Id": "00000542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3417,
"name": "الضحى لوبيا بلدى 500 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى لوبيا بلدى 500 جم",
"Product_EN": "Al Doha Black Eyed Peas 500 g",
"Product_Id": "00000543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3418,
"name": "الضحى عدس بجبة 500 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى عدس بجبة 500 جم",
"Product_EN": "Al Doha Brown Lentils 500 g",
"Product_Id": "00000544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3419,
"name": "حلوانى حلاوة طحينيه بالفسدق 320 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوة طحينيه بالفسدق 320 جم",
"Product_EN": "Halwani Halawa Tahini Pistachio 320 gm",
"Product_Id": "00000545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3420,
"name": "حلوانى حلاوه بالبندق 320 جم",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوه بالبندق 320 جم",
"Product_EN": "Halwani Halawa With Hazelnuts 275 gm",
"Product_Id": "00000546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3421,
"name": "الطحان فراولة 400 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان فراولة 400 جم",
"Product_EN": null,
"Product_Id": "00000547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3422,
"name": "فورنو طماطم و زعتر",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فورنو طماطم و زعتر",
"Product_EN": null,
"Product_Id": "00000548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3423,
"name": "الطاهية مشروم شرائح 400 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية مشروم شرائح 400 جم",
"Product_EN": "Al Tahya Pieces And Stems Mushrooms 400 gm",
"Product_Id": "00000549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3424,
"name": "جهينة زبادو مشروب زبادي بالمانجو 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي بالمانجو 220 مل",
"Product_EN": "Juhayna Zabado Mango Yogurt Drink 220 ml",
"Product_Id": "00000550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3425,
"name": "جهينة زبادو مشروب زبادي بالمانجو 440 مل",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي بالمانجو 440 مل",
"Product_EN": "Juhayna Zabado Mango Yogurt Drink 220 ml",
"Product_Id": "00000551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3426,
"name": "دانون مشروب زبادى بالفراوله 400 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب زبادى بالفراوله 400 جم",
"Product_EN": "Danone Strawberry Yogurt Drink 400 gm",
"Product_Id": "00000552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3427,
"name": "كريستال زيت عباد 2.4 لتر - موقوف",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت عباد 2.4 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00000553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3428,
"name": "كريستال سمنه بيضاء 750 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال سمنه بيضاء 750 جم",
"Product_EN": "Crystal White Ghee 750 gm",
"Product_Id": "00000554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3429,
"name": "ليبتون شاى اثقل 25 فتلة - موقوف",
"price": 10.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اثقل 25 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00000555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3430,
"name": "ليبتون شاى اخضر نعناع مغربى 25 فتلة - موقوف",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر نعناع مغربى 25 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00000556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3431,
"name": "جهينه كلاسيك عصير اناناس 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير اناناس 235 مل",
"Product_EN": "Juhayna Pineapple Juice 235 ml",
"Product_Id": "00000557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3432,
"name": "جهينه عصير يوسفى 235 مل",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه عصير يوسفى 235 مل",
"Product_EN": "Juhayna Tangerine Mandarin Juice 235 ml",
"Product_Id": "00000558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3433,
"name": "جهينه بيور عصير اناناس 1 لتر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيور عصير اناناس 1 لتر",
"Product_EN": "Juhayna Pure Pineapple Juice 1 L",
"Product_Id": "00000559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3434,
"name": "الطاهية كمبوت اناناس 820 جم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية كمبوت اناناس 820 جم",
"Product_EN": "Altahya Pineapple Compote 820 gm",
"Product_Id": "00000560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3435,
"name": "نسكافيه كلاسيك قهوة سريعه التحضير برطمان 200 جم",
"price": 98,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه كلاسيك قهوة سريعه التحضير برطمان 200 جم",
"Product_EN": null,
"Product_Id": "00000561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3436,
"name": "نسكافيه ريتش 3*1 علبه - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه ريتش 3*1 علبه - موقوف",
"Product_EN": null,
"Product_Id": "00000562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3437,
"name": "كابتشينو شيكولاتة 8 ظرف - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كابتشينو شيكولاتة 8 ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00000564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3438,
"name": "كابتشينو بندق 8 ظرف - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كابتشينو بندق 8 ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00000565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3439,
"name": "شاهين بن سادة 200 جم",
"price": 23.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاهين بن سادة 200 جم",
"Product_EN": "Shaheen Coffee Plain 200 gm",
"Product_Id": "00000566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3440,
"name": "شاهين بن محوج حبهان 200 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاهين بن محوج حبهان 200 جم",
"Product_EN": "Shaheen Coffee Mahoj Cardamom 200 gm",
"Product_Id": "00000567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3441,
"name": "جهينة كريمة طهى 500 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة كريمة طهى 500 جم",
"Product_EN": "Juhayna Cooking Cream 500 ml",
"Product_Id": "00000568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3442,
"name": "جهينة كريمة طهى 200 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة كريمة طهى 200 جم",
"Product_EN": "Juhayna Cooking Cream 200 ml",
"Product_Id": "00000569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3443,
"name": "تيميز شوكو بوبس 250 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو بوبس 250 جم",
"Product_EN": "Temmy's Choco Pops 250 gm",
"Product_Id": "00000570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3444,
"name": "حلوانى مربى تين 750 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى تين 750 جم",
"Product_EN": "Halwani Fig Jam 750 gm",
"Product_Id": "00000571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3445,
"name": "اطياب صدور بانيه بارد 400 جم 8 ق",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب صدور بانيه بارد 400 جم 8 ق",
"Product_EN": "Atyab Crispy Chicken Pane 8 pieces 400 g",
"Product_Id": "00000573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3446,
"name": "طياب صدور بانيه حار 400 جم 8 ق",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طياب صدور بانيه حار 400 جم 8 ق",
"Product_EN": "Atyab Hot Crispy Chicken Pane 8 pieces 400 g",
"Product_Id": "00000574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3447,
"name": "اطياب ستربس دجاج حار 400 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب ستربس دجاج حار 400 جم",
"Product_EN": "Atyab Hot Chicken Strips 400 g",
"Product_Id": "00000575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3448,
"name": "حلوانى كفتة حاتى بقرى 350 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى كفتة حاتى بقرى 350 جم",
"Product_EN": "Halwani Beef Hati Kofta 350 gm",
"Product_Id": "00000576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3449,
"name": "شيبسى جبنه متبله 8 ج 133 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جبنه متبله 8 ج 133 جم",
"Product_EN": null,
"Product_Id": "00000577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3450,
"name": "شيبسى جبنة متبلة 40 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جبنة متبلة 40 جم",
"Product_EN": null,
"Product_Id": "00000578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3451,
"name": "فاين مناديل جامبو 6 بكره",
"price": 34.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين مناديل جامبو 6 بكره",
"Product_EN": null,
"Product_Id": "00000583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3452,
"name": "الوادى تمر جاف400جم",
"price": 16.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الوادى تمر جاف400جم",
"Product_EN": null,
"Product_Id": "00000584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3453,
"name": "ايزي كير 80 منديل كاب",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزي كير 80 منديل كاب",
"Product_EN": "Easy Care 80 Wipes Cap",
"Product_Id": "00000585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3454,
"name": "طيبات الوادى تمر الوادى 500 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى تمر الوادى 500 جم",
"Product_EN": "Taybat Al Wadi Dates Al Wadi 500 gm",
"Product_Id": "00000586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3455,
"name": "مولتو بالجبنة - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو بالجبنة - موقوف",
"Product_EN": null,
"Product_Id": "00000587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3456,
"name": "مولتو مينى كرواسون كاكاو 4 قطع ",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو مينى كرواسون كاكاو 4 قطع ",
"Product_EN": "Molto Mini Croissant Cocoa 4 Pieces",
"Product_Id": "00000588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3457,
"name": "كيرى جبنه مربعات بالقشطه 8 ق",
"price": 1386,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مربعات بالقشطه 8 ق",
"Product_EN": "Kiri Cheese Squares Cream 8 Pieces",
"Product_Id": "00000590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3458,
"name": "كيرى جبنه مربعات بالقشطه 12 ق - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مربعات بالقشطه 12 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3459,
"name": "لافاش جبنة كيرى 6 ق - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كيرى 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3460,
"name": "لافاش اورجينال جبنة مثلثات 8 ق - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش اورجينال جبنة مثلثات 8 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3461,
"name": "ابو الولد جبنة مثلثات 8 ق",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابو الولد جبنة مثلثات 8 ق",
"Product_EN": "Abu El Walad Triangle Cheese 8 Pieces",
"Product_Id": "00000594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3462,
"name": "ابو الولد جبنة مثلثات 16 ق",
"price": 15.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابو الولد جبنة مثلثات 16 ق",
"Product_EN": "Abu El Walad Triangle Cheese 16 Pieces",
"Product_Id": "00000597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3463,
"name": "لافاش جبنة مثلثات 16 ق",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة مثلثات 16 ق",
"Product_EN": "LaVache Triangle Cheese 16 Pieces",
"Product_Id": "00000598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3464,
"name": "لافاش اورجينال جبنة مثلثات 24 ق - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش اورجينال جبنة مثلثات 24 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3465,
"name": "لافاش اورجينال جبنة مثلثات 40 ق - موقوف",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش اورجينال جبنة مثلثات 40 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3466,
"name": "بريزيدون جبنه سبريد شيدر كوب 140 جم",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد شيدر كوب 140 جم",
"Product_EN": "President Spread Cheddar Cheese 140 gm",
"Product_Id": "00000601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3467,
"name": "بريزيدون جبنه سبريد قشطه كوب 140 جم",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد قشطه كوب 140 جم",
"Product_EN": "President Spread Creamy Cheese 140 gm",
"Product_Id": "00000602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3468,
"name": "بريزيدون جبنه سبريد قشطه كوب 240 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد قشطه كوب 240 جم",
"Product_EN": "President Spread Creamy Cheese 240 gm",
"Product_Id": "00000603 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3469,
"name": "بريزيدون جبنه مثلثات 32 ق",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه مثلثات 32 ق",
"Product_EN": "President Triangle Cheese 32 Pieces",
"Product_Id": "00000604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3470,
"name": "بريزيدون جبنه مثلثات 48 ق",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه مثلثات 48 ق",
"Product_EN": "President Triangle Cheese 48 Pieces",
"Product_Id": "00000605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3471,
"name": "بريزيدون جبنه مثلثات لايت 8 ق",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه مثلثات لايت 8 ق",
"Product_EN": "President Light Triangle Cheese 8 Pieces",
"Product_Id": "00000606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3472,
"name": "بريزيدون جبنه سبريد رومى كوب 500 جم",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد رومى كوب 500 جم",
"Product_EN": "President Spread Romy Cheese 500 gm",
"Product_Id": "00000607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3473,
"name": "زاهر حليب جاموسى - كيس",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب جاموسى - كيس",
"Product_EN": "Zaher Buffalo Milk - Raw ",
"Product_Id": "00000608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3474,
"name": "بريزيدون جبنه اسطنبولى تابس 500 جم",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه اسطنبولى تابس 500 جم",
"Product_EN": "President Istanbuli Cheese Taps 500 gm",
"Product_Id": "00000609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3475,
"name": "بريزيدون جبنه براميلى تابس 500 جم",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه براميلى تابس 500 جم",
"Product_EN": "President Baramily Cheese Taps 500 gm",
"Product_Id": "00000610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3476,
"name": "بريزيدون جبنه فيتا تابس 500 جم",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه فيتا تابس 500 جم",
"Product_EN": "President Feta Cheese Taps 500 gm",
"Product_Id": "00000611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3477,
"name": "بريزيدون جبنه مثلثات 16 ق",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه مثلثات 16 ق",
"Product_EN": "President Triangle Cheese 16 Pieces",
"Product_Id": "00000612 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3478,
"name": "زاهر برواز شمع عسل وزن - موقوف",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر برواز شمع عسل وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3479,
"name": "بريزيدون جبنه مثلثات 24 ق",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه مثلثات 24 ق",
"Product_EN": "President Triangle Cheese 24 Pieces",
"Product_Id": "00000614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3480,
"name": "بريزيدون جبنه سبريد رومى كوب 140 جم",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد رومى كوب 140 جم",
"Product_EN": "President Spread Romy Cheese 140 gm",
"Product_Id": "00000615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3481,
"name": "زاهر جبنه براميلى ساده وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه براميلى ساده وزن",
"Product_EN": "Zaher Barameli Cheese - Scalable",
"Product_Id": "00000616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3482,
"name": "بريزيدون جبنه سبريد رومى كوب 240 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد رومى كوب 240 جم",
"Product_EN": "President Spread Romy Cheese 240 gm",
"Product_Id": "00000617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3483,
"name": "بريزيدون جبنه مثلثات 8 ق",
"price": 16.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه مثلثات 8 ق",
"Product_EN": "President Triangle Cheese 8 Pieces",
"Product_Id": "00000618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3484,
"name": "بريزيدون جبنه سبريد قشطه كوب 500 جم ",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد قشطه كوب 500 جم ",
"Product_EN": "President Spread Creamy Cheese 500 gm",
"Product_Id": "00000619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3485,
"name": "كاليفورنيا سردين مغربى عادى زيت صويا",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كاليفورنيا سردين مغربى عادى زيت صويا",
"Product_EN": "California Sardines Regular Moroccan Soy Oil",
"Product_Id": "00000620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3486,
"name": "كاليفورنيا سردين مغربي حار زيت صويا",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كاليفورنيا سردين مغربي حار زيت صويا",
"Product_EN": "California Moroccan Sardines Hot Soy Oil",
"Product_Id": "00000621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3487,
"name": "امريكانا فول مدمس ساده 400 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فول مدمس ساده 400 جم",
"Product_EN": null,
"Product_Id": "00000622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3488,
"name": "دانا بلو جبنه ريكفورد مثلث 100 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانا بلو جبنه ريكفورد مثلث 100 جم",
"Product_EN": "Danablue Roquefort Cheese triangle 100 gm",
"Product_Id": "00000623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3489,
"name": "تايد مسحوق اتوماتيك 8ك - موقوف",
"price": 199.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق اتوماتيك 8ك - موقوف",
"Product_EN": null,
"Product_Id": "00000624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3490,
"name": "اولويز طويل جدا24فوطه ليل - موقوف",
"price": 27.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز طويل جدا24فوطه ليل - موقوف",
"Product_EN": null,
"Product_Id": "00000625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3491,
"name": "بانتين بلسم ناعم وحرير360ملل - موقوف",
"price": 37.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بلسم ناعم وحرير360ملل - موقوف",
"Product_EN": null,
"Product_Id": "00000627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3492,
"name": "هيد شامبو400 مل - موقوف",
"price": 55.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد شامبو400 مل - موقوف",
"Product_EN": null,
"Product_Id": "00000628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3493,
"name": "بونكس مسحوق ملابس 8ك - موقوف",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بونكس مسحوق ملابس 8ك - موقوف",
"Product_EN": null,
"Product_Id": "00000629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3494,
"name": "داونى نسيم الوادى مركز20مل - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى نسيم الوادى مركز20مل - موقوف",
"Product_EN": null,
"Product_Id": "00000630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3495,
"name": "داونى 500مل مركز - موقوف",
"price": 22.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى 500مل مركز - موقوف",
"Product_EN": null,
"Product_Id": "00000631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3496,
"name": "كريستال شطه 176مل - موقوف",
"price": 19.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال شطه 176مل - موقوف",
"Product_EN": null,
"Product_Id": "00000632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3497,
"name": "كريستال صويا صوص 354 مل - موقوف",
"price": 54.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال صويا صوص 354 مل - موقوف",
"Product_EN": null,
"Product_Id": "00000633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3498,
"name": "تويكس شيكولاتة كراميل 25 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تويكس شيكولاتة كراميل 25 جم",
"Product_EN": "Twix Chocolate Caramel 25 gm",
"Product_Id": "00000634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3499,
"name": "سوهاجى ارز مصرى 1 كجم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى ارز مصرى 1 كجم",
"Product_EN": "Suhagy Egyptian Rice 1 Kg",
"Product_Id": "00000636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3500,
"name": "زاهر زبادى كامل الدسم 120جم ",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زبادى كامل الدسم 120جم ",
"Product_EN": "Zaher Full Cream Yogurt 120 g",
"Product_Id": "00000637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3501,
"name": "سوهاجى ارز بسمتى ذهبى 1 كجم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى ارز بسمتى ذهبى 1 كجم",
"Product_EN": "Suhagy Basmati Golden Rice 1 Kg",
"Product_Id": "00000638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3502,
"name": "زاهر زبادى كامل الدسم 180 جم ",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زبادى كامل الدسم 180 جم ",
"Product_EN": "Zaher Full Cream Yogurt 180 g",
"Product_Id": "00000639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3503,
"name": "البدر ارز 1 كجم - موقوف",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البدر ارز 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00000640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3504,
"name": "البدر دقيق 1 كجم - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البدر دقيق 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00000641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3505,
"name": "المثالى سردين بارد 125 جم - موقوف",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى سردين بارد 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3506,
"name": "زاهر حلويات ارز باللبن ساده صغير 150 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات ارز باللبن ساده صغير 150 جم",
"Product_EN": "Zaher Rice Pudding 150 g",
"Product_Id": "00000643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3507,
"name": "زاهر حلويات ارز باللبن ساده كبير 320 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات ارز باللبن ساده كبير 320 جم",
"Product_EN": "Zaher Rice Pudding 320 g",
"Product_Id": "00000645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3508,
"name": "صولا بسكويت شيكولاتة بيضاء - موقوف",
"price": 33.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولا بسكويت شيكولاتة بيضاء - موقوف",
"Product_EN": "",
"Product_Id": "00000646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3509,
"name": "دونى بسكويت شاى صغير 6 ق ",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دونى بسكويت شاى صغير 6 ق ",
"Product_EN": "Donny Tea Biscuits Small 6 Pieces",
"Product_Id": "00000647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3510,
"name": "دونى بسكويت ساده 65 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دونى بسكويت ساده 65 جم",
"Product_EN": "Donny Biscuits plain 65 gm",
"Product_Id": "00000648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3511,
"name": "زاهر زبادى كامل الدسم 400 جم ",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زبادى كامل الدسم 400 جم ",
"Product_EN": "Zaher Full Cream Yogurt 400 g",
"Product_Id": "00000649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3512,
"name": "الجودة طبق بيض احمر - مغلف 6 ق - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة طبق بيض احمر - مغلف 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3513,
"name": "زاهر جبنه رومى قديم 250 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه رومى قديم 250 جم",
"Product_EN": "Zaher Old Roumi Cheese 250 g",
"Product_Id": "00000652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3514,
"name": "الجودة طبق بيض ابيض - مغلف 6 ق - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة طبق بيض ابيض - مغلف 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3515,
"name": "زاهر جبنه رومى قديم 125 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه رومى قديم 125 جم",
"Product_EN": "Zaher Old Roumi Cheese 125 g",
"Product_Id": "00000654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3516,
"name": "زاهر زبده بلدى بقرى - موقوف",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زبده بلدى بقرى - موقوف",
"Product_EN": null,
"Product_Id": "00000655 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3517,
"name": "زاهر زبده بلدى جاموسى - موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زبده بلدى جاموسى - موقوف",
"Product_EN": null,
"Product_Id": "00000656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3518,
"name": "زاهر عسل نحل نوارة البرسيم بلاستيك 1.5 كجم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل نوارة البرسيم بلاستيك 1.5 كجم",
"Product_EN": "Zaher Clover Blossom Bee Honey 1.5 Kg",
"Product_Id": "00000658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3519,
"name": "زاهرايس كريم بوله 7 - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهرايس كريم بوله 7 - موقوف",
"Product_EN": null,
"Product_Id": "00000660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3520,
"name": "زاهر ايس كريم فئه 12 ج - بوله",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم فئه 12 ج - بوله",
"Product_EN": null,
"Product_Id": "00000661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3521,
"name": "زاهر ايس كريم فئه 15ج - بوله",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم فئه 15ج - بوله",
"Product_EN": null,
"Product_Id": "00000662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3522,
"name": "زاهر حلويات فرن ارز باللبن 240 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات فرن ارز باللبن 240 جم",
"Product_EN": "Zaher Rice Pudding Oven 240 g",
"Product_Id": "00000663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3523,
"name": "زاهر حلويات ارز باللبن ساده وسط 190 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات ارز باللبن ساده وسط 190 جم",
"Product_EN": "Zaher Rice Pudding 190 g",
"Product_Id": "00000664 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3524,
"name": "زاهر فطير مشلتت بالسمنه البلدي كبير",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر فطير مشلتت بالسمنه البلدي كبير",
"Product_EN": "Zaher Feteer Meshaltet w Local Ghee - Large Size",
"Product_Id": "00000665 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3525,
"name": "زاهر ارز قنبله بالفواكة - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ارز قنبله بالفواكة - موقوف",
"Product_EN": null,
"Product_Id": "00000666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3526,
"name": "زاهر حلويات ترايفل كبير",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات ترايفل كبير",
"Product_EN": "Zaher Trifle - Large Size",
"Product_Id": "00000667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3527,
"name": "زاهر ارز باللبن كبير سادة - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ارز باللبن كبير سادة - موقوف",
"Product_EN": null,
"Product_Id": "00000668 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3528,
"name": "زاهر موس توت ارزق - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر موس توت ارزق - موقوف",
"Product_EN": null,
"Product_Id": "00000669 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3529,
"name": "زاهر حلويات عاشورا وسط",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات عاشورا وسط",
"Product_EN": "Zaher Ashura - Medium Size",
"Product_Id": "00000670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3530,
"name": "زاهر حلويات جيلى فراوله وسط",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات جيلى فراوله وسط",
"Product_EN": "Zaher Strawberry Jelly - Medium Size",
"Product_Id": "00000671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3531,
"name": "اكسبريس فينو فينا 2 ق - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اكسبريس فينو فينا 2 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000673 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3532,
"name": "زاهر ارز وسط سادة - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ارز وسط سادة - موقوف",
"Product_EN": null,
"Product_Id": "00000674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3533,
"name": "مشبك قرص 1 ق - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "مشبك قرص 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000676 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3534,
"name": "بيض ابيض قطعه - موقوف",
"price": 1.4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيض ابيض قطعه - موقوف",
"Product_EN": null,
"Product_Id": "00000677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3535,
"name": "التوحيد بلح 550 جم - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "التوحيد بلح 550 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000678 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3536,
"name": "السوهاجى ارز 1ك - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السوهاجى ارز 1ك - موقوف",
"Product_EN": null,
"Product_Id": "00000680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3537,
"name": "السوهاجى ارز 5ك - موقوف",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السوهاجى ارز 5ك - موقوف",
"Product_EN": null,
"Product_Id": "00000682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3538,
"name": "بيض بلدى - سايب",
"price": 62.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيض بلدى - سايب",
"Product_EN": null,
"Product_Id": "00000683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3539,
"name": "الضحى ارز بسمتى ذهبى 1 كجم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى ارز بسمتى ذهبى 1 كجم",
"Product_EN": "Al Doha Basmati Golden Rice 1 Kg",
"Product_Id": "00000684 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3540,
"name": "عيش شامى كيس - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عيش شامى كيس - موقوف",
"Product_EN": null,
"Product_Id": "00000685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3541,
"name": "بيض ابيض - سايب",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:39",
"updated_at": "2021-11-01 19:45:39",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيض ابيض - سايب",
"Product_EN": null,
"Product_Id": "00000686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3542,
"name": "الضحى ارز بسمتى جاسمين 1 كجم",
"price": 42.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى ارز بسمتى جاسمين 1 كجم",
"Product_EN": "Al Doha Jasmine Rice 1 Kg",
"Product_Id": "00000687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3543,
"name": "عسليه 1 ق - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عسليه 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00000689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3544,
"name": "سوهاجى فلفل اسود 45 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى فلفل اسود 45 جم",
"Product_EN": "Suhagy Black Pepper 45 gm",
"Product_Id": "00000690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3545,
"name": "الدلتا ارز 5 كجم",
"price": 64.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا ارز 5 كجم",
"Product_EN": "Delta Rice 5 kg",
"Product_Id": "00000691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3546,
"name": "فوليه - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فوليه - موقوف",
"Product_EN": null,
"Product_Id": "00000692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3547,
"name": "زاهر حلويات مشكل طبق - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات مشكل طبق - موقوف",
"Product_EN": null,
"Product_Id": "00000694 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3548,
"name": "سوهاجى كزبره 75 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى كزبره 75 جم",
"Product_EN": "Suhagy Coriander 75 gm",
"Product_Id": "00000695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3549,
"name": "كبريت درج صغير",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "كبريت درج صغير",
"Product_EN": null,
"Product_Id": "00000698 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3550,
"name": "سوهاجى فول تدميس بلدى 500 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى فول تدميس بلدى 500 جم",
"Product_EN": "Suhagy Yellow Lentils 500 gm",
"Product_Id": "00000699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3551,
"name": "سوهاجى كمون مطحون 75 جم",
"price": 12.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى كمون مطحون 75 جم",
"Product_EN": "Suhagy Cumin Powder 75 gm",
"Product_Id": "00000700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3552,
"name": "سكر خير مصر1 ك - موقوف",
"price": 9.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سكر خير مصر1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00000701 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3553,
"name": "سوهاجى فول تدميس 500جم - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى فول تدميس 500جم - موقوف",
"Product_EN": null,
"Product_Id": "00000702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3554,
"name": "سوهاجى عدس بجبة 500جم - موقوف",
"price": 14.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى عدس بجبة 500جم - موقوف",
"Product_EN": null,
"Product_Id": "00000704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3555,
"name": "كسكسى 1 ق 1000 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كسكسى 1 ق 1000 جم",
"Product_EN": null,
"Product_Id": "00000705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3556,
"name": "شيبسى فورنو جبنة فرنسية",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى فورنو جبنة فرنسية",
"Product_EN": null,
"Product_Id": "00000706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3557,
"name": "كسكسى 1 ق 500 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كسكسى 1 ق 500 جم",
"Product_EN": null,
"Product_Id": "00000707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3558,
"name": "سوهاجى ثوم مسحوق 75 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى ثوم مسحوق 75 جم",
"Product_EN": "Suhagy Garlic Powder 75 gm",
"Product_Id": "00000709 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3559,
"name": "جهينة لبن كامل الدسم 1لتر عرض - موقوف",
"price": 12.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة لبن كامل الدسم 1لتر عرض - موقوف",
"Product_EN": null,
"Product_Id": "00000710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3560,
"name": "الضحى فاصوليا بيضاء 500 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى فاصوليا بيضاء 500 جم",
"Product_EN": "Al Doha White Beans 500 g",
"Product_Id": "00000712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3561,
"name": "ملبس",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ملبس",
"Product_EN": null,
"Product_Id": "00000713 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3562,
"name": "الضحى عدس اصفر 500 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى عدس اصفر 500 جم",
"Product_EN": "Al Doha Yellow Lentil 500 gm",
"Product_Id": "00000715 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3563,
"name": "ايزى كير 2ق 80منديل+20منديل",
"price": 51.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير 2ق 80منديل+20منديل",
"Product_EN": "Easy Care 2 Pieces 80+20 Wipes",
"Product_Id": "00000716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3564,
"name": "نوفي فينجرز بسكويت مغطى بالشوكولاتة 41 - 45 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفي فينجرز بسكويت مغطى بالشوكولاتة 41 - 45 جم",
"Product_EN": "Novy Fingers Biscuits Coated Chocolate 41 - 45 gm",
"Product_Id": "00000717 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3565,
"name": "شيبسى جبنة جامبو",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جبنة جامبو",
"Product_EN": null,
"Product_Id": "00000718 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3566,
"name": "زينه مناديل - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل - موقوف",
"Product_EN": null,
"Product_Id": "00000719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3567,
"name": "شيبسى بالطماطم جامبو",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى بالطماطم جامبو",
"Product_EN": null,
"Product_Id": "00000720 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3568,
"name": "العلى كسبره بلدى 40 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى كسبره بلدى 40 جم",
"Product_EN": null,
"Product_Id": "00000721 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3569,
"name": "بيك رولز مقرمشات بالملح 55 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز مقرمشات بالملح 55 جم",
"Product_EN": "Bake Rolls Crackers With Salt 55 gm",
"Product_Id": "00000722 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3570,
"name": "بيك رولز مقرمشات بالزيتون 36 جم ",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز مقرمشات بالزيتون 36 جم ",
"Product_EN": "Bake Rolz Crackers With Olive 36 gm ",
"Product_Id": "00000723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3571,
"name": "نوفى فنجرز مقرمشات مملحة بطعم الكاتشب 40 - 44 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى فنجرز مقرمشات مملحة بطعم الكاتشب 40 - 44 جم",
"Product_EN": null,
"Product_Id": "00000724 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3572,
"name": "بيك رولز مقرمشات بالكاتشب 94 جم ",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز مقرمشات بالكاتشب 94 جم ",
"Product_EN": "Bake Rolls Crackers With Ketchup 94 gm ",
"Product_Id": "00000725 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3573,
"name": "العلى بهارات حواوشى 35 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى بهارات حواوشى 35 جم",
"Product_EN": null,
"Product_Id": "00000728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3574,
"name": "مولتو كرواسون جبنه بالشطه 1 قطعه",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو كرواسون جبنه بالشطه 1 قطعه",
"Product_EN": "Molto Croissant With Chili Cheese 1 Piece",
"Product_Id": "00000729 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3575,
"name": "لوزان عيش سن - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لوزان عيش سن - موقوف",
"Product_EN": null,
"Product_Id": "00000730 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3576,
"name": "العلى بهارات سمك 35 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى بهارات سمك 35 جم",
"Product_EN": null,
"Product_Id": "00000731 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3577,
"name": "مولتو باتيه بالعجوه 1 قطعه",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو باتيه بالعجوه 1 قطعه",
"Product_EN": "Molto Peta Dates 1 Piece",
"Product_Id": "00000732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3578,
"name": "مولتو كرواسون ميكس شيكولاته و كراميل 1 قطعه",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو كرواسون ميكس شيكولاته و كراميل 1 قطعه",
"Product_EN": "Molto Croissant Mix Chocolate & Caramel 1 Piece",
"Product_Id": "00000734 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3579,
"name": "العلى بهارات كبده 35 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى بهارات كبده 35 جم",
"Product_EN": null,
"Product_Id": "00000735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3580,
"name": "العلى بهارات محشى 35 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى بهارات محشى 35 جم",
"Product_EN": null,
"Product_Id": "00000738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3581,
"name": "العلى بهارات فراخ 35 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى بهارات فراخ 35 جم",
"Product_EN": null,
"Product_Id": "00000740 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3582,
"name": "زاهر جبنه ثلاجه ( دبل كريم ) وزن",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه ثلاجه ( دبل كريم ) وزن",
"Product_EN": "Zaher Creamy White Cheese - Scalable",
"Product_Id": "00000742 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3583,
"name": "زاهر جبنه اسطنبولى وزن",
"price": 550,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه اسطنبولى وزن",
"Product_EN": "Zaher Istanbuli Cheese - Scalable",
"Product_Id": "00000744 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3584,
"name": "العلى ثوم مجفف 30 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى ثوم مجفف 30 جم",
"Product_EN": null,
"Product_Id": "00000746 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3585,
"name": "زاهر جبنه ملح خفيف وزن",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه ملح خفيف وزن",
"Product_EN": "Zaher Low Salt Cheese - Scalable",
"Product_Id": "00000748 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3586,
"name": "العلى بصل مجفف 30 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى بصل مجفف 30 جم",
"Product_EN": null,
"Product_Id": "00000749 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3587,
"name": "زاهر جبنه قريش ساده وزن",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه قريش ساده وزن",
"Product_EN": "Zaher Cottage Cheese - Scalable",
"Product_Id": "00000753 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3588,
"name": "دينا جبنه فلمنك وزن - موقوف",
"price": 116,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دينا جبنه فلمنك وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000755 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3589,
"name": "العلى بابريكا اسبانى 40 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى بابريكا اسبانى 40 جم",
"Product_EN": null,
"Product_Id": "00000756 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3590,
"name": "زاهر قشطه بلدى طبيعي وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر قشطه بلدى طبيعي وزن",
"Product_EN": "Zaher Raw Cream - Scalable",
"Product_Id": "00000757 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3591,
"name": "جبنه شيدر اصفر مستورد وزن",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جبنه شيدر اصفر مستورد وزن",
"Product_EN": null,
"Product_Id": "00000758 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3592,
"name": "حلوانى لانشون سادة \/ زيتون\/ بهار وزن",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى لانشون سادة \/ زيتون\/ بهار وزن",
"Product_EN": "Halwani Luncheon Plain \/ Olive \/ Spice - Weight",
"Product_Id": "00000759 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3593,
"name": "السعد بسطرمه بالثوم وزن - موقوف",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "السعد بسطرمه بالثوم وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000760 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3594,
"name": "حلاوة ساده بلدى وزن - موقوف",
"price": 31.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلاوة ساده بلدى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000761 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3595,
"name": "جبنه ريكفورد دنماركى وزن",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جبنه ريكفورد دنماركى وزن",
"Product_EN": null,
"Product_Id": "00000763 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3596,
"name": "زاهر جبنه رومى مبشور وزن - موقوف",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه رومى مبشور وزن - موقوف",
"Product_EN": "Zaher Grated Roumi Cheese - Weight",
"Product_Id": "00000764 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3597,
"name": "فودينا لانشون بيف وزن - موقوف",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فودينا لانشون بيف وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000765 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3598,
"name": "زاهر جبنه مش ( قديمه ) وزن",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه مش ( قديمه ) وزن",
"Product_EN": "Zaher Mish Old Cheese - Weight",
"Product_Id": "00000767 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3599,
"name": "الضحى فول تدميس بلدى 500 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى فول تدميس بلدى 500 جم",
"Product_EN": "Al Doha Fava Beans 500 g",
"Product_Id": "00000768 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3600,
"name": "زاهر طحينة كيس وزن",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر طحينة كيس وزن",
"Product_EN": "Zaher Tahini - Scalable",
"Product_Id": "00000770 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3601,
"name": "الضحى فول مدشوش 500 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى فول مدشوش 500 جم",
"Product_EN": "Al Doha Crushed Beans 500 gm",
"Product_Id": "00000771 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3602,
"name": "لبان تشيكلس علبه - موقوف",
"price": 35.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لبان تشيكلس علبه - موقوف",
"Product_EN": null,
"Product_Id": "00000772 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3603,
"name": "البطريق جبنه فيتا 500 جم نباتى - موقوف",
"price": 10.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "البطريق جبنه فيتا 500 جم نباتى - موقوف",
"Product_EN": null,
"Product_Id": "00000773 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3604,
"name": "الضحى قمح مبشور 500 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى قمح مبشور 500 جم",
"Product_EN": "Al Douha Wheat 500 gm",
"Product_Id": "00000774 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3605,
"name": "حلوانى لانشون بقطع البسطرمة وزن - موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى لانشون بقطع البسطرمة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000775 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3606,
"name": "لبان تشيكلس فراوله 10 قطع",
"price": 35.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لبان تشيكلس فراوله 10 قطع",
"Product_EN": "Gum Chicles Strawberry 10 Pieces",
"Product_Id": "00000776 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3607,
"name": "الضحى برغل ناعم 500 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى برغل ناعم 500 جم",
"Product_EN": "Al Douha Bulgur 500 gm",
"Product_Id": "00000777 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3608,
"name": "حلاوة شيكولاتة بلدى وزن - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلاوة شيكولاتة بلدى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000778 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3609,
"name": "الضحى حمص الشام 500 جم",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى حمص الشام 500 جم",
"Product_EN": "Al Doha Chickpeas 500 g",
"Product_Id": "00000779 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3610,
"name": "لوكس صابون لمسه ناعمه 85 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون لمسه ناعمه 85 جم",
"Product_EN": "LUX Shower Soft Touch 85 ml",
"Product_Id": "00008134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3611,
"name": "لوكس سائل استحمام ملمس كالحرير 500 مل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس سائل استحمام ملمس كالحرير 500 مل",
"Product_EN": "LUX Shower Silk Sensation 500 ml",
"Product_Id": "00008135 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3612,
"name": "لوكس صابون سحر الجمال 85 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون سحر الجمال 85 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3613,
"name": "ريد ليبل شاى اسود ناعم 40 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريد ليبل شاى اسود ناعم 40 جم",
"Product_EN": "Brooke Bond Red Label Dust Tea 40 gm",
"Product_Id": "00008137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3614,
"name": "ريد ليبل شاى اسود ناعم 250 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريد ليبل شاى اسود ناعم 250 جم",
"Product_EN": "Brooke Bond Red Label Dust Tea 250 gm",
"Product_Id": "00008138 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3615,
"name": "عبد المعبود بن محوج فاتح 50 جرام - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج فاتح 50 جرام - موقوف",
"Product_EN": null,
"Product_Id": "00008139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3616,
"name": "عبد المعبود بن ساده فاتح 50 جرام - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن ساده فاتح 50 جرام - موقوف",
"Product_EN": null,
"Product_Id": "00008140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3617,
"name": "كمفورت منعم ملابس 1 لتر + كيس 400 جرام",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس 1 لتر + كيس 400 جرام",
"Product_EN": "Comfort Fabric Softener 1 L + Bag 400 gm",
"Product_Id": "00008141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3618,
"name": "صن لايت مسحوق 2.5 كيلو + علبه هديه",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "صن لايت مسحوق 2.5 كيلو + علبه هديه",
"Product_EN": "Sunlight Powder 2.5 kg + Box Free",
"Product_Id": "00008142 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3619,
"name": "وايت مناديل جيب 10 مناديل",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت مناديل جيب 10 مناديل",
"Product_EN": null,
"Product_Id": "00008143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3620,
"name": "وايت جو باك مناديل 120 ق - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت جو باك مناديل 120 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3621,
"name": "وايت مناديل سحب 550 منديل * 3 ق",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت مناديل سحب 550 منديل * 3 ق",
"Product_EN": null,
"Product_Id": "00008145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3622,
"name": "وايت علب سحب 200 منديل - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت علب سحب 200 منديل - موقوف",
"Product_EN": null,
"Product_Id": "00008146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3623,
"name": "وايت علب سحب 300 منديل - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت علب سحب 300 منديل - موقوف",
"Product_EN": null,
"Product_Id": "00008147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3624,
"name": "وايت كار كب 200 منديل - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت كار كب 200 منديل - موقوف",
"Product_EN": null,
"Product_Id": "00008148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3625,
"name": "وايت بوتيك كيدز 200 منديل - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت بوتيك كيدز 200 منديل - موقوف",
"Product_EN": null,
"Product_Id": "00008149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3626,
"name": "وايت مناديل مطبخ ميجا رول 325 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت مناديل مطبخ ميجا رول 325 جم",
"Product_EN": null,
"Product_Id": "00008150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3627,
"name": "وايت جامبو باك 450 منديل - موقوف",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت جامبو باك 450 منديل - موقوف",
"Product_EN": null,
"Product_Id": "00008151 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3628,
"name": "تمر ملكابى 500 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمر ملكابى 500 جم",
"Product_EN": "Dates Malakaby 500 gm",
"Product_Id": "00008152 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3629,
"name": "ماتيلا شوكولاتة اسبريد 1 كجم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماتيلا شوكولاتة اسبريد 1 كجم",
"Product_EN": "Matella Chocolate Spread 1 kg",
"Product_Id": "00008153 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3630,
"name": "زاهر قمح عاشورا وزن - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر قمح عاشورا وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008155 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3631,
"name": "زاهر قمح بليلة بالحليب - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر قمح بليلة بالحليب - موقوف",
"Product_EN": null,
"Product_Id": "00008156 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3632,
"name": "جبنه شيدر اصفر نيوزلاندى وزن",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جبنه شيدر اصفر نيوزلاندى وزن",
"Product_EN": null,
"Product_Id": "00008157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3633,
"name": "شيبسى صوص بالشطة الحارة 250 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى صوص بالشطة الحارة 250 جم",
"Product_EN": null,
"Product_Id": "00008158 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3634,
"name": "منجل مسحوق بسبوسه 400 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل مسحوق بسبوسه 400 جم",
"Product_EN": null,
"Product_Id": "00008159 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3635,
"name": "منجل مسحوق كيك فراوله 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل مسحوق كيك فراوله 400 جم",
"Product_EN": null,
"Product_Id": "00008160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3636,
"name": "منجل مسحوق كيك فانليا 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل مسحوق كيك فانليا 400 جم",
"Product_EN": null,
"Product_Id": "00008161 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3637,
"name": "منجل مسحوق كيك شيكولاته 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل مسحوق كيك شيكولاته 400 جم",
"Product_EN": null,
"Product_Id": "00008162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3638,
"name": "منجل مسحوق كيك برتقال 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل مسحوق كيك برتقال 400 جم",
"Product_EN": null,
"Product_Id": "00008163 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3639,
"name": "منجل بيكينج بودر 16 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل بيكينج بودر 16 جم",
"Product_EN": null,
"Product_Id": "00008164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3640,
"name": "منجل مسحوق فانليا بالسكر 1 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل مسحوق فانليا بالسكر 1 جم",
"Product_EN": null,
"Product_Id": "00008165 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3641,
"name": "منجل كريم شانتيه فانليا 45 جم",
"price": 71.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل كريم شانتيه فانليا 45 جم",
"Product_EN": null,
"Product_Id": "00008166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3642,
"name": "منجل جيلى فراوله 70 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل جيلى فراوله 70 جم",
"Product_EN": null,
"Product_Id": "00008167 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3643,
"name": "منجل جيلى مانجو 70 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل جيلى مانجو 70 جم",
"Product_EN": null,
"Product_Id": "00008168 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3644,
"name": "منجل جيلى اناناس 70 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل جيلى اناناس 70 جم",
"Product_EN": null,
"Product_Id": "00008169 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3645,
"name": "منجل جيلى بالمشمش 70 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل جيلى بالمشمش 70 جم",
"Product_EN": null,
"Product_Id": "00008170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3646,
"name": "مودس مسحوق شراب برتقال 25 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مودس مسحوق شراب برتقال 25 جم",
"Product_EN": null,
"Product_Id": "00008171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3647,
"name": "مودس مسحوق شراب اناناس 25 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مودس مسحوق شراب اناناس 25 جم",
"Product_EN": null,
"Product_Id": "00008172 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3648,
"name": "مودس مسحوق شراب مانجو 25 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مودس مسحوق شراب مانجو 25 جم",
"Product_EN": null,
"Product_Id": "00008173 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3649,
"name": "دو مارى بسكويت ساده 55 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو مارى بسكويت ساده 55 جم",
"Product_EN": null,
"Product_Id": "00008175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3650,
"name": "دو ديلى بسكويت ساده صغير 55 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو ديلى بسكويت ساده صغير 55 جم",
"Product_EN": null,
"Product_Id": "00008176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3651,
"name": "دو شارچ بسكويت محشو بالعجوه 60 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو شارچ بسكويت محشو بالعجوه 60 جم",
"Product_EN": null,
"Product_Id": "00008177 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3652,
"name": "دو فرنزى بسكويت ساندوتش محشو بكريمه الفانيليا 4 ق",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو فرنزى بسكويت ساندوتش محشو بكريمه الفانيليا 4 ق",
"Product_EN": null,
"Product_Id": "00008178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3653,
"name": "دو فرنزى بسكويت ساندوتش محشو بكريمه الشيكولاته 4 ق",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو فرنزى بسكويت ساندوتش محشو بكريمه الشيكولاته 4 ق",
"Product_EN": null,
"Product_Id": "00008179 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3654,
"name": "دو فرنزى بسكويت ساندوتش محشو بكريمه الفانيليا 6 ق",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو فرنزى بسكويت ساندوتش محشو بكريمه الفانيليا 6 ق",
"Product_EN": null,
"Product_Id": "00008180 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3655,
"name": "دو فرنزى بسكويت ساندوتش محشو بكريمه الشيكولاته 6 ق",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو فرنزى بسكويت ساندوتش محشو بكريمه الشيكولاته 6 ق",
"Product_EN": null,
"Product_Id": "00008181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3656,
"name": "دو باتر بايتس بسكويت زبده دوائر 154 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو باتر بايتس بسكويت زبده دوائر 154 جم",
"Product_EN": null,
"Product_Id": "00008182 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3657,
"name": "دو باتر بايتس بسكويت زبده مربع 154 جم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو باتر بايتس بسكويت زبده مربع 154 جم",
"Product_EN": null,
"Product_Id": "00008183 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3658,
"name": "شيتوس كرنشى شطة مولعة كبير",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس كرنشى شطة مولعة كبير",
"Product_EN": null,
"Product_Id": "00008184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3659,
"name": "احمد تى شاى ايرل جراي 100 فتله",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى ايرل جراي 100 فتله",
"Product_EN": "Ahmad Tea Earl Gray 100 Bags",
"Product_Id": "00008185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3660,
"name": "احمد تى شاى اخضر ايرل جراي 25 فتله",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر ايرل جراي 25 فتله",
"Product_EN": "ahmed Tea Green Earl Gray 25 Bags",
"Product_Id": "00008186 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3661,
"name": "احمد تى شاى ايرل جراي 250 جم",
"price": 53.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى ايرل جراي 250 جم",
"Product_EN": "Ahmad Tea Earl Gray 250 gm ",
"Product_Id": "00008187 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3662,
"name": "أحمد تى شاى ايرل جرى 100 جم - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "أحمد تى شاى ايرل جرى 100 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008188 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3663,
"name": "احمد تى شاى افطار انجليزى 250 جم",
"price": 52.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى افطار انجليزى 250 جم",
"Product_EN": "Ahmad Tea English Breakfast Tea 250 gm",
"Product_Id": "00008191 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3664,
"name": "احمد تى شاى افطار 250 جم",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى افطار 250 جم",
"Product_EN": "Ahmad Tea English Breakfast Tea 250 gm",
"Product_Id": "00008192 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3665,
"name": "شاي احمد تي لندن بليند 100 فتله",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاي احمد تي لندن بليند 100 فتله",
"Product_EN": "Ahmad Tea London Blend Loose Tea 100 Bags",
"Product_Id": "00008194 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3666,
"name": "احمد تى شاى اسود كلاسيك 50 فتلة",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اسود كلاسيك 50 فتلة",
"Product_EN": "Ahmad Tea Black Classic Tea Selection 50 Bags",
"Product_Id": "00008195 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3667,
"name": "احمد تي لندن بليند شاى 25 فتله",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تي لندن بليند شاى 25 فتله",
"Product_EN": "Ahmad Tea London Blend Loose Tea 25 Bags",
"Product_Id": "00008196 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3668,
"name": "نيو كريمة كريمة الكاكاو والبندق بلاستيك 200 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيو كريمة كريمة الكاكاو والبندق بلاستيك 200 جم",
"Product_EN": "New Cream Cocoa and Hazelnut Cream Plastic 200 gm",
"Product_Id": "00008197 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3669,
"name": "نيو كريمه كريمه الكاكاو والبندق بلاستيك 400 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيو كريمه كريمه الكاكاو والبندق بلاستيك 400 جم",
"Product_EN": "New Cream Cocoa and Hazelnut Cream Plastic 400 gm",
"Product_Id": "00008198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3670,
"name": "نيو كريمة كريمة الكاكاو والبندق زجاج 400 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيو كريمة كريمة الكاكاو والبندق زجاج 400 جم",
"Product_EN": "New Cream Cocoa and Hazelnut Cream Glass 400 gm",
"Product_Id": "00008199 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3671,
"name": "ايه ام ار كمبوت اناناس شرائح 850 جم",
"price": 42.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايه ام ار كمبوت اناناس شرائح 850 جم",
"Product_EN": "A.M.R Sliced Pineapple 850 gm ",
"Product_Id": "00008200 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3672,
"name": "فارمرز اناناس شرائح فى الشراب الحلو الخفيف 850 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فارمرز اناناس شرائح فى الشراب الحلو الخفيف 850 جم",
"Product_EN": "Farmer'S Sliced Pineapple In Light Syrup 800 gm",
"Product_Id": "00008201 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3673,
"name": "فارمرز كمبوت انصاف خوخ 820 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فارمرز كمبوت انصاف خوخ 820 جم",
"Product_EN": " Farmers Compote Peach Halves 820 gm",
"Product_Id": "00008202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3674,
"name": "اية ام ار خوخ فلبوس 820 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار خوخ فلبوس 820 جم",
"Product_EN": "A.M.R Peach Pulps 820 gm",
"Product_Id": "00008203 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3675,
"name": "اية ام ار خوخ فروتى 820 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار خوخ فروتى 820 جم",
"Product_EN": "A.M.R Peach Fruity 820 gm",
"Product_Id": "00008204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3676,
"name": "باو باو خميره فوريه جافه 125 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باو باو خميره فوريه جافه 125 جم",
"Product_EN": "Bao Bao Instant Dry Yeast 125 gm",
"Product_Id": "00008205 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3677,
"name": "باو باو خميره جافه 100 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باو باو خميره جافه 100 جم",
"Product_EN": "Bao Bao Dry Yeast 100 gm",
"Product_Id": "00008206 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3678,
"name": "فارمرز صلصه طماطم 320 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فارمرز صلصه طماطم 320 جم",
"Product_EN": "Farmer's Tomato Sauce 320 gm",
"Product_Id": "00008207 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3679,
"name": "ايه ام ار سردين مغربى حار 125 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايه ام ار سردين مغربى حار 125 جم",
"Product_EN": "A.M.R Sardines Spicy 125 gm",
"Product_Id": "00008208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3680,
"name": "ايه ام ار سردين مغربى بارد 125 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايه ام ار سردين مغربى بارد 125 جم",
"Product_EN": "A.M.R Sardines 125 gm",
"Product_Id": "00008209 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3681,
"name": "عطاشة عصير برتقال جركن 2 لتر",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "عطاشة عصير برتقال جركن 2 لتر",
"Product_EN": "Atasha Orange Juice Jerrycan 2 L ",
"Product_Id": "00008210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3682,
"name": "اية ام ار تونه قطع 185 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار تونه قطع 185 جم",
"Product_EN": "A.M.R Tuna Chunks 185 gm",
"Product_Id": "00008212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3683,
"name": "اية ام ار تونه قطع 140 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار تونه قطع 140 جم",
"Product_EN": "A.M.R Tuna Chunks 140 gm",
"Product_Id": "00008213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3684,
"name": "اية ام ار تونه مفتته حار 140 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار تونه مفتته حار 140 جم",
"Product_EN": "A.M.R Tuna Shredded Spicy 140 gm",
"Product_Id": "00008214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3685,
"name": "ايه ام ار تونه مفتته بارد 140 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايه ام ار تونه مفتته بارد 140 جم",
"Product_EN": "A.M.R Tuna Shredded 140 gm",
"Product_Id": "00008215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3686,
"name": "اية ام ار كورند بيف 340 جم",
"price": 45.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار كورند بيف 340 جم",
"Product_EN": "A.M.R Corned Beef 340 gm",
"Product_Id": "00008216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3687,
"name": "ايه ام ار كمبوت فواكه مشكله 820 جم",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايه ام ار كمبوت فواكه مشكله 820 جم",
"Product_EN": "Choice Fruit Cocktail In Light Syrup 820 gm",
"Product_Id": "00008217 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3688,
"name": "ايه ام ار مشروم شرائح 400 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايه ام ار مشروم شرائح 400 جم",
"Product_EN": "AMR Sliced Mushroom 400 gm",
"Product_Id": "00008218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3689,
"name": "ايه ام ار مشروم شرائح 850 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايه ام ار مشروم شرائح 850 جم",
"Product_EN": "AMR Sliced Mushroom 850 gm",
"Product_Id": "00008219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3690,
"name": "ايه ام ار مشروم شرائح 2.9 كجم",
"price": 121,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايه ام ار مشروم شرائح 2.9 كجم",
"Product_EN": "AMR Sliced Mushroom 2.9 Kg",
"Product_Id": "00008220 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3691,
"name": "هاينز كاتشب طماطم بارد دويباك 285 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم بارد دويباك 285 جم",
"Product_EN": "Heinz Tomato Ketchup Cold Doi Buck 285 ml",
"Product_Id": "00008221 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3692,
"name": "ايزى كير مطهر 500 مل+ 250 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مطهر 500 مل+ 250 مل",
"Product_EN": "Easy Care Disinfectant 500 ml + 250 ml",
"Product_Id": "00008223 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3693,
"name": "دو باتر بايتس بسكويت بكريمه الشيكولاتة 154 جم",
"price": 74,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو باتر بايتس بسكويت بكريمه الشيكولاتة 154 جم",
"Product_EN": null,
"Product_Id": "00008224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3694,
"name": "العالمية بيض احمر - مغلف 30 ق",
"price": 63,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العالمية بيض احمر - مغلف 30 ق",
"Product_EN": null,
"Product_Id": "00008225 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3695,
"name": "العالمية بيض ابيض - مغلف 30 ق",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العالمية بيض ابيض - مغلف 30 ق",
"Product_EN": null,
"Product_Id": "00008226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3696,
"name": "دادا ارز مصرى فاخر 1 كجم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دادا ارز مصرى فاخر 1 كجم",
"Product_EN": "Dada Egyptian Rice 1 Kg",
"Product_Id": "00008227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3697,
"name": "دادا سكر ابيض 1 كجم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دادا سكر ابيض 1 كجم",
"Product_EN": null,
"Product_Id": "00008228 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3698,
"name": "كيرى جبنه مثلثات كريمى 16 ق",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مثلثات كريمى 16 ق",
"Product_EN": "Kiri Creamy Triangle Cheese 16 Pieces",
"Product_Id": "00008229 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3699,
"name": "كيرى جبنه مثلثات كريمى 40 ق",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مثلثات كريمى 40 ق",
"Product_EN": "Kiri Creamy Triangle Cheese 40 Pieces",
"Product_Id": "00008230 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3700,
"name": "الفهيد طحينه 250 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الفهيد طحينه 250 جم",
"Product_EN": null,
"Product_Id": "00008231 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3701,
"name": "زينة صلصه طماطم 280 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زينة صلصه طماطم 280 جم",
"Product_EN": null,
"Product_Id": "00008232 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3702,
"name": "عبور لاند حليب كامل الدسم 1 لتر",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبور لاند حليب كامل الدسم 1 لتر",
"Product_EN": "Obour Land Full Cream Milk 1 L ",
"Product_Id": "00008233 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3703,
"name": "عبور لاند حليب كامل الدسم 500 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبور لاند حليب كامل الدسم 500 مل",
"Product_EN": "Obour Land Full Cream Milk 500 ml ",
"Product_Id": "00008234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3704,
"name": "عبور لاند جبنه قشطه سبريد 500 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه قشطه سبريد 500 جم",
"Product_EN": "Obour Land Spread Creamy Cheese 500 gm",
"Product_Id": "00008235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3705,
"name": "عبور لاند جبنه رومى سبريد 500 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه رومى سبريد 500 جم",
"Product_EN": "Obour Land Spread Romy Cheese 500 gm",
"Product_Id": "00008236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3706,
"name": "عبور لاند جبنه شيدر سبريد 500 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه شيدر سبريد 500 جم",
"Product_EN": "Obour Land Spread Cheddar Cheese 500 gm",
"Product_Id": "00008237 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3707,
"name": "اكسترا مسحوق اوتوماتيك ابيض 4 كجم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اكسترا مسحوق اوتوماتيك ابيض 4 كجم",
"Product_EN": null,
"Product_Id": "00008238 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3708,
"name": "برسيل مسحوق اوماتيك 8 كجم - موقوف",
"price": 219,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اوماتيك 8 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008239 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3709,
"name": "برسيل مسحوق يدوى لافندر 155 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى لافندر 155 جم",
"Product_EN": null,
"Product_Id": "00008240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3710,
"name": "برسيل مسحوق اوتماتيك 2كجم + جل 110 جم - موقوف",
"price": 49.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اوتماتيك 2كجم + جل 110 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008241 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3711,
"name": "احمد تى شاى اخضر بالنعناع 100 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر بالنعناع 100 جم",
"Product_EN": "Ahmad Tea Green Tea & Mint 100 gm",
"Product_Id": "00008242 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3712,
"name": "دولفين سردين مغربى حار سهلة الفتح 125 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين سردين مغربى حار سهلة الفتح 125 جم",
"Product_EN": "Dolphin Sardine Spicy Easy Open 125 gm",
"Product_Id": "00008243 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3713,
"name": "مذاق صلصه طماطم 300 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مذاق صلصه طماطم 300 جم",
"Product_EN": "Madhaq Tomato sauce 300 gm",
"Product_Id": "00008244 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3714,
"name": "دولفين جبنه فيتا 250 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دولفين جبنه فيتا 250 جم",
"Product_EN": "Dolphin Feta Cheese 250 gm",
"Product_Id": "00008245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3715,
"name": "قهوة كوفي بريك كوفي ميكس 3*1 - 12جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قهوة كوفي بريك كوفي ميكس 3*1 - 12جم",
"Product_EN": "Coffee Break 3 In 1 Coffee Mix 12 gm",
"Product_Id": "00008246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3716,
"name": "حلوه زيت للقلى 700 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوه زيت للقلى 700 مل",
"Product_EN": "Helwa Corn Oil 700 ml ",
"Product_Id": "00008247 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3717,
"name": "ايه ام ار ذره حلوه 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايه ام ار ذره حلوه 400 جم",
"Product_EN": "AMR Sweet Corn 400 gm",
"Product_Id": "00008248 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3718,
"name": "العالمية بيض احمر - مغلف 10 ق",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العالمية بيض احمر - مغلف 10 ق",
"Product_EN": null,
"Product_Id": "00008249 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3719,
"name": "العالمية بيض ابيض - مغلف 10 ق",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العالمية بيض ابيض - مغلف 10 ق",
"Product_EN": null,
"Product_Id": "00008250 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3720,
"name": "العالمية بيض احمر - مغلف 15 ق",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العالمية بيض احمر - مغلف 15 ق",
"Product_EN": null,
"Product_Id": "00008251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3721,
"name": "العالمية بيض ابيض - مغلف 15 ق",
"price": 33.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العالمية بيض ابيض - مغلف 15 ق",
"Product_EN": null,
"Product_Id": "00008252 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3722,
"name": "حلوانى استربس دجاج بارد 1 كجم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى استربس دجاج بارد 1 كجم",
"Product_EN": "Halwani Chicken Strips 1 Kg",
"Product_Id": "00008253 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3723,
"name": "حلوانى ستربس دجاج حار 1 كجم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى ستربس دجاج حار 1 كجم",
"Product_EN": "Halwani Spicy Chicken Strips 1 Kg",
"Product_Id": "00008254 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3724,
"name": "حلوانى دجاج ناجتس 1 كجم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى دجاج ناجتس 1 كجم",
"Product_EN": "Halwani Chicken Nuggets 1 Kg",
"Product_Id": "00008255 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3725,
"name": "فيرى مركز سائل تنظيف اطباق ليمون 650 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى مركز سائل تنظيف اطباق ليمون 650 مل",
"Product_EN": null,
"Product_Id": "00008256 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3726,
"name": "بامبرز بانتس حفاضات مقاس 4 - 56 حفاظه",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز بانتس حفاضات مقاس 4 - 56 حفاظه",
"Product_EN": null,
"Product_Id": "00008257 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3727,
"name": "بامبرز بانتس حفاضات اطفال مقاس 5 - 52 حفاظه",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز بانتس حفاضات اطفال مقاس 5 - 52 حفاظه",
"Product_EN": null,
"Product_Id": "00008258 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3728,
"name": "برييز كريز ميمكس بونبون",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برييز كريز ميمكس بونبون",
"Product_EN": null,
"Product_Id": "00008259 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3729,
"name": "برييز كول نعناع بونبون",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برييز كول نعناع بونبون",
"Product_EN": null,
"Product_Id": "00008261 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3730,
"name": "بريز اورانج مميكس بونبون",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بريز اورانج مميكس بونبون",
"Product_EN": null,
"Product_Id": "00008262 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3731,
"name": "ستار لسان عصفور 400 جم - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستار لسان عصفور 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008264 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3732,
"name": "ستار مكرونة خواتم 400 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستار مكرونة خواتم 400 جم",
"Product_EN": "Star Pasta Big Rings 400 gm",
"Product_Id": "00008265 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3733,
"name": "ستار شعرية 400 جم ",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستار شعرية 400 جم ",
"Product_EN": null,
"Product_Id": "00008266 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3734,
"name": "ستار مكرونة اسباجتى 400 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستار مكرونة اسباجتى 400 جم",
"Product_EN": "Star Pasta Spaghetti 400 gm",
"Product_Id": "00008268 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3735,
"name": "ستار مكرونة مرمرية 400 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستار مكرونة مرمرية 400 جم",
"Product_EN": "Star Small Rings Pasta 400 gm",
"Product_Id": "00008269 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3736,
"name": "تست بيور فصوص رومى مدخن وزن",
"price": 235,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور فصوص رومى مدخن وزن",
"Product_EN": null,
"Product_Id": "00008270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3737,
"name": "تست بيور فصوص رومى بابريكا وزن - موقوف",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور فصوص رومى بابريكا وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008271 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3738,
"name": "تست بيور لانشون بقرى قطع لحم وزن",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور لانشون بقرى قطع لحم وزن",
"Product_EN": null,
"Product_Id": "00008272 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3739,
"name": "صدور رومى مدخن وزن",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صدور رومى مدخن وزن",
"Product_EN": null,
"Product_Id": "00008273 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3740,
"name": "تست بيور لحم بقرى مدخن وزن",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور لحم بقرى مدخن وزن",
"Product_EN": null,
"Product_Id": "00008274 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3741,
"name": "تست بيور قشطة فراخ مدخن وزن",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور قشطة فراخ مدخن وزن",
"Product_EN": null,
"Product_Id": "00008275 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3742,
"name": "تست بيور سلامى مطبوخ وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور سلامى مطبوخ وزن",
"Product_EN": null,
"Product_Id": "00008276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3743,
"name": "بسطرمة ارمينى فاكيوم وزن",
"price": 250,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسطرمة ارمينى فاكيوم وزن",
"Product_EN": null,
"Product_Id": "00008277 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3744,
"name": "تست بيور هوت دوج 400 جم 2ق+1 عرض",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور هوت دوج 400 جم 2ق+1 عرض",
"Product_EN": null,
"Product_Id": "00008278 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3745,
"name": "الممتاز زيت للقلى 1 لتر",
"price": 19.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الممتاز زيت للقلى 1 لتر",
"Product_EN": "El Momtaz Oil For Frying 1 L ",
"Product_Id": "00008279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3746,
"name": "فواكة مخلل ممتاز وزن - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فواكة مخلل ممتاز وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3747,
"name": "جلاكسى شيكولاتة فلوتس 45 جم 4 صباع + 1 ق عرض",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شيكولاتة فلوتس 45 جم 4 صباع + 1 ق عرض",
"Product_EN": "Galaxy Flutes Chocolate 45 gm 4 pcs + 1 pcs Offer",
"Product_Id": "00008281 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3748,
"name": "بخيره عصير كوكتيل 200 مل",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخيره عصير كوكتيل 200 مل",
"Product_EN": "Bekhero Cocktail Juice 200 ml",
"Product_Id": "00008282 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3749,
"name": "بخيره عصير مانجو 200 مل",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخيره عصير مانجو 200 مل",
"Product_EN": "Bekhero Mango Juice 200 ml",
"Product_Id": "00008283 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3750,
"name": "بخيره عصير تفاح 200 مل",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخيره عصير تفاح 200 مل",
"Product_EN": "Bekhero Apple Juice 200 ml",
"Product_Id": "00008284 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3751,
"name": "بخيره عصير جوافة 200 مل",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخيره عصير جوافة 200 مل",
"Product_EN": "Bekhero Guava Juice 200 ml",
"Product_Id": "00008285 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3752,
"name": "بخيره عصير كوكتيل 1 لتر",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخيره عصير كوكتيل 1 لتر",
"Product_EN": "Bekhero Cocktail Juice 1 L",
"Product_Id": "00008286 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3753,
"name": "بخيره عصير تفاح 1 لتر",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخيره عصير تفاح 1 لتر",
"Product_EN": "Bekhero Apple Juice 1 L",
"Product_Id": "00008287 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3754,
"name": "بخيره عصير جوافة 1 لتر",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخيره عصير جوافة 1 لتر",
"Product_EN": "Bekhero Guava Juice 1 L",
"Product_Id": "00008288 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3755,
"name": "بخيره عصير مانجو 1 لتر",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخيره عصير مانجو 1 لتر",
"Product_EN": "Bekhero Mango Juice 1 L",
"Product_Id": "00008289 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3756,
"name": "نسكافيه جولد قهوة سريعه التحضير ظرف 2 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه جولد قهوة سريعه التحضير ظرف 2 جم",
"Product_EN": null,
"Product_Id": "00008290 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3757,
"name": "نسكافيه جولد قهوة سريعه التحضير 3*1 12 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه جولد قهوة سريعه التحضير 3*1 12 جم",
"Product_EN": null,
"Product_Id": "00008291 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3758,
"name": "دولفين جبنه فيتا 500 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دولفين جبنه فيتا 500 جم",
"Product_EN": "Dolphin Feta Cheese 500 gm",
"Product_Id": "00008292 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3759,
"name": "دولفين تونه مفتته بارد 140 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونه مفتته بارد 140 جم",
"Product_EN": "Dolphin Tuna Crumble Cold 140 gm",
"Product_Id": "00008293 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3760,
"name": "ليون بن سادة غامق علبة 200 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "ليون بن سادة غامق علبة 200 جم",
"Product_EN": null,
"Product_Id": "00008294 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3761,
"name": "كويك بيك كرات الجبنة الحارة 65 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويك بيك كرات الجبنة الحارة 65 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3762,
"name": "كويك بيك كرات الجبنة 65 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويك بيك كرات الجبنة 65 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008296 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3763,
"name": "كويك بيك بوفس بطعم الجبنة 65 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويك بيك بوفس بطعم الجبنة 65 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008297 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3764,
"name": "كويك بيك بوفس بطعم الجبنة الحارة 65 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويك بيك بوفس بطعم الجبنة الحارة 65 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3765,
"name": "كويك بيك بوفس بطعم الجبنة الحارة 22 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويك بيك بوفس بطعم الجبنة الحارة 22 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3766,
"name": "كويك بيك بوفس بطعم الجبنة 22 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويك بيك بوفس بطعم الجبنة 22 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3767,
"name": "كويك بيك كرات الجبنة الحارة 22 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويك بيك كرات الجبنة الحارة 22 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008301 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3768,
"name": "كويك بيك كرات الجبنة 65 جم _ موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويك بيك كرات الجبنة 65 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00008302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3769,
"name": "سناب بسكويت مغطس 1 جنيه",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سناب بسكويت مغطس 1 جنيه",
"Product_EN": null,
"Product_Id": "00008303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3770,
"name": "ماستر شيف مكرونة هلالية 350 جن - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماستر شيف مكرونة هلالية 350 جن - موقوف",
"Product_EN": null,
"Product_Id": "00008304 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3771,
"name": "ماستر شيف مكرونة مرمريه 350 جم - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماستر شيف مكرونة مرمريه 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008305 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3772,
"name": "ماستر شيف مكرونة 350 جم - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماستر شيف مكرونة 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008306 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3773,
"name": "ماستر شيف مكرونة لسان 350 جم - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماستر شيف مكرونة لسان 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008307 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3774,
"name": "ماستر شيف مكرونة شعرية 350 جم - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماستر شيف مكرونة شعرية 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008308 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3775,
"name": "خل طبيعى 900 مل - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "خل طبيعى 900 مل - موقوف",
"Product_EN": null,
"Product_Id": "00008309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3776,
"name": "ماستر شيف صلصة طماطم 300 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماستر شيف صلصة طماطم 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008310 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3777,
"name": "كليوباترا دقيق كل الاستخدامات 1 كجم - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كليوباترا دقيق كل الاستخدامات 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008311 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3778,
"name": "دانون فروتس فراولة وفر 2 ج",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون فروتس فراولة وفر 2 ج",
"Product_EN": "Danone Fruits Strawberry Save 2 Pound",
"Product_Id": "00008312 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3779,
"name": "كواليتى تمر الوادى 500 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر الوادى 500 جم",
"Product_EN": "Quality Al Wadi Dates 500 gm",
"Product_Id": "00008313 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3780,
"name": "جاما باك طبق شفاف بلاستيك T3\/33",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "جاما باك طبق شفاف بلاستيك T3\/33",
"Product_EN": null,
"Product_Id": "00008314 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3781,
"name": "زولى بسكويت بعسل النحل",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زولى بسكويت بعسل النحل",
"Product_EN": null,
"Product_Id": "00008315 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3782,
"name": "باسكيدز بسكويتك",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باسكيدز بسكويتك",
"Product_EN": null,
"Product_Id": "00008316 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3783,
"name": "داونى استرخاء مركز 880 مل - موقوف",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى استرخاء مركز 880 مل - موقوف",
"Product_EN": null,
"Product_Id": "00008317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3784,
"name": "داونى مركز منعم ملابس جنتل 1 لتر",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز منعم ملابس جنتل 1 لتر",
"Product_EN": null,
"Product_Id": "00008318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3785,
"name": "داونى مركز منعم ملابس استرخاء 280 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز منعم ملابس استرخاء 280 مل",
"Product_EN": null,
"Product_Id": "00008319 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3786,
"name": "تايد مسحوق يدوى 70 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى 70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008321 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3787,
"name": "الويز فوط صحيه الترا احلام طويل جدا 6 فوطه",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فوط صحيه الترا احلام طويل جدا 6 فوطه",
"Product_EN": null,
"Product_Id": "00008322 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3788,
"name": "اوريو دبل ستيف بسكويت بالكريمه 4 قطعه ",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريو دبل ستيف بسكويت بالكريمه 4 قطعه ",
"Product_EN": "OREO Double Steve Biscuits 4 Pieces",
"Product_Id": "00008323 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3789,
"name": "كادبوري كرسبيلو كرسبي مغطي بالشوكولاته 36 جم ",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبوري كرسبيلو كرسبي مغطي بالشوكولاته 36 جم ",
"Product_EN": "Cadbury Crispylo Crispy Chocolate 36 gm",
"Product_Id": "00008324 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3790,
"name": "كادبورى بسكويت دبل شيكولاتة ديليت 34 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى بسكويت دبل شيكولاتة ديليت 34 جم",
"Product_EN": "Cadbury Double Chocolate Delight Biscuits 34 gm",
"Product_Id": "00008325 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3791,
"name": "سنيكرز شيكولاتة وايت 50 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سنيكرز شيكولاتة وايت 50 جم",
"Product_EN": "Snickers White Chocolate 50 gm",
"Product_Id": "00008326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3792,
"name": "كلوريل الوان روز 500 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل الوان روز 500 جم",
"Product_EN": null,
"Product_Id": "00008327 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3793,
"name": "بي نتس فول سوداني 60 جم",
"price": 60.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بي نتس فول سوداني 60 جم",
"Product_EN": null,
"Product_Id": "00008328 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3794,
"name": "بي نتس فول سودانى كان 190 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بي نتس فول سودانى كان 190 جم",
"Product_EN": null,
"Product_Id": "00008329 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3795,
"name": "بي نتس فول سودانى كان 275 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بي نتس فول سودانى كان 275 جم",
"Product_EN": null,
"Product_Id": "00008330 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3796,
"name": "بي نتس فول سوداني كان 570 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بي نتس فول سوداني كان 570 جم",
"Product_EN": null,
"Product_Id": "00008331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3797,
"name": "بي نتس فول سودانى برطمان 320 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بي نتس فول سودانى برطمان 320 جم",
"Product_EN": null,
"Product_Id": "00008332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3798,
"name": "بي نتس فول سودانى برطمان 640 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بي نتس فول سودانى برطمان 640 جم",
"Product_EN": null,
"Product_Id": "00008333 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3799,
"name": "لمتنا مكرونة هلالية 400 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمتنا مكرونة هلالية 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3800,
"name": "لمتنا مكرونة لسان عصفور400 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمتنا مكرونة لسان عصفور400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008335 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3801,
"name": "لمتنا مكرونة فرن400 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمتنا مكرونة فرن400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008336 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3802,
"name": "لمتنا مكرونة اسباجتى 400 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمتنا مكرونة اسباجتى 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3803,
"name": "لمتنا مكرونة خواتم 400 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمتنا مكرونة خواتم 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3804,
"name": "لمتنا شعرية 400 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمتنا شعرية 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008339 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3805,
"name": "لمتنا مكرونة مرمرية 400 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمتنا مكرونة مرمرية 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008340 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3806,
"name": "لواكر بسكويت ويفر بكريمه الفانيليا 125 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت ويفر بكريمه الفانيليا 125 جم",
"Product_EN": "Loacker Biscuits Wafer Vanilla Cream 125 gm",
"Product_Id": "00008341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3807,
"name": "لواكر بسكويت ويفر بكريمه البندق 125 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت ويفر بكريمه البندق 125 جم",
"Product_EN": "Loacker Biscuits Wafer Hazelnut Cream 125 gm",
"Product_Id": "00008342 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3808,
"name": "لواكر بسكويت ويفر بكريمه الكاكاو 125 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت ويفر بكريمه الكاكاو 125 جم",
"Product_EN": "Loacker Wafer Biscuits Cocoa Cream 125 gm ",
"Product_Id": "00008343 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3809,
"name": "لواكر بسكويت ويفر بكريمه بالبندق 90 جم",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت ويفر بكريمه بالبندق 90 جم",
"Product_EN": "Loacker Wafer Biscuits Hazelnut Cream 90 gm",
"Product_Id": "00008344 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3810,
"name": "لواكر بسكويت ويفر بكريمه الفانيليا 90 جم",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت ويفر بكريمه الفانيليا 90 جم",
"Product_EN": "Loacker Wafer Biscuits With Vanilla Cream 90 gm",
"Product_Id": "00008345 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3811,
"name": "لواكر بسكويت ويفر بكريمه الكاكاو 90 جم",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت ويفر بكريمه الكاكاو 90 جم",
"Product_EN": "Loacker Wafer Biscuits Cocoa Cream 90 gm ",
"Product_Id": "00008346 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3812,
"name": "لواكر شيكولاتة حليب كاكاو و الويفر 87 جم - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر شيكولاتة حليب كاكاو و الويفر 87 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008347 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3813,
"name": "لواكرشيكولاته حليب كريمة البندق والويفر85جم- موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكرشيكولاته حليب كريمة البندق والويفر85جم- موقوف",
"Product_EN": null,
"Product_Id": "00008348 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3814,
"name": "لواكر شيكولاتة حليب و الويفر 87 جم - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر شيكولاتة حليب و الويفر 87 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008349 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3815,
"name": "لواكرشيكولاتة سادة كريمة الكاكاووالويفر87جم- موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكرشيكولاتة سادة كريمة الكاكاووالويفر87جم- موقوف",
"Product_EN": null,
"Product_Id": "00008350 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3816,
"name": "سلايز كيك فانيليا 50 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سلايز كيك فانيليا 50 جم",
"Product_EN": "Slice Cake Vanilla 50 gm",
"Product_Id": "00008351 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3817,
"name": "سلايز كيك فواكه 50 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سلايز كيك فواكه 50 جم",
"Product_EN": "Slice Cake Fruit 50 gm",
"Product_Id": "00008352 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3818,
"name": "مافين كيك دبل شيكولاتة 32 جم - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مافين كيك دبل شيكولاتة 32 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008354 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3819,
"name": "هاريبو جيلى هابى كولا لازع70 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى هابى كولا لازع70 جم",
"Product_EN": "Haribo Happy Cola Fizz Jelly 70 gm",
"Product_Id": "00008355 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3820,
"name": "هاريبو جيلى ورمس لازع 70 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى ورمس لازع 70 جم",
"Product_EN": "Haribo Worms Fizz Jelly 70 gm",
"Product_Id": "00008356 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3821,
"name": "هاريبو جيلى ميكس لازع 70 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى ميكس لازع 70 جم",
"Product_EN": "Haribo Mix Fizz Jelly 70 gm",
"Product_Id": "00008357 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3822,
"name": "هاريبو جيلى هابى شير 80 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى هابى شير 80 جم",
"Product_EN": "Haribo Happy Share Jelly 80 gm",
"Product_Id": "00008358 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3823,
"name": "هاريبو جيلى روتيلا 70 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى روتيلا 70 جم",
"Product_EN": "Haribo Rotella Jelly 70 gm",
"Product_Id": "00008359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3824,
"name": "هاريبو جيلى بيريس 70 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى بيريس 70 جم",
"Product_EN": "Haribo Jelly Berries 70 gm",
"Product_Id": "00008360 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3825,
"name": "هاريبو جيلى كولد بير 70 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى كولد بير 70 جم",
"Product_EN": "Haribo Jelly Cold Bear 70 gm",
"Product_Id": "00008361 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3826,
"name": "هاريبو جيلى هابى كولا 80 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى هابى كولا 80 جم",
"Product_EN": "Haribo Happy Cola Jelly 70 gm",
"Product_Id": "00008362 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3827,
"name": "هاريبو جيلى شكل اسنان 80 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى شكل اسنان 80 جم",
"Product_EN": "Haribo Jelly Gum Teeth Shape 80 gm",
"Product_Id": "00008363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3828,
"name": "هاريبو جيلى ورمز80 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى ورمز80 جم",
"Product_EN": "Haribo jelly Worms 80 gm",
"Product_Id": "00008364 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3829,
"name": "هاريبو جيلى ستار ميكس 80 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى ستار ميكس 80 جم",
"Product_EN": "Haribo Star Mix Jelly 80 gm",
"Product_Id": "00008365 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3830,
"name": "هاريبو مارشيملو 25 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو مارشيملو 25 جم",
"Product_EN": "Haribo Marshmallow 25 gm",
"Product_Id": "00008366 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3831,
"name": "دوراسيل حجر طاقة بلجيكى اوريجينال 2 قلم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "دوراسيل حجر طاقة بلجيكى اوريجينال 2 قلم",
"Product_EN": "Duracell Original Belgian Energy Stone 2 Pens",
"Product_Id": "00008367 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3832,
"name": "دوراسيل حجر ريموت بلجيكى اوريجينال 2 قلم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "دوراسيل حجر ريموت بلجيكى اوريجينال 2 قلم",
"Product_EN": "Duracell original belgium remote stone 2 Pens",
"Product_Id": "00008368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3833,
"name": "دوراسيل حجر ريموت بلجيكى عادى 2 قلم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "دوراسيل حجر ريموت بلجيكى عادى 2 قلم",
"Product_EN": "Duracell Belgian remote stone - 2 Pens",
"Product_Id": "00008369 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3834,
"name": "دوراسيل حجر طاقة بلجيكى عادى 2 قلم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "دوراسيل حجر طاقة بلجيكى عادى 2 قلم",
"Product_EN": "Duracell Belgian Energy Stone Regular 2 Pens",
"Product_Id": "00008370 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3835,
"name": "سلايز كيك شيكولاتة 50 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سلايز كيك شيكولاتة 50 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008371 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3836,
"name": "زاهر بسبوسة سادة وزن - 2020 - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة سادة وزن - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00008373 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3837,
"name": "زاهر بسبوسة بالبندق وزن - 2020 - موقوف",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة بالبندق وزن - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00008375 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3838,
"name": "زاهر بسبوسة فسدق وزن - 2020 - موقوف",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة فسدق وزن - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00008376 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3839,
"name": "زاهر رموش وزن - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر رموش وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008377 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3840,
"name": "زاهر حبيبة وزن - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حبيبة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3841,
"name": "زاهر ديزرت - شرقى مشكل وزن - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزرت - شرقى مشكل وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008379 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3842,
"name": "زاهر شرقى مشكل ممتاز وزن - 2020 - موقوف",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر شرقى مشكل ممتاز وزن - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00008380 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3843,
"name": "الطاهية ارز مصرى فاخر 1 كجم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية ارز مصرى فاخر 1 كجم",
"Product_EN": "Al Tahya Egyptian Rice 1 kg",
"Product_Id": "00008382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3844,
"name": "هابى فودز لانشون دجاج 340 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هابى فودز لانشون دجاج 340 جم",
"Product_EN": "Happy Foods Luncheon Chicken 340 gm",
"Product_Id": "00008384 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3845,
"name": "هابى فودز لانشون لحم بقري 340 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هابى فودز لانشون لحم بقري 340 جم",
"Product_EN": "Happy Foods Luncheon Beef 340 gm",
"Product_Id": "00008385 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3846,
"name": "فان داى كيك الفاكهة المجففة 40 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى كيك الفاكهة المجففة 40 جم",
"Product_EN": null,
"Product_Id": "00008386 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3847,
"name": "فان داى كيك بقطع الفاكهة المجففة 40 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى كيك بقطع الفاكهة المجففة 40 جم",
"Product_EN": "Funday Cake Dried Fruits 40 gm",
"Product_Id": "00008387 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3848,
"name": "فان داى كيك شرائح ماربل 50 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى كيك شرائح ماربل 50 جم",
"Product_EN": "Funday Cake Slice Marble 50 gm",
"Product_Id": "00008388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3849,
"name": "كيك فان داي بوبو تيدي بير بالحليب 32 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك فان داي بوبو تيدي بير بالحليب 32 جم",
"Product_EN": "Funday Boboo Teddy Bear Cake Milk 32 gm",
"Product_Id": "00008389 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3850,
"name": "جود داى بسكويت زبدة 32 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى بسكويت زبدة 32 جم",
"Product_EN": "Good Day Butter Biscuits 32 gm",
"Product_Id": "00008391 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3851,
"name": "جود داى بسكويت مكسرات 32 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى بسكويت مكسرات 32 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3852,
"name": "جود داى بسكويت كاجو 32 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى بسكويت كاجو 32 جم",
"Product_EN": "GoodDay Biscuits Cashew 32 gm",
"Product_Id": "00008393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3853,
"name": "جود داى بسكويت بالزبدة مدور 32 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى بسكويت بالزبدة مدور 32 جم",
"Product_EN": "GoodDay Biscuits Butter Round 32 gm",
"Product_Id": "00008394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3854,
"name": "جود داى بسكويت بالمكسرات مدور 31 جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى بسكويت بالمكسرات مدور 31 جم",
"Product_EN": "GoodDay Biscuits Nuts Round 31 gm",
"Product_Id": "00008395 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3855,
"name": "جود داى بسكويت زبدة كاجو 32 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى بسكويت زبدة كاجو 32 جم",
"Product_EN": "Good Day Biscuits Butter & Cashew 32 gm",
"Product_Id": "00008396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3856,
"name": "بريتانيا بسكويت دايجستيف اصلى قمح 225 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بريتانيا بسكويت دايجستيف اصلى قمح 225 جم",
"Product_EN": "Britannia Biscuits Digestive Original Wheat 225 gm",
"Product_Id": "00008397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3857,
"name": "بور بون بسكويت شيكولاتة 32 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بور بون بسكويت شيكولاتة 32 جم",
"Product_EN": "Bourbon Biscuits Chocolate 32 gm",
"Product_Id": "00008398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3858,
"name": "تريت بسكويت فانيليا وشوكولاتة 40 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تريت بسكويت فانيليا وشوكولاتة 40 جم",
"Product_EN": "Treat Biscuits Vanilla & Chocolate 40 gm",
"Product_Id": "00008399 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3859,
"name": "ميلكا شوكولاتة بالحليب 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالحليب 100 جم",
"Product_EN": "Milka Milk Chocolate 100 gm",
"Product_Id": "00008400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3860,
"name": "ميلكا شوكولاته اوريو 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاته اوريو 100 جم",
"Product_EN": "Milka OREO Chocolate 100 gm",
"Product_Id": "00008401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3861,
"name": "ميلكا شوكولاتة كراميل 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة كراميل 100 جم",
"Product_EN": "Milka Caramel Chocolate 100 gm",
"Product_Id": "00008402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3862,
"name": "ميلكا شوكولاتة بيضاء 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بيضاء 100 جم",
"Product_EN": " Milka White Chocolate 100 gm",
"Product_Id": "00008403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3863,
"name": "جود داى شونكيز بسكويت كوكيز 125 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى شونكيز بسكويت كوكيز 125 جم",
"Product_EN": "Good Day Chunkies Biscuits Cookies 125 gm",
"Product_Id": "00008404 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3864,
"name": "هولستن مشروب بنكهة التوت البرى 330 مل",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولستن مشروب بنكهة التوت البرى 330 مل",
"Product_EN": "Holsten Barley Drink Cranberry Flavor 330 ml",
"Product_Id": "00008406 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3865,
"name": "هولستن مشروب بنكهة الفراولة 330 مل",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولستن مشروب بنكهة الفراولة 330 مل",
"Product_EN": "Holsten Barley Drink Strawberry Flavor 330 ml",
"Product_Id": "00008407 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3866,
"name": "هولستن مشروب بنكهة تفاح 330 مل",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولستن مشروب بنكهة تفاح 330 مل",
"Product_EN": "Holsten Barley Drink Apple Flavor 330 ml",
"Product_Id": "00008408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3867,
"name": "هولستن مشروب بنكهة الرمان 330 مل",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولستن مشروب بنكهة الرمان 330 مل",
"Product_EN": "Holsten Barley Drink Pomegranate Flavor 330 ml",
"Product_Id": "00008409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3868,
"name": "فان داي فيشار بالملح",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داي فيشار بالملح",
"Product_EN": "FunDay Popcorn Salt",
"Product_Id": "00008410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3869,
"name": "جاما باك طبق شفاف t9\/57",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "جاما باك طبق شفاف t9\/57",
"Product_EN": null,
"Product_Id": "00008412 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3870,
"name": "ابو عوف بن تركى ساده \/ فاتح \/ وسط \/ غامق 200 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركى ساده \/ فاتح \/ وسط \/ غامق 200 جم",
"Product_EN": null,
"Product_Id": "00008413 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3871,
"name": "ابو عوف بن تركى محوج فاتح \/ وسط \/ غامق200 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركى محوج فاتح \/ وسط \/ غامق200 جم",
"Product_EN": null,
"Product_Id": "00008414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3872,
"name": "ابو عوف بن تركى ساده فاتح 250 جم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركى ساده فاتح 250 جم",
"Product_EN": "Abu Auf Turkish Coffee Light Roast Plain 250 gm",
"Product_Id": "00008415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3873,
"name": "ابو عوف بن تركى ساده وسط 250 جم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركى ساده وسط 250 جم",
"Product_EN": "Abu Auf Turkish Ground Medium Plain Coffee 250 gm",
"Product_Id": "00008416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3874,
"name": "ابو عوف بن تركى ساده غامق 250 جم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركى ساده غامق 250 جم",
"Product_EN": "Abu Auf Turkish Coffee Dark Roast Plain 250 gm",
"Product_Id": "00008417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3875,
"name": "ابو عوف بن تركى محوج فاتح 250 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركى محوج فاتح 250 جم",
"Product_EN": "Abu Auf Turkish Coffee Dark Roast Plain 250 gm",
"Product_Id": "00008418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3876,
"name": "ابو عوف بن تركى محوج وسط 250 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركى محوج وسط 250 جم",
"Product_EN": "Abu Auf Turkish Coffee Medium Roast Blend 250 gm ",
"Product_Id": "00008419 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3877,
"name": "ابو عوف بن تركى محوج غامق 250 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركى محوج غامق 250 جم",
"Product_EN": "Abu Auf Turkish Coffee Dark Roast Blend 250 gm",
"Product_Id": "00008420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3878,
"name": "ابو عوف بن تركى فرنساوى 250 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركى فرنساوى 250 جم",
"Product_EN": "Abu Auf Turkish Coffee French 250 gm",
"Product_Id": "00008421 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3879,
"name": "ابو عوف بودرة كاكاو خام 250 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بودرة كاكاو خام 250 جم",
"Product_EN": "Abu Auf Cocoa Powder 250 gm",
"Product_Id": "00008422 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3880,
"name": "ابو عوف بن تركي بالبندق 250 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن تركي بالبندق 250 جم",
"Product_EN": "Abu Auf Turkish Coffee Hazelnut 250 gm ",
"Product_Id": "00008423 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3881,
"name": "ابو عوف اسبريسو كولومبى 250 جم",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف اسبريسو كولومبى 250 جم",
"Product_EN": "Abu Auf Coffee Espresso Columbian 250 gm",
"Product_Id": "00008424 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3882,
"name": "ابو عوف بن سريع الذوبان 250 جم",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف بن سريع الذوبان 250 جم",
"Product_EN": "Abu Auf Instant Coffee 100 gm ",
"Product_Id": "00008425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3883,
"name": "براون اند وايت بيض أحمر - مغلف 30 ق - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براون اند وايت بيض أحمر - مغلف 30 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3884,
"name": "براون اند وايت بيض ابيض - مغلف30 ق - موقوف",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براون اند وايت بيض ابيض - مغلف30 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008427 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3885,
"name": "براون اند وايت بيض أحمر - مغلف 15 ق - موقوف",
"price": 24.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براون اند وايت بيض أحمر - مغلف 15 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008428 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3886,
"name": "براون اند وايت بيض ابيض - مغلف 10 ق - موقوف",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براون اند وايت بيض ابيض - مغلف 10 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3887,
"name": "براون اند وايت بيض ابيض - مغلف 6 ق - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براون اند وايت بيض ابيض - مغلف 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3888,
"name": "زاهر طرشى بلدى مخلل طبيعى وزن - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر طرشى بلدى مخلل طبيعى وزن - موقوف",
"Product_EN": "Zaher Pickled Vegetables Mix - Weight",
"Product_Id": "00008431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3889,
"name": "زاهر فلفل مكسيكى مخلل طبيعى وزن - موقوف",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر فلفل مكسيكى مخلل طبيعى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3890,
"name": "زاهر خيار مخلل طبيعي وزن",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خيار مخلل طبيعي وزن",
"Product_EN": "Zaher Pickled Cucumber - Scalable",
"Product_Id": "00008433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3891,
"name": "دانون هيبرو مشروب طاقة طبيعى بالفراولة 260 مل",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون هيبرو مشروب طاقة طبيعى بالفراولة 260 مل",
"Product_EN": "Danone Hypro Natural Energy Drink Strawberry 260ml",
"Product_Id": "00008434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3892,
"name": "قليه زيت للقلى 2.1 لتر",
"price": 59,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قليه زيت للقلى 2.1 لتر",
"Product_EN": "Qaleya Oil For Frying 2.1 L",
"Product_Id": "00008435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3893,
"name": "قليه زيت للقلى 1 لتر",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قليه زيت للقلى 1 لتر",
"Product_EN": "Qaleya Oil For Frying 1 L ",
"Product_Id": "00008437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3894,
"name": "فريسكا فينجر بسكويت ويفر بكريمه الكاكا و البندق ",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريسكا فينجر بسكويت ويفر بكريمه الكاكا و البندق ",
"Product_EN": null,
"Product_Id": "00008438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3895,
"name": "فريسكا فينجر بسكويت محشو شيكولاته",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريسكا فينجر بسكويت محشو شيكولاته",
"Product_EN": null,
"Product_Id": "00008439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3896,
"name": "فريسكا فينجر بسكويت بندق",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريسكا فينجر بسكويت بندق",
"Product_EN": null,
"Product_Id": "00008440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3897,
"name": "فريسكا بسكويت بوبس",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريسكا بسكويت بوبس",
"Product_EN": null,
"Product_Id": "00008441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3898,
"name": "بيك رولز طعم الحلو والحار 52 جرام",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز طعم الحلو والحار 52 جرام",
"Product_EN": null,
"Product_Id": "00008443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3899,
"name": "بيك رولز طعم خل وملح 52 جرام",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز طعم خل وملح 52 جرام",
"Product_EN": null,
"Product_Id": "00008444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3900,
"name": "مولتو ساندوتش محشى شيكولاته 1 قطعه ",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو ساندوتش محشى شيكولاته 1 قطعه ",
"Product_EN": null,
"Product_Id": "00008445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3901,
"name": "مولتو ساندوتش محشو جبنه اسطمبولى",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو ساندوتش محشو جبنه اسطمبولى",
"Product_EN": null,
"Product_Id": "00008446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3902,
"name": "بلوكس بسكويت فانيليا 40 جرام",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلوكس بسكويت فانيليا 40 جرام",
"Product_EN": null,
"Product_Id": "00008447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3903,
"name": "بسكريم بسكويت محشو كاكاو 20جرام",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكريم بسكويت محشو كاكاو 20جرام",
"Product_EN": null,
"Product_Id": "00008448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3904,
"name": "فانش مسحوق اطباق بودر250 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش مسحوق اطباق بودر250 جم",
"Product_EN": null,
"Product_Id": "00008449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3905,
"name": "نسكافيه كلاسيك قهوة سريعه التحضير باوتش 200 جم",
"price": 87,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه كلاسيك قهوة سريعه التحضير باوتش 200 جم",
"Product_EN": null,
"Product_Id": "00008451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3906,
"name": "حلو الشام سحلب 200 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلو الشام سحلب 200 جم",
"Product_EN": "Holw El Sham Sahleb 200 gm",
"Product_Id": "00008452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3907,
"name": "الساعه مكرونه خواتم 400 جم",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الساعه مكرونه خواتم 400 جم",
"Product_EN": "Al SA'A Pasta Rings 400 g",
"Product_Id": "00008453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3908,
"name": "الساعة مكرونه فرن 400 جم",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الساعة مكرونه فرن 400 جم",
"Product_EN": "Al SA'A Pasta Penne 400 g",
"Product_Id": "00008454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3909,
"name": "الساعه مكرونة مرمرية 400 جم",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الساعه مكرونة مرمرية 400 جم",
"Product_EN": "Al SA'A Pasta Small Rings 400 g",
"Product_Id": "00008455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3910,
"name": "كوفى بريك قهوه 2*1 اكسترا شوت ظرف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوفى بريك قهوه 2*1 اكسترا شوت ظرف",
"Product_EN": "Coffee Break Cofee Mix Extra 2 In 1 Sachat 12 gm",
"Product_Id": "00008456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3911,
"name": "دولفين تونه قطع بارد 140 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونه قطع بارد 140 جم",
"Product_EN": "Dolphin Tuna Chunks 140 gm",
"Product_Id": "00008457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3912,
"name": "صن شاين فانسى تونه قطع بارد 185 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين فانسى تونه قطع بارد 185 جم",
"Product_EN": "Sunshine Fancy Tuna Chunks 185 gm",
"Product_Id": "00008458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3913,
"name": "باونتى شوكولاته 28.5 جم 3+1 عرض",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باونتى شوكولاته 28.5 جم 3+1 عرض",
"Product_EN": "Bounty Chocolate 28.5 gm 3+1 Offer",
"Product_Id": "00008459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3914,
"name": "كويك بيك هلابينو 80 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويك بيك هلابينو 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3915,
"name": "كويك بيك ملح 80 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويك بيك ملح 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3916,
"name": "برسيل جل اتوماتيك ورد 3.9 كجم",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك ورد 3.9 كجم",
"Product_EN": null,
"Product_Id": "00008462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3917,
"name": "برسيل جل اتوماتيك لافندر 3.9 كجم",
"price": 106,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك لافندر 3.9 كجم",
"Product_EN": null,
"Product_Id": "00008463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3918,
"name": "اكسترا مسحوق اوتوماتيك ياسمين 4 كجم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اكسترا مسحوق اوتوماتيك ياسمين 4 كجم",
"Product_EN": null,
"Product_Id": "00008464 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3919,
"name": "برسيل مسحوق اتوماتيك الالوان 2.5 كجم + جل 900 مل ",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك الالوان 2.5 كجم + جل 900 مل ",
"Product_EN": null,
"Product_Id": "00008465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3920,
"name": "المشرق شنط مطبوعة وسط م 27*45 سم وزن",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "المشرق شنط مطبوعة وسط م 27*45 سم وزن",
"Product_EN": null,
"Product_Id": "00008467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3921,
"name": "المشرق شنط مطبوعة صغيرة م 23*45 سم وزن",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "المشرق شنط مطبوعة صغيرة م 23*45 سم وزن",
"Product_EN": null,
"Product_Id": "00008468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3922,
"name": "براون اند وايت بيض ابيض 15 ق - موقوف",
"price": 23.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براون اند وايت بيض ابيض 15 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3923,
"name": "براون اند وايت بيض احمر 10 ق - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براون اند وايت بيض احمر 10 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3924,
"name": "براون اند وايت بيض بلدى 30 ق - موقوف",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براون اند وايت بيض بلدى 30 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3925,
"name": "براون اند وايت بيض بلدى 15 ق - موقوف",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براون اند وايت بيض بلدى 15 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3926,
"name": "براون اند وايت بيض بلدى 10 ق - موقوف",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "براون اند وايت بيض بلدى 10 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3927,
"name": "كوكى ستربس دجاج بارد 1 كجم",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى ستربس دجاج بارد 1 كجم",
"Product_EN": "Koki Chicken Strips Cold 1 Kg",
"Product_Id": "00008475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3928,
"name": "السنبله ارز مصرى 1 كجم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله ارز مصرى 1 كجم",
"Product_EN": "Sonbolah Egyptian Rice 1 Kg ",
"Product_Id": "00008476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3929,
"name": "السنبله ارز مصرى 5 كجم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله ارز مصرى 5 كجم",
"Product_EN": "Sonbolah Egyptian Rice 5 Kg ",
"Product_Id": "00008477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3930,
"name": "وادى النيل ارز مصرى 1 كجم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى النيل ارز مصرى 1 كجم",
"Product_EN": "Wadi Elnile Egyptian 1 Kg ",
"Product_Id": "00008478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3931,
"name": "هاينز صلصه طماطم 360 جم 2+1 وفر 5 ج",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصه طماطم 360 جم 2+1 وفر 5 ج",
"Product_EN": "Heinz Tomato Sauce 360 gm 2 +1 Save 5 g",
"Product_Id": "00008479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3932,
"name": "هاينز كاتشب طماطم بارد 460 جم",
"price": 24.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم بارد 460 جم",
"Product_EN": "Heinz Tomato Ketchup Cold 460 ml",
"Product_Id": "00008480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3933,
"name": "وادى النيل أرز مصرى 5 كجم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى النيل أرز مصرى 5 كجم",
"Product_EN": "Wadi Elnile Egyptian Rice 5 Kg ",
"Product_Id": "00008482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3934,
"name": "رايس بلس ارز مصرى بالشعرية 900 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رايس بلس ارز مصرى بالشعرية 900 جم",
"Product_EN": "Rice Plus Egyptian rice with vermicelli 900 gm",
"Product_Id": "00008483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3935,
"name": "السنبله ارز بسمتى 500 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله ارز بسمتى 500 جم",
"Product_EN": "Sunbulah Basmati Rice 500 gm",
"Product_Id": "00008484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3936,
"name": "سما أرز مصرى 1 كجم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سما أرز مصرى 1 كجم",
"Product_EN": "Sama Egyptian Rice 1 kg",
"Product_Id": "00008485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3937,
"name": "السنبله فلفل اسود 70 جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله فلفل اسود 70 جم",
"Product_EN": null,
"Product_Id": "00008486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3938,
"name": "السنبله كمون 65 ج",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله كمون 65 ج",
"Product_EN": null,
"Product_Id": "00008487 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3939,
"name": "السنبله كزبره 50 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله كزبره 50 جم",
"Product_EN": null,
"Product_Id": "00008488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3940,
"name": "السنبله بصل بودر 70 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله بصل بودر 70 جم",
"Product_EN": null,
"Product_Id": "00008489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3941,
"name": "السنبله توم بودر 70 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله توم بودر 70 جم",
"Product_EN": null,
"Product_Id": "00008490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3942,
"name": "السنبله شطه 55 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله شطه 55 جم",
"Product_EN": null,
"Product_Id": "00008491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3943,
"name": "السنبله كارى 70 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله كارى 70 جم",
"Product_EN": null,
"Product_Id": "00008492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3944,
"name": "السنبله بابريكا 70 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله بابريكا 70 جم",
"Product_EN": null,
"Product_Id": "00008493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3945,
"name": "السنبله بهارات 70 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله بهارات 70 جم",
"Product_EN": null,
"Product_Id": "00008494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3946,
"name": "السنبله حبهان 40 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله حبهان 40 جم",
"Product_EN": null,
"Product_Id": "00008495 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3947,
"name": "السنبله دقيق جميع الأغراض 1 كجم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله دقيق جميع الأغراض 1 كجم",
"Product_EN": null,
"Product_Id": "00008496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3948,
"name": "السنبله صلصة طماطم 360 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "السنبله صلصة طماطم 360 جم",
"Product_EN": null,
"Product_Id": "00008497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3949,
"name": "فازلين جلي ملطف غني زبده الكاكاو 100 مل",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فازلين جلي ملطف غني زبده الكاكاو 100 مل",
"Product_EN": "Vaseline Jelly Rich Soothing Cocoa Butter 100 ml",
"Product_Id": "00014186 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3950,
"name": "صن لايت صابون برائحه اللافندر 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صن لايت صابون برائحه اللافندر 125 جم",
"Product_EN": "Sunlight Soap Lavender 125 gm",
"Product_Id": "00014187 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3951,
"name": "تريسمي شامبو الكيراتين 400 مل + بلسم 400 مل",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي شامبو الكيراتين 400 مل + بلسم 400 مل",
"Product_EN": "Tresemme Shampoo 400 ml + Conditioner 400 ml",
"Product_Id": "00014188 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3952,
"name": "اكس سبراي بلاك 150 مل",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس سبراي بلاك 150 مل",
"Product_EN": "AXe Spray Black 150 ml",
"Product_Id": "00014189 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3953,
"name": "لايفبوي صابون عنايه ناعمه 125 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايفبوي صابون عنايه ناعمه 125 جم",
"Product_EN": "Lifebuoy Soft Care Soap 125 gm",
"Product_Id": "00014190 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3954,
"name": "صانسيلك شامبو اصلاح فوري للشعر التالف 180 مل",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو اصلاح فوري للشعر التالف 180 مل",
"Product_EN": "Sunsilk shampoo instant repair damaged hair 180 ml",
"Product_Id": "00014191 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3955,
"name": "صانسيلك شامبو ناعم وانسيابي 350 مل",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو ناعم وانسيابي 350 مل",
"Product_EN": "Sunsilk Shampoo Soft & Smooth 350 ml",
"Product_Id": "00014192 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3956,
"name": "صانسيلك شامبو للشعر الأسود 600 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو للشعر الأسود 600 مل",
"Product_EN": "Sunsilk Shampoo Black Hair 600 ml",
"Product_Id": "00014193 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3957,
"name": "صانسيلك شامبو للشعر التالف 600 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو للشعر التالف 600 مل",
"Product_EN": "Sunsilk Shampoo For Damaged Hair 600 ml",
"Product_Id": "00014194 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3958,
"name": "صانسيلك شامبو للشعر التالف 180 مل ",
"price": 16.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو للشعر التالف 180 مل ",
"Product_EN": "Sunsilk Shampoo For Damaged Hair 180 ml",
"Product_Id": "00014195 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3959,
"name": "كلير شامبو مضاد للبكتيريا 360 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو مضاد للبكتيريا 360 مل",
"Product_EN": "Clear Shampoo Anti-Bacterial 360 ml",
"Product_Id": "00014196 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3960,
"name": "لايف بوي صابون عنايه ناعمه 75 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي صابون عنايه ناعمه 75 جم",
"Product_EN": "Lifebuoy Soap Soft Care 75 gm",
"Product_Id": "00014197 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3961,
"name": "تريسمي شامبواصلاح حمايه 400مل+بلسم 400 مل - موقوف",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي شامبواصلاح حمايه 400مل+بلسم 400 مل - موقوف",
"Product_EN": null,
"Product_Id": "00014198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3962,
"name": "تريسمي شامبواصلاح حمايه 400مل+بلسم 400 مل _ موقوف",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي شامبواصلاح حمايه 400مل+بلسم 400 مل _ موقوف",
"Product_EN": null,
"Product_Id": "00014199 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3963,
"name": "تريسمي شامبو اصلاح وحماية 400 مل+بلسم 400 مل",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي شامبو اصلاح وحماية 400 مل+بلسم 400 مل",
"Product_EN": "Tresemme Repair Shampoo 400 ml+Conditioner 400 ml",
"Product_Id": "00014200 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3964,
"name": "صانسيلك شامبو ناعم وانسيابي 600 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو ناعم وانسيابي 600 مل",
"Product_EN": "Sunsilk Shampoo Soft & Smooth Shampoo 600 ml",
"Product_Id": "00014201 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3965,
"name": "لوكس سائل غسيل ايدى لمسه مخمليه 500 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس سائل غسيل ايدى لمسه مخمليه 500 مل",
"Product_EN": "LUX Hand Wash Velvet Touch 500 ml",
"Product_Id": "00014202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3966,
"name": "كنور خلطه الحواوشي 30 جم ",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطه الحواوشي 30 جم ",
"Product_EN": "Knorr Hawawshi Mix 30 gm ",
"Product_Id": "00014203 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3967,
"name": "العبد بسكويت بالزبدة 9 ق",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد بسكويت بالزبدة 9 ق",
"Product_EN": null,
"Product_Id": "00014204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3968,
"name": "العبد بسكويت بالزبدة 4 ق",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد بسكويت بالزبدة 4 ق",
"Product_EN": null,
"Product_Id": "00014205 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3969,
"name": "زاهر تورتة ايس كريم شيكولاته & كراميل ",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم شيكولاته & كراميل ",
"Product_EN": "Zaher Caramel & Chocolate Ice Cream Mini Torte",
"Product_Id": "00014206 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3970,
"name": "كورونا شيكولاتة نابوليتان حليب 15 ق",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة نابوليتان حليب 15 ق",
"Product_EN": null,
"Product_Id": "00014207 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3971,
"name": "فيروز مشروب مانجو 330 مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز مشروب مانجو 330 مل",
"Product_EN": "Fayrouz mango 330 ml",
"Product_Id": "00014208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3972,
"name": "راوخ مشروب برتقال 355 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "راوخ مشروب برتقال 355 مل",
"Product_EN": "Rauch Orange Drink 355 ml",
"Product_Id": "00014209 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3973,
"name": "راوخ مشروب مانجو 355 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "راوخ مشروب مانجو 355 مل",
"Product_EN": "Rauch Mango Drink 355 ml",
"Product_Id": "00014210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3974,
"name": "راوخ مشروب عنب ابيض 355 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "راوخ مشروب عنب ابيض 355 مل",
"Product_EN": "Rauch White Grape Drink 355 ml",
"Product_Id": "00014211 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3975,
"name": "راوخ مشروب تفاح 355 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "راوخ مشروب تفاح 355 مل",
"Product_EN": "Rauch Apple Drink 355 ml",
"Product_Id": "00014212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3976,
"name": "راوخ مشروب خوخ 355 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "راوخ مشروب خوخ 355 مل",
"Product_EN": "Rauch Peach Drink 355 ml",
"Product_Id": "00014213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3977,
"name": "هيرشيز ريسيز شوكولاتة بزبدة الفول السودانى بيج كب",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرشيز ريسيز شوكولاتة بزبدة الفول السودانى بيج كب",
"Product_EN": "Hershey's Reese's Peanut Butter Chocolate Big Cup",
"Product_Id": "00014214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3978,
"name": "اكسترا لبان بنكهة الفراوله 6 ق 10.2 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان بنكهة الفراوله 6 ق 10.2 جم",
"Product_EN": "Extra Gum Strawberry Flavor 6 Pieces 10.2 gm",
"Product_Id": "00014217 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3979,
"name": "اكسترا لبان بنكهة النعناع 6 ق 10.2 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان بنكهة النعناع 6 ق 10.2 جم",
"Product_EN": "Extra Gum Mint Flavor 6 Pieces 10.2 gm",
"Product_Id": "00014218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3980,
"name": "تيك تاك حلوى برتقال 10.2 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيك تاك حلوى برتقال 10.2 جم",
"Product_EN": "Tic Tac Orange Candy 10.2 gm",
"Product_Id": "00014219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3981,
"name": "تيك تاك حلوى نعناع 10.2 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيك تاك حلوى نعناع 10.2 جم",
"Product_EN": "Tic Tac Mint Candy 10.2 gm",
"Product_Id": "00014220 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3982,
"name": "كيندر هابى هيبو ويفر محشو بكريمه الحليب وكاكاو22جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيندر هابى هيبو ويفر محشو بكريمه الحليب وكاكاو22جم",
"Product_EN": "Kinder Happy Hippo Wafer Milk Cream & Cocoa 22 gm",
"Product_Id": "00014222 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3983,
"name": "كيندر هابى هيبو ويفر محشو بكريمه الحليب وكاكاو 22ج",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيندر هابى هيبو ويفر محشو بكريمه الحليب وكاكاو 22ج",
"Product_EN": "Kinder Happy Hippo Wafer Milk Cream & Cocoa 22 gm",
"Product_Id": "00014223 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3984,
"name": "هنكات ضانى 1 ق - بوم استلام",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هنكات ضانى 1 ق - بوم استلام",
"Product_EN": null,
"Product_Id": "00014224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3985,
"name": "كينج ام دقيق جميع الاغراض 1 كجم",
"price": 103,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام دقيق جميع الاغراض 1 كجم",
"Product_EN": null,
"Product_Id": "00014225 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3986,
"name": "كينج ام دقيق دايت 1 كجم",
"price": 130.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام دقيق دايت 1 كجم",
"Product_EN": null,
"Product_Id": "00014226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3987,
"name": "كينج ام دقيق ذره ابيض 1 كجم",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام دقيق ذره ابيض 1 كجم",
"Product_EN": null,
"Product_Id": "00014227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3988,
"name": "كينج ام دقيق ذره اصفر 1 كجم",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام دقيق ذره اصفر 1 كجم",
"Product_EN": null,
"Product_Id": "00014228 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3989,
"name": "كينج ام دقيق ذره ارز 1 كجم",
"price": 171,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام دقيق ذره ارز 1 كجم",
"Product_EN": null,
"Product_Id": "00014229 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3990,
"name": "كينج ام سكر فركتوز صحي 500 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام سكر فركتوز صحي 500 جم",
"Product_EN": null,
"Product_Id": "00014230 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3991,
"name": "كينج ام عيش سوفت تاكو 15 ق",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام عيش سوفت تاكو 15 ق",
"Product_EN": null,
"Product_Id": "00014231 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3992,
"name": "كينج ام عيش مكسيكى 5 ق",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام عيش مكسيكى 5 ق",
"Product_EN": null,
"Product_Id": "00014232 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3993,
"name": "كينج ام عيش تورتيلا جامبو 5 ق",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام عيش تورتيلا جامبو 5 ق",
"Product_EN": null,
"Product_Id": "00014233 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3994,
"name": "كينج ام عيش تورتيلا جامبو اعشاب 5 ق",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام عيش تورتيلا جامبو اعشاب 5 ق",
"Product_EN": null,
"Product_Id": "00014234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3995,
"name": "كينج ام عيش تورتيلا جامبو طماطم 5 ق",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام عيش تورتيلا جامبو طماطم 5 ق",
"Product_EN": null,
"Product_Id": "00014235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3996,
"name": "كينج ام عيش تورتيلا جامبو حبة كاملة 5 ق",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام عيش تورتيلا جامبو حبة كاملة 5 ق",
"Product_EN": null,
"Product_Id": "00014236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3997,
"name": "كينج ام عيش تورتيلا جامبو 5 ق - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام عيش تورتيلا جامبو 5 ق - موقوف",
"Product_EN": null,
"Product_Id": "00014237 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3998,
"name": "كينج ام عيش ذره كورن 20 ق",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام عيش ذره كورن 20 ق",
"Product_EN": null,
"Product_Id": "00014238 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 3999,
"name": "كينج ام توست الأرز الساده 16 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام توست الأرز الساده 16 ق",
"Product_EN": null,
"Product_Id": "00014239 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4000,
"name": "كينج ام توست الأرز ( خليط الحبوب ) 16 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام توست الأرز ( خليط الحبوب ) 16 ق",
"Product_EN": null,
"Product_Id": "00014240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4001,
"name": "كينج ام توست الأرز البني 16 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام توست الأرز البني 16 ق",
"Product_EN": null,
"Product_Id": "00014241 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4002,
"name": "كينج ام توست الأرز و الشوفان 16 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كينج ام توست الأرز و الشوفان 16 ق",
"Product_EN": null,
"Product_Id": "00014242 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4003,
"name": "كينج ام براونيز بودر 500 جم",
"price": 260,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام براونيز بودر 500 جم",
"Product_EN": null,
"Product_Id": "00014243 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4004,
"name": "كينج ام بانكيك بودر 500 جم",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام بانكيك بودر 500 جم",
"Product_EN": null,
"Product_Id": "00014244 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4005,
"name": "كينج ام تورتيلا شيبس ملح 100 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام تورتيلا شيبس ملح 100 جم",
"Product_EN": null,
"Product_Id": "00014245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4006,
"name": "كينج ام تورتيلا شيبس باربكيو 100 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام تورتيلا شيبس باربكيو 100 جم",
"Product_EN": null,
"Product_Id": "00014246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4007,
"name": "كينج ام تورتيلا شيبس جبنه 100 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام تورتيلا شيبس جبنه 100 جم",
"Product_EN": null,
"Product_Id": "00014247 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4008,
"name": "كينج ام شيكولاته شيبس 200 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام شيكولاته شيبس 200 جم",
"Product_EN": null,
"Product_Id": "00014248 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4009,
"name": "كينج ام تاكو شيل 12 ق",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام تاكو شيل 12 ق",
"Product_EN": null,
"Product_Id": "00014249 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4010,
"name": "كينج ام بسكويت صحي شوكولاته 250 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام بسكويت صحي شوكولاته 250 جم",
"Product_EN": null,
"Product_Id": "00014250 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4011,
"name": "كينج ام بسكويت صحي مشمش 250 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام بسكويت صحي مشمش 250 جم",
"Product_EN": null,
"Product_Id": "00014251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4012,
"name": "كينج ام بسكويت ديابيتك قليل السعرات 250 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام بسكويت ديابيتك قليل السعرات 250 جم",
"Product_EN": null,
"Product_Id": "00014252 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4013,
"name": "كينج ام بسكويت بخليط الحبوب 250 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام بسكويت بخليط الحبوب 250 جم",
"Product_EN": null,
"Product_Id": "00014253 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4014,
"name": "كينج ام كوكيز شوكولاته شيبس 250 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام كوكيز شوكولاته شيبس 250 جم",
"Product_EN": null,
"Product_Id": "00014254 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4015,
"name": "كينج ام فطائر وافلز 3 ق",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام فطائر وافلز 3 ق",
"Product_EN": null,
"Product_Id": "00014255 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4016,
"name": "كينج ام كيك براونى مع قطع الشيكولاته 5 ق",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام كيك براونى مع قطع الشيكولاته 5 ق",
"Product_EN": null,
"Product_Id": "00014256 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4017,
"name": "كينج ام شيبس مقلى ناتشوز 500 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كينج ام شيبس مقلى ناتشوز 500 جم",
"Product_EN": null,
"Product_Id": "00014257 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4018,
"name": "تورابيكا كابتشينو بسكر ظرف 25 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تورابيكا كابتشينو بسكر ظرف 25 جم",
"Product_EN": null,
"Product_Id": "00014258 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4019,
"name": "دومتى بلس جبنه فيتا شيدر 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه فيتا شيدر 500 جم",
"Product_EN": "Domty Feta Cheese Cheddar Plus 500 gm",
"Product_Id": "00014259 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4020,
"name": "دومتى جبنه فيتا ريكفورد بلس 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا ريكفورد بلس 500 جم",
"Product_EN": "Domty Feta Cheese Roquefort Plus 500 gm",
"Product_Id": "00014260 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4021,
"name": "دومتى بلس جبنه فيتا رومى 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه فيتا رومى 500 جم",
"Product_EN": "Domty Plus Feta Cheese Roumi 500 gm",
"Product_Id": "00014261 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4022,
"name": "دومتى بلس جبنه فيتا بسطرمه 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه فيتا بسطرمه 500 جم",
"Product_EN": "Domty Plus Feta Cheese Pastrami 500 gm",
"Product_Id": "00014262 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4023,
"name": "دومتى بلس جبنه فيتا رومى 250 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه فيتا رومى 250 جم",
"Product_EN": "Domty Plus Feta Cheese Roumi 250 gm",
"Product_Id": "00014263 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4024,
"name": "دومتى جبنه فيتا بسطرمه بلس 250 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا بسطرمه بلس 250 جم",
"Product_EN": "Domty Feta Cheese Pastrami Plus 250 gm",
"Product_Id": "00014264 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4025,
"name": "دومتى بلس جبنه فيتا شيدر 250 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه فيتا شيدر 250 جم",
"Product_EN": "Domty Plus Feta Cheese Cheddar 250 gm",
"Product_Id": "00014265 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4026,
"name": "دومتى بلس جبنه فيتا ريكفورد 250 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه فيتا ريكفورد 250 جم",
"Product_EN": "Domty Plus Feta Cheese Roquefort 500 gm",
"Product_Id": "00014266 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4027,
"name": "تورابيكا كابتشينو بدون سكر ظرف 12,5 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تورابيكا كابتشينو بدون سكر ظرف 12,5 جم",
"Product_EN": null,
"Product_Id": "00014267 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4028,
"name": "كوفي جوي بسكويت القهوة 147 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوفي جوي بسكويت القهوة 147 جم",
"Product_EN": null,
"Product_Id": "00014269 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4029,
"name": "دانيسا بسكويت بالزبدة علب 375جم",
"price": 89,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دانيسا بسكويت بالزبدة علب 375جم",
"Product_EN": null,
"Product_Id": "00014270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4030,
"name": "دنيسا بسكويت بالزبدة علب 200 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دنيسا بسكويت بالزبدة علب 200 جم",
"Product_EN": null,
"Product_Id": "00014271 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4031,
"name": "كوبيكو بونبون بطعم الكابتشينو برطمان 800 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوبيكو بونبون بطعم الكابتشينو برطمان 800 جم",
"Product_EN": null,
"Product_Id": "00014272 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4032,
"name": "كوبيكو بونبون بطعم القهوة كيس 800 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوبيكو بونبون بطعم القهوة كيس 800 جم",
"Product_EN": null,
"Product_Id": "00014273 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4033,
"name": "كوبيكو بونبون بطعم الكابتشينو كيس 130 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوبيكو بونبون بطعم الكابتشينو كيس 130 جم",
"Product_EN": null,
"Product_Id": "00014274 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4034,
"name": "كوبيكو بونبون بطعم القهوة كيس 150 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوبيكو بونبون بطعم القهوة كيس 150 جم",
"Product_EN": null,
"Product_Id": "00014275 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4035,
"name": "مربى سلطان باشا كوكتيل تين 380 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مربى سلطان باشا كوكتيل تين 380 جم",
"Product_EN": null,
"Product_Id": "00014276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4036,
"name": "مربى سلطان باشا كوكتيل توت العليق 380 جم _ موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مربى سلطان باشا كوكتيل توت العليق 380 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00014278 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4037,
"name": "تورابيكا ميكاتو قهوه اسبرسو سريعة التحضير ظرف 25جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تورابيكا ميكاتو قهوه اسبرسو سريعة التحضير ظرف 25جم",
"Product_EN": null,
"Product_Id": "00014279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4038,
"name": "تورابيكا كابتشينو بدون سكر ظرف 12,5 جم - علبة",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تورابيكا كابتشينو بدون سكر ظرف 12,5 جم - علبة",
"Product_EN": null,
"Product_Id": "00014280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4039,
"name": "تورابيكا كابتشينو 25 جم علبة * 5 ظرف ",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تورابيكا كابتشينو 25 جم علبة * 5 ظرف ",
"Product_EN": null,
"Product_Id": "00014281 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4040,
"name": "مزارع دينا زبادى بقطع الخوخ 3+1 ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا زبادى بقطع الخوخ 3+1 ق",
"Product_EN": "Dina Farms Yogurt with Peach 105 gm 3+1 Pieces",
"Product_Id": "00014282 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4041,
"name": "مزارع دينا زبادى بقطع الفراولة 3+1 ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا زبادى بقطع الفراولة 3+1 ق",
"Product_EN": "Dina Farms Yogurt Strawberry 105 gm 3+1 Pieces",
"Product_Id": "00014283 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4042,
"name": "مزارع دينا زبادى بقطع التوت عرض 3+1 ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا زبادى بقطع التوت عرض 3+1 ق",
"Product_EN": "Dina Farms Yogurt with Blueberry 105 gm 3+1 Pieces",
"Product_Id": "00014284 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4043,
"name": "دايجيستيف بسكويت قمح بكريمه الفانيليا 3 ق",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجيستيف بسكويت قمح بكريمه الفانيليا 3 ق",
"Product_EN": null,
"Product_Id": "00014285 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4044,
"name": "دايجيستيف بسكويت شوفان بكريمه الفانيليا 3 ق",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجيستيف بسكويت شوفان بكريمه الفانيليا 3 ق",
"Product_EN": null,
"Product_Id": "00014286 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4045,
"name": "عبور لاند جبنه فيتا شيدر 250 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا شيدر 250 جم",
"Product_EN": null,
"Product_Id": "00014287 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4046,
"name": "عبور لاند جبنه فيتا رومى 250 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا رومى 250 جم",
"Product_EN": null,
"Product_Id": "00014288 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4047,
"name": "هارون شنط شفافة وزن",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "هارون شنط شفافة وزن",
"Product_EN": null,
"Product_Id": "00014290 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4048,
"name": "زاهر ايس كريم مور وزن",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم مور وزن",
"Product_EN": "Zaher MORO Ice Cream - Scalable ",
"Product_Id": "00014291 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4049,
"name": "المراعى زبادى يونانى 170 جم 5% دسم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى يونانى 170 جم 5% دسم",
"Product_EN": "Almarai Yogurt Greek 170 gm 5% Fat",
"Product_Id": "00014292 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4050,
"name": "المراعى زبادى يونانى 170 جم 2% دسم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى يونانى 170 جم 2% دسم",
"Product_EN": "Almarai Yogurt Greek 170 gm 2% Fat",
"Product_Id": "00014293 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4051,
"name": "المراعى زبادى يونانى قطع فراوله 170 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى يونانى قطع فراوله 170 جم",
"Product_EN": "Almarai Yogurt Greek Strawberry Slices 170 gm",
"Product_Id": "00014294 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4052,
"name": "المراعى زبادى يونانى 105 جم 5% دسم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى يونانى 105 جم 5% دسم",
"Product_EN": "Almarai Yogurt Greek 105 gm 5% Fat",
"Product_Id": "00014295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4053,
"name": "زاهر تورته مينى ايس كريم شيكولاته",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته مينى ايس كريم شيكولاته",
"Product_EN": "Zaher Chocolate Ice Cream Mini Torte",
"Product_Id": "00014296 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4054,
"name": "زاهر تورته مينى ايس كريم اوريو",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته مينى ايس كريم اوريو",
"Product_EN": "Zaher OREA Biscuit Ice Cream Mini Torte",
"Product_Id": "00014297 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4055,
"name": "زاهر تورته ميني ايس كريم لوتس",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ميني ايس كريم لوتس",
"Product_EN": "Zaher LOTUS Biscuit Ice Cream Mini Torte",
"Product_Id": "00014298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4056,
"name": "مولتو ساندوتش جبنه بيضاء وفلفل حار 1 قطعه",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو ساندوتش جبنه بيضاء وفلفل حار 1 قطعه",
"Product_EN": "Molto Sandwich white cheese & Hot pepper 1 Pieces",
"Product_Id": "00014299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4057,
"name": "رويال طبق اسود كبير 2 كجم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "رويال طبق اسود كبير 2 كجم",
"Product_EN": null,
"Product_Id": "00014300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4058,
"name": "امتنان بروتين بار بالقرفة 70 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امتنان بروتين بار بالقرفة 70 جم",
"Product_EN": null,
"Product_Id": "00014301 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4059,
"name": "ساميانج نودلز كورى بنكهه الدجاج الحار بالكاري150جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ساميانج نودلز كورى بنكهه الدجاج الحار بالكاري150جم",
"Product_EN": null,
"Product_Id": "00014302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4060,
"name": "بريك شيكولاته بالبندق 40 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بريك شيكولاته بالبندق 40 جم",
"Product_EN": "Break Chocolate Hazelnut 40 gm",
"Product_Id": "00014303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4061,
"name": "بريك شوكولاته باللوز والزبيب 40 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بريك شوكولاته باللوز والزبيب 40 جم",
"Product_EN": "Break Chocolate With Almonds & Raisins 40 gm",
"Product_Id": "00014304 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4062,
"name": "بريك شوكولاته باللوز 40 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بريك شوكولاته باللوز 40 جم",
"Product_EN": "Break Chocolate With Almonds 40 gm",
"Product_Id": "00014305 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4063,
"name": "بريك شوكولاته باللوز برتقال وليمون 85 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بريك شوكولاته باللوز برتقال وليمون 85 جم",
"Product_EN": "Break Chocolate Almond Orange & Lemon 85 gm",
"Product_Id": "00014307 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4064,
"name": "ايون شوكولاته بالبندق 200 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شوكولاته بالبندق 200 جم",
"Product_EN": "Ion Chocolate Hazelnut 200 gm",
"Product_Id": "00014308 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4065,
"name": "ايون شوكولاته بالحليب 200 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شوكولاته بالحليب 200 جم",
"Product_EN": "Ion Milk Chocolate 200 gm",
"Product_Id": "00014309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4066,
"name": "ايون شوكولاته باللوز 200 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شوكولاته باللوز 200 جم",
"Product_EN": "Ion Chocolate Almond 200 gm",
"Product_Id": "00014310 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4067,
"name": "دانجو زبادى فراولة 105 جم 3+1 ق عرض",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو زبادى فراولة 105 جم 3+1 ق عرض",
"Product_EN": "Dango Strawberry Yogurt 105gm 3+1 Pieces - Offer",
"Product_Id": "00014311 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4068,
"name": "تيست بيور لانشون جملى وزن",
"price": 128,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تيست بيور لانشون جملى وزن",
"Product_EN": null,
"Product_Id": "00014312 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4069,
"name": "ايون شوكولاته بالحليب 400 جم",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شوكولاته بالحليب 400 جم",
"Product_EN": "Ion Milk Chocolate 400 gm",
"Product_Id": "00014314 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4070,
"name": "ايون شوكولاته بالبندق 500 جم",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شوكولاته بالبندق 500 جم",
"Product_EN": "Ion Chocolate Hazelnut 500 gm",
"Product_Id": "00014315 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4071,
"name": "ايون اكياس لوز 200 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:40",
"updated_at": "2021-11-01 19:45:40",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون اكياس لوز 200 جم",
"Product_EN": "Ion Almond Bags 200 gm",
"Product_Id": "00014316 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4072,
"name": "ايون اكياس لوز دارك 200 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون اكياس لوز دارك 200 جم",
"Product_EN": "Ion Almond Dark Bags 200 gm",
"Product_Id": "00014317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4073,
"name": "ايون اكياس مشكله 200جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون اكياس مشكله 200جم",
"Product_EN": "Ion Mixed Bags 200 gm",
"Product_Id": "00014318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4074,
"name": "ايون بسكويت ويفر شيكولاتة بيضاء 38 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون بسكويت ويفر شيكولاتة بيضاء 38 جم",
"Product_EN": "Ion Wafer Biscuits White Chocolate 38 gm",
"Product_Id": "00014320 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4075,
"name": "ايون بسكويت ويفر شوكولاته دارك 38 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون بسكويت ويفر شوكولاته دارك 38 جم",
"Product_EN": "Ion Wafer Biscuits Dark Chocolate 38 gm",
"Product_Id": "00014321 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4076,
"name": "ديربي شيكولاتة حشو كرسبي كريمه جوزالهند 38 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديربي شيكولاتة حشو كرسبي كريمه جوزالهند 38 جم",
"Product_EN": "Derby Chocolate Crispy Coconut Cream Filling 38 gm",
"Product_Id": "00014322 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4077,
"name": "ديربي شوكولاتة بيضاء بحشو كريمه جوز الهند 38 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديربي شوكولاتة بيضاء بحشو كريمه جوز الهند 38 جم",
"Product_EN": "Derby White Chocolate Coconut Cream Filling 38 gm",
"Product_Id": "00014323 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4078,
"name": "ديربي شوكولاتة دارك بحشو كريمه جوزالهند 38 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديربي شوكولاتة دارك بحشو كريمه جوزالهند 38 جم",
"Product_EN": "Derby Dark Chocolate Coconut Cream Filling 38 gm",
"Product_Id": "00014324 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4079,
"name": "ديربى شوكولاتة دارك بحشو كراميل وكريمه جوز هند38جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديربى شوكولاتة دارك بحشو كراميل وكريمه جوز هند38جم",
"Product_EN": "Derby Dark Chocolate Caramel & Coconut 38 gm",
"Product_Id": "00014325 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4080,
"name": "ايون بسكويت ويفر حليب 210 جم",
"price": 47.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون بسكويت ويفر حليب 210 جم",
"Product_EN": "Ion Milk Biscuits 210 gm",
"Product_Id": "00014326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4081,
"name": "ايون بسكويت ويفر بندق 210 جم",
"price": 47.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون بسكويت ويفر بندق 210 جم",
"Product_EN": "Ion Wafer Hazelnut 210 gm",
"Product_Id": "00014327 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4082,
"name": "ايون بسكويت ويفر شيكولاته بيضاء 210 جم",
"price": 47.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون بسكويت ويفر شيكولاته بيضاء 210 جم",
"Product_EN": "Ion Wafer Biscuits White Chocolate 210 gm",
"Product_Id": "00014328 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4083,
"name": "ايون بسكويت ويفر شيكولاته دارك 210 جم",
"price": 47.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون بسكويت ويفر شيكولاته دارك 210 جم",
"Product_EN": "Ion Wafer Biscuits Dark Chocolate 210 gm",
"Product_Id": "00014329 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4084,
"name": "ايون شيكولاته باللوز 100جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شيكولاته باللوز 100جم",
"Product_EN": "Ion Chocolate Almond 100 gm",
"Product_Id": "00014330 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4085,
"name": "ايون شيكولاته بالحليب 100 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شيكولاته بالحليب 100 جم",
"Product_EN": "Ion Chocolate Milk 100 gm",
"Product_Id": "00014331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4086,
"name": "ايون شيكولاته بالبندق 100 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شيكولاته بالبندق 100 جم",
"Product_EN": "Ion Chocolate Hazelnut 100 gm",
"Product_Id": "00014332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4087,
"name": "باللو ملبس بالزبدة 300 جم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باللو ملبس بالزبدة 300 جم",
"Product_EN": "BALOO BUTTER 300 gm",
"Product_Id": "00014334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4088,
"name": "نيو كريمة كريمة الكاكاو والبندق ديو زجاج 400 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيو كريمة كريمة الكاكاو والبندق ديو زجاج 400 جم",
"Product_EN": "New Creama Cocoa & Hazelnut Dew Cream 400 gm",
"Product_Id": "00014336 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4089,
"name": "نيو كريمة كريمة الكاكاو والبندق بلاستيك 5 كجم",
"price": 350,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيو كريمة كريمة الكاكاو والبندق بلاستيك 5 كجم",
"Product_EN": "New Creama Cocoa and Hazelnut Cream Plastic 5 kg",
"Product_Id": "00014337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4090,
"name": "نيو كريمة كريمة الكاكاو والبندق بلاستيك 10 كجم",
"price": 693.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيو كريمة كريمة الكاكاو والبندق بلاستيك 10 كجم",
"Product_EN": "New Creama Cocoa and Hazelnut Cream Plastic 10 kg",
"Product_Id": "00014338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4091,
"name": "الطاهيه فاصوليا بيضاء مطبوخه 400 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه فاصوليا بيضاء مطبوخه 400 جم",
"Product_EN": "Al Tahya White Beans 400 gm",
"Product_Id": "00014340 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4092,
"name": "فارمرز ذره حلوه 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فارمرز ذره حلوه 400 جم",
"Product_EN": "Farmer's Sweet Corn 400 gm",
"Product_Id": "00014341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4093,
"name": "اية ام ار ذره حلوه 340 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار ذره حلوه 340 جم",
"Product_EN": "A.M.R. Sweet Corn 400 gm",
"Product_Id": "00014342 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4094,
"name": "فارمرز ذره حلوه 340 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فارمرز ذره حلوه 340 جم",
"Product_EN": "Farmer's Sweet Corn 340 gm",
"Product_Id": "00014343 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4095,
"name": "اية ام ار ذره حلوه بيبي 400 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار ذره حلوه بيبي 400 جم",
"Product_EN": "A.M.R. Baby Sweet Corn 400 gm",
"Product_Id": "00014344 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4096,
"name": "اية ام ار مشروم حب كامل 400 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار مشروم حب كامل 400 جم",
"Product_EN": "A.M.R. Whole Mushroom 400 gm",
"Product_Id": "00014346 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4097,
"name": "فارمرز مشروم حب كامل 850 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فارمرز مشروم حب كامل 850 جم",
"Product_EN": "Farmer's Whole Mushroom 850 gm",
"Product_Id": "00014347 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4098,
"name": "فارمرز مشروم حب كامل 800 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فارمرز مشروم حب كامل 800 جم",
"Product_EN": "Farmer's Whole Mushroom 800 gm",
"Product_Id": "00014348 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4099,
"name": "فارمرز مشروم شرائح 850 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فارمرز مشروم شرائح 850 جم",
"Product_EN": "Farmer's Mushrooms Slices 850 gm",
"Product_Id": "00014349 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4100,
"name": "فارمرز مشروم شرائح 400 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فارمرز مشروم شرائح 400 جم",
"Product_EN": "Farmer's Mushrooms Slices 400 gm",
"Product_Id": "00014350 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4101,
"name": "كنانه مشروم شرائح 800 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنانه مشروم شرائح 800 جم",
"Product_EN": "Kanana Mushroom Slices 800 gm",
"Product_Id": "00014351 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4102,
"name": "كنانه مشروم شرائح 400 جم ",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنانه مشروم شرائح 400 جم ",
"Product_EN": "Kanana Mushroom Slices 400 gm",
"Product_Id": "00014352 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4103,
"name": "ماكسيلو كرواسون 40X L جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ماكسيلو كرواسون 40X L جم",
"Product_EN": null,
"Product_Id": "00014354 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4104,
"name": "اية ام ار كمبوت اناناس قطع 565 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار كمبوت اناناس قطع 565 جم",
"Product_EN": "A.M.R Compote Pineapple Chunks 565 gm ",
"Product_Id": "00014355 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4105,
"name": "فارمرز كمبوت اناناس قطع 565 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فارمرز كمبوت اناناس قطع 565 جم",
"Product_EN": "Farmer's Compote Pineapple Chunks 565 gm",
"Product_Id": "00014356 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4106,
"name": "اية ام ار كمبوت اناناس شرائح 565 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار كمبوت اناناس شرائح 565 جم",
"Product_EN": "Farmer's Compote Pineapple Slices 565 gm",
"Product_Id": "00014357 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4107,
"name": "اية ام ار تونه 5 ق 170 جم",
"price": 188,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار تونه 5 ق 170 جم",
"Product_EN": "A.M.R. Tuna 5 Pieces 170 gm",
"Product_Id": "00014359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4108,
"name": "اية ام ار فاصوليا حمراء 400 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار فاصوليا حمراء 400 جم",
"Product_EN": "A.M.R Red Kidney Beans 400 gm",
"Product_Id": "00014360 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4109,
"name": "اية ام ار حمص مسلوق 400 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار حمص مسلوق 400 جم",
"Product_EN": "A.M.R Chick Peas 400 gm",
"Product_Id": "00014361 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4110,
"name": "اية ام ار طماطم مقشرة كامله 400 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار طماطم مقشرة كامله 400 جم",
"Product_EN": "A.M.R Whole Peeled Tomato 400 gm",
"Product_Id": "00014362 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4111,
"name": "اية ام ار خوخ برطمان 550 جم",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار خوخ برطمان 550 جم",
"Product_EN": "A.M.R Peach Jar 550 gm",
"Product_Id": "00014363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4112,
"name": "اية ام ار خوخ برطمان 680 جم ",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار خوخ برطمان 680 جم ",
"Product_EN": "A.M.R Peach Jar 680 gm",
"Product_Id": "00014364 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4113,
"name": "اية ام ار خوخ شرائح 820 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار خوخ شرائح 820 جم",
"Product_EN": "A.M.R Peach Sliced 820 gm",
"Product_Id": "00014365 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4114,
"name": "اية ام ار فول مدمس ساده 400 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اية ام ار فول مدمس ساده 400 جم",
"Product_EN": "A.M.R. Plain Fava Beans 400 gm",
"Product_Id": "00014366 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4115,
"name": "باكمايا خميره فوريه 450 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باكمايا خميره فوريه 450 جم",
"Product_EN": "Pakmaya Instant Dry Yeast 450 gm",
"Product_Id": "00014367 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4116,
"name": "باكمايا خميره فوريه 125جم",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باكمايا خميره فوريه 125جم",
"Product_EN": "Pakmaya Instant Dry Yeast 125 gm",
"Product_Id": "00014368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4117,
"name": "باكمايا خميره فوريه 100جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باكمايا خميره فوريه 100جم",
"Product_EN": "Pakmaya Instant Dry Yeast 100 gm",
"Product_Id": "00014369 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4118,
"name": "باكمايا خميرة فورية 11جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باكمايا خميرة فورية 11جم",
"Product_EN": "Pakmaya Instant Dry Yeast 11 gm",
"Product_Id": "00014370 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4119,
"name": "رويال كاسيل تورنتو كوكيز صفيح 908 جم",
"price": 164,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال كاسيل تورنتو كوكيز صفيح 908 جم",
"Product_EN": "Royal Castle Torito Butter Cookies Tin 908 gm",
"Product_Id": "00014371 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4120,
"name": "رويال كاسيل فينسي كوكيز زبده صفيح 908 جم",
"price": 164,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال كاسيل فينسي كوكيز زبده صفيح 908 جم",
"Product_EN": "Royal Castle Fancy Butter Cookies Tin 908 gm",
"Product_Id": "00014372 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4121,
"name": "كوكاكولا كان 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا كان 300 مل",
"Product_EN": "Coca-Cola Can 300 ml",
"Product_Id": "00014373 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4122,
"name": "كوكاكولا اكشن بلاستيك 300 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا اكشن بلاستيك 300 مل",
"Product_EN": "Coca-Cola Action Plastic 300 ml",
"Product_Id": "00014374 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4123,
"name": "هاريبو مارشميلو سكوشى 80 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو مارشميلو سكوشى 80 جم",
"Product_EN": "Haribo Marshmallow Scotch 80 gm",
"Product_Id": "00014375 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4124,
"name": "رويال كاسل تورتو وايت كوكيز زبده 681 جم",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال كاسل تورتو وايت كوكيز زبده 681 جم",
"Product_EN": "Royal Castle Torito White Butter Cookies 681 gm",
"Product_Id": "00014376 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4125,
"name": "وايت كاسل فينسي كوكيز زبده صفيح 681 جم",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل فينسي كوكيز زبده صفيح 681 جم",
"Product_EN": "White Castle Vincci Butter Cookies Tin 681 gm",
"Product_Id": "00014377 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4126,
"name": "وايت كاسل فينسي كوكيز زبده صفيح 454 جم _ موقوف",
"price": 82,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل فينسي كوكيز زبده صفيح 454 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00014378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4127,
"name": "وايت كاسل فينسي كوكيز زبده صفيح 454 جم",
"price": 82,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل فينسي كوكيز زبده صفيح 454 جم",
"Product_EN": "White Castle Vincci Butter Cookies Tin 454 gm",
"Product_Id": "00014379 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4128,
"name": "وايت كاسل فينسي كوكيز زبده شيكولاته صفيح 454 جم",
"price": 82,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل فينسي كوكيز زبده شيكولاته صفيح 454 جم",
"Product_EN": "White Castle Butter Cookies Chocolate Tin 454 gm",
"Product_Id": "00014380 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4129,
"name": "وايت كاسل تورتو كوكيز زبده 45 جم",
"price": 74.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو كوكيز زبده 45 جم",
"Product_EN": "White Castle Torito Butter Cookies 45 gm",
"Product_Id": "00014382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4130,
"name": "كوكاكولا مشروب مياه غازيه 1.95 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا مشروب مياه غازيه 1.95 لتر",
"Product_EN": "Coca-Cola Soft Drink 1.95 L",
"Product_Id": "00014384 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4131,
"name": "وايت كاسل تورتو شوفان بالزبيب 160 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو شوفان بالزبيب 160 جم",
"Product_EN": "White Castle Torito Oats With Raisins 160 gm",
"Product_Id": "00014385 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4132,
"name": "وايت كاسل تورتو شوفان بالزبيب والشوكولاته 160 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو شوفان بالزبيب والشوكولاته 160 جم",
"Product_EN": "White Castle Torito Oats Raisins & Chocolate 160gm",
"Product_Id": "00014386 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4133,
"name": "وايت كاسل تورتو شوفان بالشوكولاته 160 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو شوفان بالشوكولاته 160 جم",
"Product_EN": "White Castle Torito Oats Chocolate 160 gm",
"Product_Id": "00014387 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4134,
"name": "وايت كاسل تورتو كوكيز بالزبده 160 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو كوكيز بالزبده 160 جم",
"Product_EN": "White Castle Torito Butter Cookies 160 gm",
"Product_Id": "00014388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4135,
"name": "وايت كاسل تورتو كوكيز بالزبيب و الزبده 160 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو كوكيز بالزبيب و الزبده 160 جم",
"Product_EN": "White Castle Torito Cookies Raisins & Butter 160gm",
"Product_Id": "00014389 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4136,
"name": "وايت كاسل تورتو كوكيز بقطع الشوكولاته 150 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو كوكيز بقطع الشوكولاته 150 جم",
"Product_EN": "White Castle Torito Cookies Chocolate Chunks 150gm",
"Product_Id": "00014390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4137,
"name": "وايت كاسل تورتو كوكيز بالكراميل المملح 140 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو كوكيز بالكراميل المملح 140 جم",
"Product_EN": "White Castle Torito Cookies Salted Caramel 140 gm",
"Product_Id": "00014391 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4138,
"name": "وايت كاسل تورتو كوكيز مملح بالشيكولاته 140 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو كوكيز مملح بالشيكولاته 140 جم",
"Product_EN": "White Castle Torito Cookies Salted Chocolate 140gm",
"Product_Id": "00014392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4139,
"name": "وايت كاسل تورتو كوكيز جوز الهند 140 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو كوكيز جوز الهند 140 جم",
"Product_EN": "White Castle Torito Coconut Cookies 140 gm",
"Product_Id": "00014393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4140,
"name": "وايت كاسل تورتو كوكيز مملح 140 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل تورتو كوكيز مملح 140 جم",
"Product_EN": "White Castle Torito Cookies Salted 140 gm",
"Product_Id": "00014394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4141,
"name": "وايت كاسل كوكيز شيكولاته 40 جم",
"price": 82.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل كوكيز شيكولاته 40 جم",
"Product_EN": "White Castle Cookies Chocolate 40 gm",
"Product_Id": "00014395 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4142,
"name": "وايت كاسل كوكيز شوكولاتة 400 جم",
"price": 82,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل كوكيز شوكولاتة 400 جم",
"Product_EN": "White Castle Chocolate Cookies 400 gm",
"Product_Id": "00014396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4143,
"name": "كولاكاو كاكاو سريع الذوبان 400 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كولاكاو كاكاو سريع الذوبان 400 جم",
"Product_EN": "Cola Cocoa Cocoa Dissolve 400 gm",
"Product_Id": "00014397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4144,
"name": "كولاكاو كاكاو سريع الذوبان 250 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كولاكاو كاكاو سريع الذوبان 250 جم",
"Product_EN": "Cola Cocoa Instant Cocoa 250 gm",
"Product_Id": "00014398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4145,
"name": "مربى سلطان باشا فراولة 380 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مربى سلطان باشا فراولة 380 جم",
"Product_EN": null,
"Product_Id": "00014399 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4146,
"name": "مربى سلطان باشا كوكتيل كرز 380 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مربى سلطان باشا كوكتيل كرز 380 جم",
"Product_EN": null,
"Product_Id": "00014400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4147,
"name": "مربى سلطان باشا كوكتيل توت أسود 380 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مربى سلطان باشا كوكتيل توت أسود 380 جم",
"Product_EN": null,
"Product_Id": "00014401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4148,
"name": "مربى سلطان باشا كوكتيل مشمش 380 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مربى سلطان باشا كوكتيل مشمش 380 جم",
"Product_EN": null,
"Product_Id": "00014402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4149,
"name": "مربى سلطان باشا كوكتيل توت العليق 380 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مربى سلطان باشا كوكتيل توت العليق 380 جم",
"Product_EN": null,
"Product_Id": "00014403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4150,
"name": "مربى سلطان باشا كوكتيل ورد 380 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مربى سلطان باشا كوكتيل ورد 380 جم",
"Product_EN": null,
"Product_Id": "00014404 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4151,
"name": "دانيسا بسكويت بالزبدة علب 750جم",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دانيسا بسكويت بالزبدة علب 750جم",
"Product_EN": null,
"Product_Id": "00014405 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4152,
"name": "احمد تى شاى حبهان 100 فتله",
"price": 61.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى حبهان 100 فتله",
"Product_EN": "Ahmad Tea Cardamom Flavor 25 Bags",
"Product_Id": "00014408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4153,
"name": "مينى باتيه بالجبنة البيضاء",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مينى باتيه بالجبنة البيضاء",
"Product_EN": null,
"Product_Id": "00014409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4154,
"name": "مينى باتيه بالجبنة الرومى",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مينى باتيه بالجبنة الرومى",
"Product_EN": null,
"Product_Id": "00014410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4155,
"name": "مينى باتية عجوة",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مينى باتية عجوة",
"Product_EN": null,
"Product_Id": "00014411 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4156,
"name": "مينى باتيه بالشوكولاتة",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مينى باتيه بالشوكولاتة",
"Product_EN": null,
"Product_Id": "00014412 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4157,
"name": "مينى باتيه بالجبنة المشطشطة",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مينى باتيه بالجبنة المشطشطة",
"Product_EN": null,
"Product_Id": "00014413 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4158,
"name": "احمد تى شاى دارجلنج صفيح 200جم",
"price": 124.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى دارجلنج صفيح 200جم",
"Product_EN": "Ahmad Darjeeling Tea Tin Box 200 gm",
"Product_Id": "00014414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4159,
"name": "احمد تى شاى سيلانى صفيح 200 جم",
"price": 93.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى سيلانى صفيح 200 جم",
"Product_EN": "Ahmed Tea Ceylon Tea Tin 200 gm",
"Product_Id": "00014415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4160,
"name": "احمد تى شاى إيرل جراى صفيح 200 جم",
"price": 93.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى إيرل جراى صفيح 200 جم",
"Product_EN": "Ahmad Tea Earl Gray Tea 200 gm",
"Product_Id": "00014416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4161,
"name": "احمد تى شاى فطور انجليزى صفيح 100 جم ",
"price": 93.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى فطور انجليزى صفيح 100 جم ",
"Product_EN": "Ahmad Tea Black Tea English Breakfast Box 100 gm",
"Product_Id": "00014417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4162,
"name": "احمد تى شاى فطور انجليزى صفيح 200 جم ",
"price": 93.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى فطور انجليزى صفيح 200 جم ",
"Product_EN": "Ahmad Tea Black Tea English Breakfast Box 200 gm",
"Product_Id": "00014418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4163,
"name": "احمد تى شاى دارجلنج صفيح 100جم",
"price": 79,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى دارجلنج صفيح 100جم",
"Product_EN": "Ahmad Darjeeling Tea Tin Box 100 gm",
"Product_Id": "00014419 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4164,
"name": "احمد تى شاى سيلانى صفيح 100جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى سيلانى صفيح 100جم",
"Product_EN": "Ahmed Tea Ceylon Tea Tin 100 gm",
"Product_Id": "00014420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4165,
"name": "احمد تى شاى اخضر صفيح 100جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر صفيح 100جم",
"Product_EN": "Ahmad Tea Green Tea Tin 250 gm",
"Product_Id": "00014421 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4166,
"name": "احمد تى شاى إيرل جراى صفيح 100جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى إيرل جراى صفيح 100جم",
"Product_EN": "Ahmad Tea Earl Gray Tea 100 gm",
"Product_Id": "00014422 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4167,
"name": "احمد تى شاى إنجليزى صفيح 100 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى إنجليزى صفيح 100 جم",
"Product_EN": "Ahmed Tea English Tin 100 gm",
"Product_Id": "00014423 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4168,
"name": "احمد تي شاى اخضر ياسمين 250 جم ",
"price": 59,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تي شاى اخضر ياسمين 250 جم ",
"Product_EN": "Ahmed Tea Jasmine Green Tea 250 gm",
"Product_Id": "00014426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4169,
"name": "احمد تى شاى اخضر 100 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر 100 جم",
"Product_EN": "Ahmed Tea Green Tea 100 gm",
"Product_Id": "00014428 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4170,
"name": "احمد تي شاى اخضر ياسمين 100جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تي شاى اخضر ياسمين 100جم",
"Product_EN": "Ahmed Tea Jasmine Green Tea 100 gm",
"Product_Id": "00014429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4171,
"name": "احمد تى شاى ياسمين 20 فتله فويل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى ياسمين 20 فتله فويل",
"Product_EN": "Ahmed Tea Jasmine Tea 20 Bags ",
"Product_Id": "00014431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4172,
"name": "احمد تى شاى سيلاني 25 فتله",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى سيلاني 25 فتله",
"Product_EN": "Ahmed Tea Ceylon Tea 25 Bags ",
"Product_Id": "00014432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4173,
"name": "احمد تى شاى حبهان 25 فتله",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى حبهان 25 فتله",
"Product_EN": "Ahmad Tea Cardamom Flavor 25 Bags",
"Product_Id": "00014433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4174,
"name": "احمد تى شاى ايرل جراى 20 فتله فويل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى ايرل جراى 20 فتله فويل",
"Product_EN": "Ahmad Tea Earl Gray Tea 20 Bags ",
"Product_Id": "00014434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4175,
"name": "احمد تى شاى فطور انجليزى 20 فتله فويل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى فطور انجليزى 20 فتله فويل",
"Product_EN": "Ahmad Tea English Breakfast Tea 50 Bags",
"Product_Id": "00014435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4176,
"name": "احمد تى شاى فطور انجليزى 20 فتله فويل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى فطور انجليزى 20 فتله فويل",
"Product_EN": "Ahmad Tea English Breakfast Tea 50 Bags",
"Product_Id": "00014436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4177,
"name": "احمد تى شاى بدون كافيين ايفيننج تى20 فتلة فويل",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى بدون كافيين ايفيننج تى20 فتلة فويل",
"Product_EN": "Ahmad Tea Decaffeinated Evening Tea Bags 20 Bags",
"Product_Id": "00014437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4178,
"name": "احمد تى شاى كلاسيك سيلاكشن 20 فتلة ظرف",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى كلاسيك سيلاكشن 20 فتلة ظرف",
"Product_EN": "Ahmad Tea Classic Selection Tea Bags 20 Bags ",
"Product_Id": "00014438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4179,
"name": "بريد واي توست ساده 500 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي توست ساده 500 جم",
"Product_EN": null,
"Product_Id": "00014441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4180,
"name": "بريد واي توست ساده هاف 250 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي توست ساده هاف 250 جم",
"Product_EN": null,
"Product_Id": "00014442 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4181,
"name": "بريد واي توست حليب 500 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي توست حليب 500 جم",
"Product_EN": null,
"Product_Id": "00014443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4182,
"name": "بريد واي توست رده 500 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي توست رده 500 جم",
"Product_EN": null,
"Product_Id": "00014444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4183,
"name": "بريد واي توست رده هاف 250 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي توست رده هاف 250 جم",
"Product_EN": null,
"Product_Id": "00014445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4184,
"name": "بريد واي توست مالتي جرين 500 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي توست مالتي جرين 500 جم",
"Product_EN": null,
"Product_Id": "00014446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4185,
"name": "بريد واي توست بريوش 500 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي توست بريوش 500 جم",
"Product_EN": null,
"Product_Id": "00014447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4186,
"name": "بريد واي توست بدون حواف هاف 300 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي توست بدون حواف هاف 300 جم",
"Product_EN": null,
"Product_Id": "00014448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4187,
"name": "بريد واي خبز برجر بالسمسم 4 قطع",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز برجر بالسمسم 4 قطع",
"Product_EN": null,
"Product_Id": "00014449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4188,
"name": "بريد واي خبز بتي بان 6 قطع",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز بتي بان 6 قطع",
"Product_EN": null,
"Product_Id": "00014450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4189,
"name": "بريد واي خبز سوفت رول 6 قطع",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز سوفت رول 6 قطع",
"Product_EN": null,
"Product_Id": "00014451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4190,
"name": "بريد واي خبز سوبر رول 4 قطع",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز سوبر رول 4 قطع",
"Product_EN": null,
"Product_Id": "00014452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4191,
"name": "بريد واي خبز بان اوليه 6 قطع",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز بان اوليه 6 قطع",
"Product_EN": null,
"Product_Id": "00014453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4192,
"name": "بريد واي خبز بان اوليه شيكولاته 6 قطع",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز بان اوليه شيكولاته 6 قطع",
"Product_EN": null,
"Product_Id": "00014454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4193,
"name": "بريد واي خبز لبناني صغير 5 قطع",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز لبناني صغير 5 قطع",
"Product_EN": null,
"Product_Id": "00014455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4194,
"name": "بريد واي خبز لبناني كبير 5 قطع",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز لبناني كبير 5 قطع",
"Product_EN": null,
"Product_Id": "00014456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4195,
"name": "بريد واي خبز لبناني رده 5 قطع",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز لبناني رده 5 قطع",
"Product_EN": null,
"Product_Id": "00014457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4196,
"name": "بريد واي خبز تورتيلا ساده 5 قطع",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز تورتيلا ساده 5 قطع",
"Product_EN": null,
"Product_Id": "00014458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4197,
"name": "بريد واي خبز تورتيلا رده 5 قطع",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي خبز تورتيلا رده 5 قطع",
"Product_EN": null,
"Product_Id": "00014459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4198,
"name": "بريد واي بقسماط مطحون كبير 450 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي بقسماط مطحون كبير 450 جم",
"Product_EN": null,
"Product_Id": "00014460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4199,
"name": "بريد واي بقسماط مطحون صغير 200 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واي بقسماط مطحون صغير 200 جم",
"Product_EN": null,
"Product_Id": "00014461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4200,
"name": "برنش بقسماط 250 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برنش بقسماط 250 جم",
"Product_EN": null,
"Product_Id": "00014463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4201,
"name": "برنش بقسماط 500 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برنش بقسماط 500 جم",
"Product_EN": null,
"Product_Id": "00014464 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4202,
"name": "دومتى بلس جبنه اسطمبولى 1 كجم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه اسطمبولى 1 كجم",
"Product_EN": "Domty Plus Istanbolly Cheese 1 Kg",
"Product_Id": "00014465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4203,
"name": "كلوركس منظف مطابخ ليمون بخاخ 500 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف مطابخ ليمون بخاخ 500 مل",
"Product_EN": null,
"Product_Id": "00014466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4204,
"name": "كلوركس منظف تواليت بخاخ 500 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف تواليت بخاخ 500 مل",
"Product_EN": null,
"Product_Id": "00014467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4205,
"name": "كلوركس مزيل الفطريات و بقع العفن 500 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس مزيل الفطريات و بقع العفن 500 مل",
"Product_EN": null,
"Product_Id": "00014468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4206,
"name": "سائغ صويا صوص فاتح 175 مل",
"price": 14.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ صويا صوص فاتح 175 مل",
"Product_EN": null,
"Product_Id": "00014469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4207,
"name": "سائغ صويا صوص فاتح 300 مل",
"price": 34.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ صويا صوص فاتح 300 مل",
"Product_EN": null,
"Product_Id": "00014470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4208,
"name": "سائغ صويا صوص فاتح 600 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ صويا صوص فاتح 600 مل",
"Product_EN": null,
"Product_Id": "00014471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4209,
"name": "سائغ صويا صوص غامق 175 مل",
"price": 14.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ صويا صوص غامق 175 مل",
"Product_EN": null,
"Product_Id": "00014472 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4210,
"name": "سائغ صويا صوص غامق 300 مل",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ صويا صوص غامق 300 مل",
"Product_EN": null,
"Product_Id": "00014473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4211,
"name": "سائغ صويا صوص غامق 600 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ صويا صوص غامق 600 مل",
"Product_EN": null,
"Product_Id": "00014474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4212,
"name": "سائغ خل طبيعى 500 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ خل طبيعى 500 مل",
"Product_EN": null,
"Product_Id": "00014475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4213,
"name": "سائغ حل طبيعى 1 لتر",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ حل طبيعى 1 لتر",
"Product_EN": null,
"Product_Id": "00014476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4214,
"name": "سائغ حل تفاح 150 مل",
"price": 14.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ حل تفاح 150 مل",
"Product_EN": null,
"Product_Id": "00014477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4215,
"name": "سائغ خل تفاح 250 مل",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ خل تفاح 250 مل",
"Product_EN": null,
"Product_Id": "00014478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4216,
"name": "سائغ خل عنب 250 مل",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ خل عنب 250 مل",
"Product_EN": null,
"Product_Id": "00014479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4217,
"name": "سائغ خل اعشاب 250 مل",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ خل اعشاب 250 مل",
"Product_EN": null,
"Product_Id": "00014480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4218,
"name": "سائغ ماء ورد 250 مل",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ ماء ورد 250 مل",
"Product_EN": null,
"Product_Id": "00014481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4219,
"name": "سائغ ماء زهر 250 مل",
"price": 14.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ ماء زهر 250 مل",
"Product_EN": null,
"Product_Id": "00014482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4220,
"name": "سائغ زيت حار 250 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ زيت حار 250 مل",
"Product_EN": null,
"Product_Id": "00014483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4221,
"name": "سائغ زيت سمسم 250 مل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ زيت سمسم 250 مل",
"Product_EN": "Sag Sesame oil 250 ml",
"Product_Id": "00014484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4222,
"name": "زاهر جبنه شيدر مبشور 125 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه شيدر مبشور 125 جم",
"Product_EN": "Zaher Grated Cheddar Cheese 125 g",
"Product_Id": "00014485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4223,
"name": "روعه مكرونه فرن 800 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روعه مكرونه فرن 800 جم",
"Product_EN": null,
"Product_Id": "00014486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4224,
"name": "روعه مكرونه خواتم 800 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روعه مكرونه خواتم 800 جم",
"Product_EN": null,
"Product_Id": "00014487 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4225,
"name": "روعه مكرونه مرمريه 800 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روعه مكرونه مرمريه 800 جم",
"Product_EN": null,
"Product_Id": "00014488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4226,
"name": "روعه مكرونه هلاليه 800 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روعه مكرونه هلاليه 800 جم",
"Product_EN": null,
"Product_Id": "00014489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4227,
"name": "روعه شعريه 800 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روعه شعريه 800 جم",
"Product_EN": null,
"Product_Id": "00014490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4228,
"name": "روعه لسان عصفور 800 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روعه لسان عصفور 800 جم",
"Product_EN": null,
"Product_Id": "00014491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4229,
"name": "روعه مكرونه اسباجتي 800 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روعه مكرونه اسباجتي 800 جم",
"Product_EN": null,
"Product_Id": "00014492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4230,
"name": "زينه مناديل سحب 550 منديل * 6 قطع",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل سحب 550 منديل * 6 قطع",
"Product_EN": null,
"Product_Id": "00014493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4231,
"name": "وايت مناديل مطبخ مضغوط 2 بكره ",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت مناديل مطبخ مضغوط 2 بكره ",
"Product_EN": null,
"Product_Id": "00014494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4232,
"name": "ايفونى كمامات كبار 48 ق - علبة",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايفونى كمامات كبار 48 ق - علبة",
"Product_EN": null,
"Product_Id": "00014496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4233,
"name": "ايفونى كمامات اطفال 48 ق - علبة",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايفونى كمامات اطفال 48 ق - علبة",
"Product_EN": null,
"Product_Id": "00014497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4234,
"name": "جود كير كمامات 48 ق - علبة",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "جود كير كمامات 48 ق - علبة",
"Product_EN": null,
"Product_Id": "00014498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4235,
"name": "جو هاند جل معقم لليدين انواع 80 مل",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "جو هاند جل معقم لليدين انواع 80 مل",
"Product_EN": "Go hand Gel Sanitizer 80 ml",
"Product_Id": "00014499 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4236,
"name": "ريحانه ترمس 500 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريحانه ترمس 500 جم",
"Product_EN": null,
"Product_Id": "00014500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4237,
"name": "ريحانه ذرة فيشار 500 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريحانه ذرة فيشار 500 جم",
"Product_EN": null,
"Product_Id": "00014502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4238,
"name": "ليز ستياكس شيبس الاصلى 163 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليز ستياكس شيبس الاصلى 163 جم",
"Product_EN": null,
"Product_Id": "00014505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4239,
"name": "ليز ستياكس شيبس باربيكيو 163 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليز ستياكس شيبس باربيكيو 163 جم",
"Product_EN": null,
"Product_Id": "00014506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4240,
"name": "ليز ستياكس شيبس شيدر 163 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليز ستياكس شيبس شيدر 163 جم",
"Product_EN": null,
"Product_Id": "00014507 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4241,
"name": "ليز ستياكس شيبس كريمة وبصل 163 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليز ستياكس شيبس كريمة وبصل 163 جم",
"Product_EN": null,
"Product_Id": "00014508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4242,
"name": "ميجا شيبس جمبرى 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميجا شيبس جمبرى 100 جم",
"Product_EN": null,
"Product_Id": "00014509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4243,
"name": "ميجا شيبس استاكوزا 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميجا شيبس استاكوزا 100 جم",
"Product_EN": null,
"Product_Id": "00014510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4244,
"name": "ميجا شيبس كريمة و بصل 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميجا شيبس كريمة و بصل 100 جم",
"Product_EN": null,
"Product_Id": "00014511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4245,
"name": "ميجا شيبس فراخ 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميجا شيبس فراخ 100 جم",
"Product_EN": null,
"Product_Id": "00014512 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4246,
"name": "ميجا شيبس كريمة و جبنة 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميجا شيبس كريمة و جبنة 100 جم",
"Product_EN": null,
"Product_Id": "00014513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4247,
"name": "ميجا شيبس كريمة و مشروم 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميجا شيبس كريمة و مشروم 100 جم",
"Product_EN": null,
"Product_Id": "00014514 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4248,
"name": "ميجا شيبس فلفل اكستريم 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميجا شيبس فلفل اكستريم 100 جم",
"Product_EN": null,
"Product_Id": "00014515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4249,
"name": "نصف عجل وزن - بوم استلام",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نصف عجل وزن - بوم استلام",
"Product_EN": null,
"Product_Id": "00014516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4250,
"name": "ناجلا عجينة طعميه بيتي مجمده 500 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ناجلا عجينة طعميه بيتي مجمده 500 جم",
"Product_EN": null,
"Product_Id": "00014517 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4251,
"name": "زاهر برجر بلدى مجمد وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر برجر بلدى مجمد وزن",
"Product_EN": "Zaher Burger Baladi Frozen - Scalable ",
"Product_Id": "00014518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4252,
"name": "زاهر كفتة بلدى مجمد وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر كفتة بلدى مجمد وزن",
"Product_EN": "Zaher Kofta Baladi Frozen - Scalable ",
"Product_Id": "00014519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4253,
"name": "زاهر سجق بلدى مجمد وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر سجق بلدى مجمد وزن",
"Product_EN": "Zaher Sausage Baladi Frozen - Scalable ",
"Product_Id": "00014520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4254,
"name": "ريتش لانشون بقرى قطع لحم \/ بسطرمه وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش لانشون بقرى قطع لحم \/ بسطرمه وزن",
"Product_EN": "Rich Beef luncheon Meat \/ Pastrami - Scalable",
"Product_Id": "00014521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4255,
"name": "زاهر ايس كريم بالعسل وزن",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم بالعسل وزن",
"Product_EN": "Zaher Ice Cream with Honey - Scalable ",
"Product_Id": "00014522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4256,
"name": "زاهر ايس كريم جندويا وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم جندويا وزن",
"Product_EN": "Zaher Janduya Ice Cream - Scalable ",
"Product_Id": "00014523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4257,
"name": "جاردينو باربكيو صوص 220 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جاردينو باربكيو صوص 220 جم",
"Product_EN": null,
"Product_Id": "00014524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4258,
"name": "عطاره . فول اكسترا نكهات وزن",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فول اكسترا نكهات وزن",
"Product_EN": null,
"Product_Id": "00014525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4259,
"name": "عطاره . ذرة محمص وزن",
"price": 51.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ذرة محمص وزن",
"Product_EN": null,
"Product_Id": "00014526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4260,
"name": "عطاره . مقرمشات مشكله وزن",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مقرمشات مشكله وزن",
"Product_EN": null,
"Product_Id": "00014527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4261,
"name": "عطاره . مقرمشات كونو وزن",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مقرمشات كونو وزن",
"Product_EN": "Attara Kono Crackers - Scalable ",
"Product_Id": "00014528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4262,
"name": "عطاره . مقرمشات اشكال وزن",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مقرمشات اشكال وزن",
"Product_EN": null,
"Product_Id": "00014529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4263,
"name": "بوم بلاست اكياس حرارى للفرن كبير43*60سم 2 ق",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "بوم بلاست اكياس حرارى للفرن كبير43*60سم 2 ق",
"Product_EN": null,
"Product_Id": "00014531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4264,
"name": "بوم بلاست اكياس حرارى للفرن صغير25*38سم 5 ق",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "بوم بلاست اكياس حرارى للفرن صغير25*38سم 5 ق",
"Product_EN": null,
"Product_Id": "00014532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4265,
"name": "بوم بلاست رول قمامه70*90 سم نفايات صلبه 500 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "بوم بلاست رول قمامه70*90 سم نفايات صلبه 500 جم",
"Product_EN": null,
"Product_Id": "00014533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4266,
"name": "هاجدو لبنه مستورده وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هاجدو لبنه مستورده وزن",
"Product_EN": null,
"Product_Id": "00014534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4267,
"name": "ريحانه فول مجروش 500 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريحانه فول مجروش 500 جم",
"Product_EN": null,
"Product_Id": "00014535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4268,
"name": "ريحانه حمص الشام 500 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريحانه حمص الشام 500 جم",
"Product_EN": null,
"Product_Id": "00014536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4269,
"name": "ريحانه عدس بجبه 500 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريحانه عدس بجبه 500 جم",
"Product_EN": null,
"Product_Id": "00014537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4270,
"name": "ريحانه قمح مبشور 500 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريحانه قمح مبشور 500 جم",
"Product_EN": null,
"Product_Id": "00014539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4271,
"name": "نستله نيدو الاساسي لبن بالشاي 25 جم",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نيدو الاساسي لبن بالشاي 25 جم",
"Product_EN": null,
"Product_Id": "00014541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4272,
"name": "بوم بلاست غلق ذاتى 27*30 سم 20 ق",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "بوم بلاست غلق ذاتى 27*30 سم 20 ق",
"Product_EN": null,
"Product_Id": "00014542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4273,
"name": "ساميانج صوص النودلز الكورى بنكهة الدجاج حار 200 جم",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ساميانج صوص النودلز الكورى بنكهة الدجاج حار 200 جم",
"Product_EN": null,
"Product_Id": "00014543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4274,
"name": "صوص النودلز الكورى بنكهة الدجاج حار 200 جم - موقوف",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صوص النودلز الكورى بنكهة الدجاج حار 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00014544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4275,
"name": "ساميانج نودلز كورى بنكهة اللحم المقدد 150 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ساميانج نودلز كورى بنكهة اللحم المقدد 150 جم",
"Product_EN": null,
"Product_Id": "00014545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4276,
"name": "بوم بلاست رول قمامه 90*120 H D",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "بوم بلاست رول قمامه 90*120 H D",
"Product_EN": null,
"Product_Id": "00014547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4277,
"name": "بوم بلاست اكياس غلق ذاتى للثلاجه 20*20 40 رول",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "بوم بلاست اكياس غلق ذاتى للثلاجه 20*20 40 رول",
"Product_EN": null,
"Product_Id": "00014548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4278,
"name": "دومتى بلس جبنه بطعم الزيتون 125 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه بطعم الزيتون 125 جم",
"Product_EN": "Domty Feta Plus Cheese With Olives 125 gm",
"Product_Id": "00014549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4279,
"name": "دومتى بلس جبنه بطعم الزيتون 1 كجم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه بطعم الزيتون 1 كجم",
"Product_EN": "Domty Feta Plus Cheese With Olives 1 Kg",
"Product_Id": "00014550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4280,
"name": "برينجلز الحار بنكهة الشواء الحار 160 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برينجلز الحار بنكهة الشواء الحار 160 جم",
"Product_EN": "Pringles Spicy BBQ Flavor 160 gm",
"Product_Id": "00014552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4281,
"name": "برنجلز شيبسى حار جدا بطعم الجبن والفلفل 160 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برنجلز شيبسى حار جدا بطعم الجبن والفلفل 160 جم",
"Product_EN": "Pringles Sizzl'n Extra Hot Cheese & Chilli 160 gm",
"Product_Id": "00014553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4282,
"name": "مولتو باتية شيكولاتة 1 قطعه ",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مولتو باتية شيكولاتة 1 قطعه ",
"Product_EN": "Molto Pate Chocolate 1 Piece",
"Product_Id": "00005051 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4283,
"name": "زاهر ترايفل فاكهه كبير - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ترايفل فاكهه كبير - موقوف",
"Product_EN": null,
"Product_Id": "00005052 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4284,
"name": "سيناوى هريسه شطه - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيناوى هريسه شطه - موقوف",
"Product_EN": null,
"Product_Id": "00005053 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4285,
"name": "سوهاجى سكر مطحون 500 جم",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى سكر مطحون 500 جم",
"Product_EN": " Suhagy Sugar Powder 500 gm",
"Product_Id": "00005054 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4286,
"name": "سوهاجى سكر مطحون 1 كجم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى سكر مطحون 1 كجم",
"Product_EN": " Suhagy Sugar Powder 1 kg",
"Product_Id": "00005055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4287,
"name": "زاهر ريد فيلفيت بالبسبوسه - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ريد فيلفيت بالبسبوسه - موقوف",
"Product_EN": null,
"Product_Id": "00005056 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4288,
"name": "كوالتى بنبون فواكة 90 جم",
"price": 3.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوالتى بنبون فواكة 90 جم",
"Product_EN": null,
"Product_Id": "00005057 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4289,
"name": "حلوانى لانشون بهار وزن - موقوف",
"price": 96,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى لانشون بهار وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005058 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4290,
"name": "حلوانى لانشون فراخ ساده وزن",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى لانشون فراخ ساده وزن",
"Product_EN": "Halwani Chicken Luncheon - Weight ",
"Product_Id": "00005059 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4291,
"name": "اكس مزيل عرق 150 مل بلاك - موقوف",
"price": 47.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس مزيل عرق 150 مل بلاك - موقوف",
"Product_EN": null,
"Product_Id": "00005060 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4292,
"name": "اكس مزيل عرق يو 150 مل - موقوف",
"price": 47.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس مزيل عرق يو 150 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005062 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4293,
"name": "ليبتون شاى انجليزى 25 فتلة - موقوف",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى انجليزى 25 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00005063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4294,
"name": "ارو قواعد تواليت 20 ق",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو قواعد تواليت 20 ق",
"Product_EN": null,
"Product_Id": "00005064 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4295,
"name": "اروارو طبق مستطيل 5 ق",
"price": 19.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "اروارو طبق مستطيل 5 ق",
"Product_EN": null,
"Product_Id": "00005065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4296,
"name": "فيتنيس رقائق شوفان فواكه 375 جم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتنيس رقائق شوفان فواكه 375 جم",
"Product_EN": null,
"Product_Id": "00005066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4297,
"name": "نستلة فيتنس طعام الافطار 375 جم - موقوف",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستلة فيتنس طعام الافطار 375 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005067 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4298,
"name": "توك بسكويت بالجبنة 24 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توك بسكويت بالجبنة 24 جم",
"Product_EN": "TUC Biscuit Cheese 24 gm",
"Product_Id": "00005068 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4299,
"name": "جلاكسى شوكولاتة 36 جم 4 ق+ 1 ق",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة 36 جم 4 ق+ 1 ق",
"Product_EN": "Galaxy Chocolate 36 g 4 Pieces+1 Pieces ",
"Product_Id": "00005069 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4300,
"name": "جلاكسى فلوتس شوكولاتة 4 ق + 1 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى فلوتس شوكولاتة 4 ق + 1 ق",
"Product_EN": "Galaxy Flutes Chocolate 4 Pieces + 1 Pieces",
"Product_Id": "00005070 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4301,
"name": "جلاكسى شوكولاتة مالتى باك 4 ق + 1 ق",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة مالتى باك 4 ق + 1 ق",
"Product_EN": "Galaxy Chocolate Multipack 4 Pieces + 1 Pieces",
"Product_Id": "00005071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4302,
"name": "بيت فود شربات رمان مركز 850 مل - موقوف",
"price": 16.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيت فود شربات رمان مركز 850 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005072 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4303,
"name": "ريتش بيك بيتى بان بلس",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك بيتى بان بلس",
"Product_EN": null,
"Product_Id": "00005073 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4304,
"name": "لوكس سائل غسيل للايدى 500 جم ",
"price": 49.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس سائل غسيل للايدى 500 جم ",
"Product_EN": "LUX Hand Wash liquid 500 gm",
"Product_Id": "00005074 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4305,
"name": "صنسيلك شامبو 400مل+ زيت 75مل عرض - موقوف",
"price": 29.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صنسيلك شامبو 400مل+ زيت 75مل عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005075 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4306,
"name": "ديزنى بيضه 25 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديزنى بيضه 25 جم",
"Product_EN": null,
"Product_Id": "00005076 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4307,
"name": "بيضه مفاجأه لعبه 12 جم - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيضه مفاجأه لعبه 12 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4308,
"name": "ترافيل شيكولاتة فراولة",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ترافيل شيكولاتة فراولة",
"Product_EN": null,
"Product_Id": "00005078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4309,
"name": "ترافيل شيكولاتة محشو شيكولاتة 160 ق - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ترافيل شيكولاتة محشو شيكولاتة 160 ق - موقوف",
"Product_EN": null,
"Product_Id": "00005079 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4310,
"name": "ترايفل شيكولاتة جوز هند",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ترايفل شيكولاتة جوز هند",
"Product_EN": null,
"Product_Id": "00005080 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4311,
"name": "كيت كات شوكولاتة شانكى 40جم",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة شانكى 40جم",
"Product_EN": "Kit Kat Chunky Chocolate 40 gm",
"Product_Id": "00005081 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4312,
"name": "كيت كات شانكى شوكولاتة بيضاء 40 جم",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شانكى شوكولاتة بيضاء 40 جم",
"Product_EN": "Kit Kat Chunky White Chocolate 40 gm",
"Product_Id": "00005082 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4313,
"name": "جليد جهاز 3*1 + غيار",
"price": 145,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد جهاز 3*1 + غيار",
"Product_EN": null,
"Product_Id": "00005083 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4314,
"name": "هاربيك منظف حمام 200 مل",
"price": 7.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك منظف حمام 200 مل",
"Product_EN": null,
"Product_Id": "00005084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4315,
"name": "مستر ماسل بطه 500 مل باور",
"price": 15.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسل بطه 500 مل باور",
"Product_EN": null,
"Product_Id": "00005085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4316,
"name": "فينش ملح غسالات اطباق 2 كجم",
"price": 128,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فينش ملح غسالات اطباق 2 كجم",
"Product_EN": null,
"Product_Id": "00005086 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4317,
"name": "ديتول متعدد الاغراض لافندر 200 مل",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول متعدد الاغراض لافندر 200 مل",
"Product_EN": null,
"Product_Id": "00005087 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4318,
"name": "ديتول منظف متعدد الاغراض 500 مل ورد ",
"price": 31.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول منظف متعدد الاغراض 500 مل ورد ",
"Product_EN": null,
"Product_Id": "00005088 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4319,
"name": "ديتول متعدد الاغراض 500 مل تفاح",
"price": 31.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول متعدد الاغراض 500 مل تفاح",
"Product_EN": null,
"Product_Id": "00005089 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4320,
"name": "ريد سوبر للحشرات الطائره 300 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ريد سوبر للحشرات الطائره 300 مل",
"Product_EN": null,
"Product_Id": "00005090 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4321,
"name": "بالموليف صابون 175 جم برتقال ",
"price": 12.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بالموليف صابون 175 جم برتقال ",
"Product_EN": null,
"Product_Id": "00005091 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4322,
"name": "بالموليف صابون 175 جم بابونج",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بالموليف صابون 175 جم بابونج",
"Product_EN": null,
"Product_Id": "00005092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4323,
"name": "بالموليف صابون 175 جم ورد",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بالموليف صابون 175 جم ورد",
"Product_EN": null,
"Product_Id": "00005093 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4324,
"name": "بالموليف صابون 175 جم اعشاب ",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بالموليف صابون 175 جم اعشاب ",
"Product_EN": null,
"Product_Id": "00005094 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4325,
"name": "اريال مسحوق يدوى 20 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 20 جم",
"Product_EN": null,
"Product_Id": "00005095 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4326,
"name": "دريم كريم كراميل + جيلى عرض - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كريم كراميل + جيلى عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005096 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4327,
"name": "دريم ايس كريم بودر مانجو 80 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم ايس كريم بودر مانجو 80 جم",
"Product_EN": "Dream Ice Cream Mango Powder 80 gm",
"Product_Id": "00005097 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4328,
"name": "دريم جيلى فراولة 70 جم * 3 قطع",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم جيلى فراولة 70 جم * 3 قطع",
"Product_EN": "Dream Jelly Strawberry 70 gm * 3 Pieces",
"Product_Id": "00005099 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4329,
"name": "دريم بيكنج بودر 16 جم",
"price": 1.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم بيكنج بودر 16 جم",
"Product_EN": "Dreem Baking Powder 16 gm",
"Product_Id": "00005100 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4330,
"name": "دريم كريمه حشو شوكولاتة بندق 100 جم ",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كريمه حشو شوكولاتة بندق 100 جم ",
"Product_EN": "Dreem Filling Cream Chocolate Hazelnut 100 gm",
"Product_Id": "00005101 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4331,
"name": "دريم كريمه حشو فراوله 100 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كريمه حشو فراوله 100 جم",
"Product_EN": "Dreem Filling Cream Strawberry 100 gm",
"Product_Id": "00005102 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4332,
"name": "دريم مسحوق لقمه القاضى 200 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق لقمه القاضى 200 جم",
"Product_EN": "Dreem Dumpling Mix 200 gm",
"Product_Id": "00005103 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4333,
"name": "دريم كريم شانتيه 500 جم",
"price": 41.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كريم شانتيه 500 جم",
"Product_EN": "Dreem Whipped Topping 500 gm",
"Product_Id": "00005104 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4334,
"name": "رول استريتش 40 سم",
"price": 235,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "رول استريتش 40 سم",
"Product_EN": null,
"Product_Id": "00005105 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4335,
"name": "صن بايتس زيتون وزعتر 64 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن بايتس زيتون وزعتر 64 جم",
"Product_EN": null,
"Product_Id": "00005106 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4336,
"name": "دانجو زبادى فراوله 4 ق 105 جم وفر 1ج",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو زبادى فراوله 4 ق 105 جم وفر 1ج",
"Product_EN": "Dango Strawberry Yogurt 4 Pieces 105 gm Save1Pound",
"Product_Id": "00005107 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4337,
"name": "فيبا سائل تنظيف اطباق بالليمون الأخضر 4 لتر",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق بالليمون الأخضر 4 لتر",
"Product_EN": null,
"Product_Id": "00005108 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4338,
"name": "برسيل مسحوق يدوى 400 جم - موقوف",
"price": 8.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005109 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4339,
"name": "مولتو باتية بالعجوه 1 قطعه ",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو باتية بالعجوه 1 قطعه ",
"Product_EN": "Molto Pate Dates 1 Pieces ",
"Product_Id": "00005110 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4340,
"name": "المراعى حليب كامل الدسم 1 لتر",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب كامل الدسم 1 لتر",
"Product_EN": "Al Marai Full Cream Milk 1 L",
"Product_Id": "00005112 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4341,
"name": "باناسونيك حجاره ريموت 4 قلم",
"price": 18.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "باناسونيك حجاره ريموت 4 قلم",
"Product_EN": null,
"Product_Id": "00005113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4342,
"name": "باناسونيك حجاره قلم 4 حجر",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "باناسونيك حجاره قلم 4 حجر",
"Product_EN": null,
"Product_Id": "00005114 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4343,
"name": "فارم فريتس بطاطس بوم فريت 1 كجم عرض - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس بطاطس بوم فريت 1 كجم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4344,
"name": "بيفى كاند بيف 340 جم - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيفى كاند بيف 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4345,
"name": "بيفى بولو 350 جم - موقوف",
"price": 7.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيفى بولو 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4346,
"name": "بيفى برجر 10 قطع - موقوف",
"price": 19.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيفى برجر 10 قطع - موقوف",
"Product_EN": null,
"Product_Id": "00005124 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4347,
"name": "بيفى برجر 20 قطع - موقوف",
"price": 32.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيفى برجر 20 قطع - موقوف",
"Product_EN": null,
"Product_Id": "00005125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4348,
"name": "بيفى كفته شيش 900 جم - موقوف",
"price": 42.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيفى كفته شيش 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005128 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4349,
"name": "بيفى كفته شيش 350 جم - موقوف",
"price": 19.3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيفى كفته شيش 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4350,
"name": "بيفى سجق 900 جم - موقوف",
"price": 49.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيفى سجق 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4351,
"name": "بيفى سجق 350 جم - موقوف",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيفى سجق 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005131 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4352,
"name": "بيفى مفروم 900 جم - موقوف",
"price": 57.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيفى مفروم 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4353,
"name": "بيفى مفروم 350 جم - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيفى مفروم 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4354,
"name": "بيفى هوت دوج 900 جم - موقوف",
"price": 42.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيفى هوت دوج 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4355,
"name": "علبه سيكيور 40 سم",
"price": 1.8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علبه سيكيور 40 سم",
"Product_EN": null,
"Product_Id": "00005135 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4356,
"name": "علبه ايس كريم كبير 1 كجم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علبه ايس كريم كبير 1 كجم",
"Product_EN": null,
"Product_Id": "00005136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4357,
"name": "غطاء علبه ايس كريم كبير 1 كجم",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "غطاء علبه ايس كريم كبير 1 كجم",
"Product_EN": null,
"Product_Id": "00005137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4358,
"name": "زاهر ملح خشن وزن - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر ملح خشن وزن - موقوف",
"Product_EN": "Zaher Coarse Salt - Scalable ",
"Product_Id": "00005138 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4359,
"name": "هيلثى كافيه 2*1 ظرف - موقوف",
"price": 1.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى كافيه 2*1 ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00005139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4360,
"name": "المثالى سردين قطع حار 125 جم - موقوف",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى سردين قطع حار 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4361,
"name": "ليبتون شاى خرز 100 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى خرز 100 جم",
"Product_EN": "Lipton Kharaz Tea 100 gm",
"Product_Id": "00005141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4362,
"name": "زينه كلاسيك مناديل علب 600 منديل",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه كلاسيك مناديل علب 600 منديل",
"Product_EN": null,
"Product_Id": "00005143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4363,
"name": "زينه مناديل مطبخ مضغوط 4 بكرة",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل مطبخ مضغوط 4 بكرة",
"Product_EN": null,
"Product_Id": "00005144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4364,
"name": "صن بايتس مخبوزات مقرمشه 65 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن بايتس مخبوزات مقرمشه 65 جم",
"Product_EN": null,
"Product_Id": "00005145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4365,
"name": "فيتراك شربات رمان 850 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات رمان 850 مل",
"Product_EN": null,
"Product_Id": "00005146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4366,
"name": "فيتراك مربى تين 245جم - موقوف",
"price": 7.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 245جم - موقوف",
"Product_EN": null,
"Product_Id": "00005147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4367,
"name": "شويبس رمان بلاستيك 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس رمان بلاستيك 1 لتر",
"Product_EN": "Schweppes Pomegranate Plastic 1 L",
"Product_Id": "00005148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4368,
"name": "شويبس يوسفى 1 لتر - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس يوسفى 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4369,
"name": "الربيع طحينه ظرف 25جم - موقوف",
"price": 1.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع طحينه ظرف 25جم - موقوف",
"Product_EN": null,
"Product_Id": "00005150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4370,
"name": "المثالى تونه مفتته 140 جم - موقوف",
"price": 12.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى تونه مفتته 140 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005151 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4371,
"name": "الطاهيه فول مدمس بالحمص 400 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه فول مدمس بالحمص 400 جم",
"Product_EN": "Al Tahya Fava With Chickpeas 400 gm",
"Product_Id": "00005152 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4372,
"name": "جهينه بيور عصير برتقال 1 لتر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيور عصير برتقال 1 لتر",
"Product_EN": "Juhayna Pure Orange Juice1 L",
"Product_Id": "00005153 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4373,
"name": "برينجلز رقائق بطاطس 40جم ملح - موقوف",
"price": 11.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برينجلز رقائق بطاطس 40جم ملح - موقوف",
"Product_EN": null,
"Product_Id": "00005154 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4374,
"name": "ميربا كوكيز الكريز 25جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميربا كوكيز الكريز 25جم - موقوف",
"Product_EN": null,
"Product_Id": "00005155 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4375,
"name": "كيت كات شيكولاتة 4 صوابع *2ق - موقوف",
"price": 9.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شيكولاتة 4 صوابع *2ق - موقوف",
"Product_EN": null,
"Product_Id": "00005156 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4376,
"name": "المراعى زبادى لايت 105 جم 5+1 عرض",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى لايت 105 جم 5+1 عرض",
"Product_EN": "Almarai Yogurt Light 105gm 5+1 - Offer",
"Product_Id": "00005157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4377,
"name": "حلوانى حبش رومى مدخن وزن",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى حبش رومى مدخن وزن",
"Product_EN": " Smoked Turkey Breast",
"Product_Id": "00005158 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4378,
"name": "هاريبو هابى كولا 17 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو هابى كولا 17 جم",
"Product_EN": "Haribo Happy Cola 17 gm",
"Product_Id": "00005159 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4379,
"name": "روابى سمنه نباتى 2.5 كجم",
"price": 59.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روابى سمنه نباتى 2.5 كجم",
"Product_EN": "Rawaby Vegetable Ghee 2.5 Kg",
"Product_Id": "00005160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4380,
"name": "جنه سمنه نباتى 2.5 كجم",
"price": 59.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جنه سمنه نباتى 2.5 كجم",
"Product_EN": "Ganna Vegetable Ghee 2.5 Kg",
"Product_Id": "00005161 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4381,
"name": "نستله نسكافيه جولد كابتشينو محلي 18 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه جولد كابتشينو محلي 18 جم",
"Product_EN": null,
"Product_Id": "00005162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4382,
"name": "شويبس جولد فراوله كانز 330 مل - موقوف",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس جولد فراوله كانز 330 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005163 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4383,
"name": "امريكانا باميه اكسترا مجمد 400 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا باميه اكسترا مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00005164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4384,
"name": "زاهر جبنه رومى مفروم وزن",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه رومى مفروم وزن",
"Product_EN": "Zaher Minced Roumi Cheese -Scalable ",
"Product_Id": "00005166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4385,
"name": "البطريق جبنه فيتا وزن - موقوف",
"price": 31.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "البطريق جبنه فيتا وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005167 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4386,
"name": "بيك رولز بالبيتزا 112جم ",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز بالبيتزا 112جم ",
"Product_EN": null,
"Product_Id": "00005168 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4387,
"name": "زاهر زيت حبه البركه 100 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر زيت حبه البركه 100 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005169 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4388,
"name": "الضحى فلفل بلدى قرون مطحون 20 جم",
"price": 3.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى فلفل بلدى قرون مطحون 20 جم",
"Product_EN": "Al Doha Bell Pepper Crushed 20 gm",
"Product_Id": "00005170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4389,
"name": "الضحى كمون ناعم20 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى كمون ناعم20 جم",
"Product_EN": "Al Doha Milled Cumin 20 gm",
"Product_Id": "00005171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4390,
"name": "العلى بهارات كبسه 35 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى بهارات كبسه 35 جم",
"Product_EN": null,
"Product_Id": "00005172 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4391,
"name": "العلى قرنفل 10 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى قرنفل 10 جم",
"Product_EN": null,
"Product_Id": "00005173 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4392,
"name": "تينجز فروت رينجز 250 جم ",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:41",
"updated_at": "2021-11-01 19:45:41",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تينجز فروت رينجز 250 جم ",
"Product_EN": null,
"Product_Id": "00005174 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4393,
"name": "تينجز سويت فليكس 250 جم ",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تينجز سويت فليكس 250 جم ",
"Product_EN": null,
"Product_Id": "00005175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4394,
"name": "تينجز شوكو فليكس 250 جم ",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تينجز شوكو فليكس 250 جم ",
"Product_EN": null,
"Product_Id": "00005176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4395,
"name": "جينرال منظف ارضيات 3 لتر - موقوف",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف ارضيات 3 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4396,
"name": "اريال مسحوق يدوى 60 جم +10 جم - موقوف",
"price": 1.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 60 جم +10 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005179 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4397,
"name": "الطحان علبه شفاف 300 جم",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان علبه شفاف 300 جم",
"Product_EN": null,
"Product_Id": "00005180 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4398,
"name": "الطحان تمور سكرى 465 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان تمور سكرى 465 جم",
"Product_EN": null,
"Product_Id": "00005181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4399,
"name": "لافاش جبنة مثلثات 96 ق",
"price": 148,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة مثلثات 96 ق",
"Product_EN": "LaVache Triangles Cheese 96 Pieces",
"Product_Id": "00005183 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4400,
"name": "كوب بلاستيك ابيض 3 ق - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوب بلاستيك ابيض 3 ق - موقوف",
"Product_EN": null,
"Product_Id": "00005184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4401,
"name": "فيبا سائل تنظيف اطباق 4 كجم ",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق 4 كجم ",
"Product_EN": null,
"Product_Id": "00005185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4402,
"name": "بيك اب شيكولاتة شوكو 28 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك اب شيكولاتة شوكو 28 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005186 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4403,
"name": "زاهر حبوب لقاح وزن - موقوف",
"price": 300,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر حبوب لقاح وزن - موقوف",
"Product_EN": "Zaher Bee Pollen - Scalable",
"Product_Id": "00005187 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4404,
"name": "كلاس ايه ستروب وافل حليب وعسل 30 جم",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاس ايه ستروب وافل حليب وعسل 30 جم",
"Product_EN": null,
"Product_Id": "00005188 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4405,
"name": "كلاس ايه ستروب وافل كراميل 30 جم",
"price": 141,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاس ايه ستروب وافل كراميل 30 جم",
"Product_EN": null,
"Product_Id": "00005189 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4406,
"name": "تستي رول مانجو - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تستي رول مانجو - موقوف",
"Product_EN": null,
"Product_Id": "00005190 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4407,
"name": "اجا عصير اناناس حبيبات 240مل - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اجا عصير اناناس حبيبات 240مل - موقوف",
"Product_EN": null,
"Product_Id": "00005192 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4408,
"name": "اجا عصير مانجوحبيبات 240 م - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اجا عصير مانجوحبيبات 240 م - موقوف",
"Product_EN": null,
"Product_Id": "00005193 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4409,
"name": "اجا عصير خوخ حبيبات 240م - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اجا عصير خوخ حبيبات 240م - موقوف",
"Product_EN": null,
"Product_Id": "00005194 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4410,
"name": "بامبرز سعودى عنايه 64 مقاس 3 - موقوف",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز سعودى عنايه 64 مقاس 3 - موقوف",
"Product_EN": null,
"Product_Id": "00005195 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4411,
"name": "بامبرز سعودى عنايه 64 مقاس 2 - موقوف",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز سعودى عنايه 64 مقاس 2 - موقوف",
"Product_EN": null,
"Product_Id": "00005196 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4412,
"name": "بامبرز سعودى عنايه 22 مقاس 1 - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز سعودى عنايه 22 مقاس 1 - موقوف",
"Product_EN": null,
"Product_Id": "00005197 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4413,
"name": "بامبرز سعودى عنايه 8 مقاس 4 - موقوف",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز سعودى عنايه 8 مقاس 4 - موقوف",
"Product_EN": null,
"Product_Id": "00005198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4414,
"name": "بامبرز سعودى عنايه 8 مقاس 5 - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز سعودى عنايه 8 مقاس 5 - موقوف",
"Product_EN": null,
"Product_Id": "00005199 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4415,
"name": "بانتين بديل الزيت 350 مل - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بديل الزيت 350 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005200 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4416,
"name": "عبور لاند جبنه فيتا شطه 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا شطه 500 جم",
"Product_EN": "Obour Land Chili Feta Cheese 500 gm",
"Product_Id": "00005201 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4417,
"name": "فيتراك مربى فراوله 450 جم - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 450 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4418,
"name": "فيتراك مربى مشمش 900 جم - موقوف",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005203 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4419,
"name": "فيتراك مربى مشمش 450 جم _ موقوف",
"price": 11.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 450 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00005204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4420,
"name": "فيتراك شيكولاتة بندق كريمى 400 جم",
"price": 51.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شيكولاتة بندق كريمى 400 جم",
"Product_EN": null,
"Product_Id": "00005205 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4421,
"name": "فلو مياه الكالين 600 مل",
"price": 7.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلو مياه الكالين 600 مل",
"Product_EN": null,
"Product_Id": "00005207 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4422,
"name": "دايجيستيف بسكويت قمح ساده 28.6 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجيستيف بسكويت قمح ساده 28.6 جم",
"Product_EN": null,
"Product_Id": "00005208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4423,
"name": "بسطرمة بلدى وزن",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسطرمة بلدى وزن",
"Product_EN": null,
"Product_Id": "00005209 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4424,
"name": "ليبتون شاى ناعم 500 جم - عرض",
"price": 51.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى ناعم 500 جم - عرض",
"Product_EN": "Lipton Dust Tea 500 gm - Offer",
"Product_Id": "00005210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4425,
"name": "ليبتون شاى اخضر ياسمين 25 فتلة - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر ياسمين 25 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00005211 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4426,
"name": "ليبتون شاى تفاح 25 فتلة - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى تفاح 25 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00005212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4427,
"name": "كمفورت منعم ملابس طبيعى 1 لتر 15 %",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس طبيعى 1 لتر 15 %",
"Product_EN": "Comfort Natural Fabric Softener 1 L 15%",
"Product_Id": "00005213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4428,
"name": "كمفورت منعم ملابس لبنى 2 لتر ",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس لبنى 2 لتر ",
"Product_EN": null,
"Product_Id": "00005214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4429,
"name": "لوكس شاور 250+ لوف كالحرير",
"price": 22.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس شاور 250+ لوف كالحرير",
"Product_EN": "Comfort Fabric Softener Brown 2 L",
"Product_Id": "00005215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4430,
"name": "حدائق كاليفورنيا تونه شرائح زيت عباد الشمس 120 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونه شرائح زيت عباد الشمس 120 جم",
"Product_EN": "California Garden Tuna Slices Sunflower Oil 120 gm",
"Product_Id": "00005216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4431,
"name": "حدائق كاليفورنيا تونه شرائح فلفل حار 120 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونه شرائح فلفل حار 120 جم",
"Product_EN": "California Garden Tuna Slices Chili 120 gm",
"Product_Id": "00005217 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4432,
"name": "حدائق كاليفورنيا تونه شرائح فلفل اسود وليمون 120 ج",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونه شرائح فلفل اسود وليمون 120 ج",
"Product_EN": "California Tuna Slices Black Pepper & Lemon 120 gm",
"Product_Id": "00005218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4433,
"name": "حدائق كاليفورنيا حمص مسلوق 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا حمص مسلوق 400 جم",
"Product_EN": "California Garden Ready to Eat Chick Peas 400 gm",
"Product_Id": "00005219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4434,
"name": "حدائق كاليفورنيا تونه شرائح مدخنة 120 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونه شرائح مدخنة 120 جم",
"Product_EN": "California Garden Smoked Tuna Slices 120 gm",
"Product_Id": "00005220 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4435,
"name": "اولكر بسكريم ديو 20 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكريم ديو 20 جم",
"Product_EN": null,
"Product_Id": "00005223 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4436,
"name": "هالى بسكويت مارشميلو شيكولاتة 26 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هالى بسكويت مارشميلو شيكولاتة 26 جم",
"Product_EN": null,
"Product_Id": "00005224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4437,
"name": "غطاء علبه ايس كريم 4 اونز ( 1بوله مطبوع) - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "غطاء علبه ايس كريم 4 اونز ( 1بوله مطبوع) - موقوف",
"Product_EN": null,
"Product_Id": "00005225 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4438,
"name": "غطاء علبه ايس كريم 6 اونز (2 بوله مطبوع ) - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "غطاء علبه ايس كريم 6 اونز (2 بوله مطبوع ) - موقوف",
"Product_EN": null,
"Product_Id": "00005226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4439,
"name": "كلوركس منظف الوان احمر 475مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف الوان احمر 475مل",
"Product_EN": null,
"Product_Id": "00005227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4440,
"name": "كلوركس منظف الوان ازرق 475مل",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف الوان ازرق 475مل",
"Product_EN": null,
"Product_Id": "00005228 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4441,
"name": "كلوركس نسيم الغابة 950مل",
"price": 7.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس نسيم الغابة 950مل",
"Product_EN": null,
"Product_Id": "00005229 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4442,
"name": "كلوركس ليمون 950 مل",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس ليمون 950 مل",
"Product_EN": null,
"Product_Id": "00005230 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4443,
"name": "بشاير عصير تفاح 200 مل",
"price": 1.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بشاير عصير تفاح 200 مل",
"Product_EN": "Bashayer Apple Juice 200 ml",
"Product_Id": "00005232 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4444,
"name": "بشاير عصير اناناس 200 مل",
"price": 1.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بشاير عصير اناناس 200 مل",
"Product_EN": "Bashayer Pineapple Juice 200 ml",
"Product_Id": "00005233 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4445,
"name": "زاهر ارز باللبن دعايه 135 جم - موقوف",
"price": 1.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ارز باللبن دعايه 135 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4446,
"name": "برانش بار كيك ذهبى",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش بار كيك ذهبى",
"Product_EN": null,
"Product_Id": "00005235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4447,
"name": "برانش بار كيك شيكولاتة",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش بار كيك شيكولاتة",
"Product_EN": null,
"Product_Id": "00005236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4448,
"name": "فانش مزيل بقع سائل 940ملل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش مزيل بقع سائل 940ملل",
"Product_EN": null,
"Product_Id": "00005239 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4449,
"name": "هاربيك مزيل تواليت 190ملل10*1",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك مزيل تواليت 190ملل10*1",
"Product_EN": null,
"Product_Id": "00005240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4450,
"name": "ديتول مطهر ياسمين 4*1 900ملل",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر ياسمين 4*1 900ملل",
"Product_EN": null,
"Product_Id": "00005241 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4451,
"name": "ديتول مطهر اكوا 4*1 900ملل",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر اكوا 4*1 900ملل",
"Product_EN": null,
"Product_Id": "00005242 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4452,
"name": "ديتول سائل غسيل للايدى جدد نشاطك 200 مل ",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول سائل غسيل للايدى جدد نشاطك 200 مل ",
"Product_EN": "Dettol Hand Wash Liquid Revitalize 200 ml",
"Product_Id": "00005243 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4453,
"name": "ديتول سائل غسيل للايدى عنايه بالبشره 200 مل ",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول سائل غسيل للايدى عنايه بالبشره 200 مل ",
"Product_EN": "Dettol Hand Wash Liquid Skin Care 200 ml",
"Product_Id": "00005244 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4454,
"name": "ريد اقراص طائره برائحه 60قرص ",
"price": 25.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ريد اقراص طائره برائحه 60قرص ",
"Product_EN": null,
"Product_Id": "00005245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4455,
"name": "ريد غيار سائل بدون رائحه 41مل ",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ريد غيار سائل بدون رائحه 41مل ",
"Product_EN": null,
"Product_Id": "00005246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4456,
"name": "ريد جهاز طارد للناموس +غيار ",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ريد جهاز طارد للناموس +غيار ",
"Product_EN": null,
"Product_Id": "00005247 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4457,
"name": "ريد مبيد بدون رائحه للحشرات الطائره 400ملل",
"price": 28.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ريد مبيد بدون رائحه للحشرات الطائره 400ملل",
"Product_EN": null,
"Product_Id": "00005248 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4458,
"name": "ريد مبيد بدون رائحه للحشرات الطائره 300ملل",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ريد مبيد بدون رائحه للحشرات الطائره 300ملل",
"Product_EN": null,
"Product_Id": "00005249 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4459,
"name": "مستر ماسيل منظف زجاج بخاخ 500ملل الازرق",
"price": 18.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسيل منظف زجاج بخاخ 500ملل الازرق",
"Product_EN": null,
"Product_Id": "00005250 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4460,
"name": "بليدج ملمع اثاث بالبرتقال 300ملل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بليدج ملمع اثاث بالبرتقال 300ملل",
"Product_EN": null,
"Product_Id": "00005251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4461,
"name": "بليدج ملمع اثاث لافندر 300 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بليدج ملمع اثاث لافندر 300 مل",
"Product_EN": null,
"Product_Id": "00005252 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4462,
"name": "برطمان بلاستيك 500 جم",
"price": 1.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "برطمان بلاستيك 500 جم",
"Product_EN": null,
"Product_Id": "00005253 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4463,
"name": "تايد مسحوق اتوماتيك 5 كجم - موقوف",
"price": 105.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق اتوماتيك 5 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005254 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4464,
"name": "ريجينا مكرونة هلالية 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة هلالية 400 جم",
"Product_EN": "Regina Pasta Elbow 400 gm",
"Product_Id": "00005255 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4465,
"name": "المطبخ مكرونه 400 جم - موقوف",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ مكرونه 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005256 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4466,
"name": "ريجينا مكرونة 400 جم - موقوف",
"price": 166.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005257 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4467,
"name": "مصريه مكرونة 400 جم - موقوف",
"price": 97,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصريه مكرونة 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005258 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4468,
"name": "الملكه مكرونة 400 جم - موقوف",
"price": 82,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونة 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005259 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4469,
"name": "الملكة مكرونة 1 كجم - موقوف",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونة 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005260 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4470,
"name": "رويال مكرونه 1 كجم انواع - موقوف",
"price": 70.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال مكرونه 1 كجم انواع - موقوف",
"Product_EN": null,
"Product_Id": "00005261 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4471,
"name": "ايطاليانو مكرونة 400 جم - موقوف",
"price": 145,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونة 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005262 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4472,
"name": "روعه مكرونه 400 جم - موقوف",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روعه مكرونه 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005263 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4473,
"name": "الضحى مكرونه فرن 400 جم",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى مكرونه فرن 400 جم",
"Product_EN": null,
"Product_Id": "00005264 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4474,
"name": "ستار مكرونة فرن 400 جم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستار مكرونة فرن 400 جم",
"Product_EN": "Star Pasta Penne 400 gm",
"Product_Id": "00005266 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4475,
"name": "جنرال منظفات ارضيات زهور 3 لتر",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال منظفات ارضيات زهور 3 لتر",
"Product_EN": null,
"Product_Id": "00005267 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4476,
"name": "جلاسي ملمع زجاج رشاش 600 مل + 1 اقتصادي 600 مل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جلاسي ملمع زجاج رشاش 600 مل + 1 اقتصادي 600 مل",
"Product_EN": null,
"Product_Id": "00005268 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4477,
"name": "كلوركس منظف ومطهر منزلى 700 مل ليمون",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف ومطهر منزلى 700 مل ليمون",
"Product_EN": null,
"Product_Id": "00005269 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4478,
"name": "زاهر مورته 300 جم علبه - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مورته 300 جم علبه - موقوف",
"Product_EN": null,
"Product_Id": "00005270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4479,
"name": "برسيل مسحوق اتوماتيك 8 كجم",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك 8 كجم",
"Product_EN": null,
"Product_Id": "00005271 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4480,
"name": "بيبسى زجاج انواع 300 مل - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى زجاج انواع 300 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005272 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4481,
"name": "سن جولد تونه قطع 120 جم - موقوف",
"price": 10.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سن جولد تونه قطع 120 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005273 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4482,
"name": "المثالى تونه 2+1 ق 65 جم عرض - موقوف",
"price": 19.8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى تونه 2+1 ق 65 جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005274 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4483,
"name": "زاهر سلطه جبنه وزن - موقوف",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطه جبنه وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005275 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4484,
"name": "زجاجه زيت زيتون 250 مل زجاج - موقوف",
"price": 2.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زجاجه زيت زيتون 250 مل زجاج - موقوف",
"Product_EN": null,
"Product_Id": "00005276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4485,
"name": "بامبى حفاضات وسط 64+5 م 3 - موقوف",
"price": 109.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبى حفاضات وسط 64+5 م 3 - موقوف",
"Product_EN": null,
"Product_Id": "00005277 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4486,
"name": "فام ريلاكس فوط بعد الولاده 20 حفاضه - موقوف",
"price": 27.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فام ريلاكس فوط بعد الولاده 20 حفاضه - موقوف",
"Product_EN": null,
"Product_Id": "00005278 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4487,
"name": "سانيتا منادبل مضغوط 2 بكره - موقوف",
"price": 10.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "سانيتا منادبل مضغوط 2 بكره - موقوف",
"Product_EN": null,
"Product_Id": "00005279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4488,
"name": "زاهر عسل ابيض 7.5 كجم - موقوف",
"price": 412.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل ابيض 7.5 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4489,
"name": "ارو الومنيوم 6 متر *40سم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو الومنيوم 6 متر *40سم",
"Product_EN": null,
"Product_Id": "00005281 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4490,
"name": "ارو اكياس حفظ طعام محكمه الغلق 22*28 50ق",
"price": 53.35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو اكياس حفظ طعام محكمه الغلق 22*28 50ق",
"Product_EN": null,
"Product_Id": "00005282 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4491,
"name": "ارو اكياس قمامه 70*90 سم 20 ق",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو اكياس قمامه 70*90 سم 20 ق",
"Product_EN": null,
"Product_Id": "00005283 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4492,
"name": "حلوانى سلامى مطهى وزن - موقوف",
"price": 118.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى سلامى مطهى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005286 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4493,
"name": "دانجو حليب شيكولاتة 3ق وفر1.5ج - موقوف",
"price": 11.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو حليب شيكولاتة 3ق وفر1.5ج - موقوف",
"Product_EN": null,
"Product_Id": "00005287 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4494,
"name": "اولكر مارى بسكويت ساده 52 جم",
"price": 21.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر مارى بسكويت ساده 52 جم",
"Product_EN": null,
"Product_Id": "00005288 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4495,
"name": "زاهر مكس كيك انواع - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مكس كيك انواع - موقوف",
"Product_EN": null,
"Product_Id": "00005289 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4496,
"name": "كنور خلطة فيجيتار عادى 40 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطة فيجيتار عادى 40 جم",
"Product_EN": "Knorr Veggitar Mix 40 gm",
"Product_Id": "00005291 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4497,
"name": "كنور فيجيتار حار عرض - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فيجيتار حار عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005292 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4498,
"name": "ليبتون شاى 10 فتلة - موقوف",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 10 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00005293 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4499,
"name": "دوف صابون 100جم - موقوف",
"price": 15.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف صابون 100جم - موقوف",
"Product_EN": null,
"Product_Id": "00005294 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4500,
"name": "لوكس صابون سائل لمسة ذهبية برائحة العود 500 مل",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون سائل لمسة ذهبية برائحة العود 500 مل",
"Product_EN": "Lux Perfumed Hand Wash Golden Allure 500 ml",
"Product_Id": "00005295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4501,
"name": "باندا موزاريلا 600 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا موزاريلا 600 جم",
"Product_EN": null,
"Product_Id": "00005296 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4502,
"name": "زاهر مش برطمان 400 جم - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مش برطمان 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005297 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4503,
"name": "زاهر رايب مانجو1 لتر - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر رايب مانجو1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4504,
"name": "زاهر رايب مانجو 300 جم - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر رايب مانجو 300 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4505,
"name": "زاهر كنافة مانجو - كب - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة مانجو - كب - موقوف",
"Product_EN": null,
"Product_Id": "00005300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4506,
"name": "زاهر موس اسبونش - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر موس اسبونش - موقوف",
"Product_EN": null,
"Product_Id": "00005301 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4507,
"name": "فيبا سائل تنظيف اطباق بالتفاح 4 لتر",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق بالتفاح 4 لتر",
"Product_EN": null,
"Product_Id": "00005302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4508,
"name": "فيبا سائل تنظيف اطباق بالتفاح 2 لتر - موقوف",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق بالتفاح 2 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4509,
"name": "كلوريل كلور الوان ازرق 1 لتر",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل كلور الوان ازرق 1 لتر",
"Product_EN": null,
"Product_Id": "00005304 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4510,
"name": "كلوريل كلور الوان روز 1 لتر",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل كلور الوان روز 1 لتر",
"Product_EN": null,
"Product_Id": "00005305 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4511,
"name": "كلوريل كلور ابيض 1050 مل",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل كلور ابيض 1050 مل",
"Product_EN": null,
"Product_Id": "00005306 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4512,
"name": "بريل منظف اطباق 2.5 لتر - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق 2.5 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005307 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4513,
"name": "بريل منظف اطباق ليمون 40 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق ليمون 40 جم",
"Product_EN": null,
"Product_Id": "00005308 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4514,
"name": "زاهر عصير كركدية 1 لتر",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير كركدية 1 لتر",
"Product_EN": "Zaher Jujube Juice 1 L",
"Product_Id": "00005309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4515,
"name": "زاهر عصير كركدية 300 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير كركدية 300 مل",
"Product_EN": null,
"Product_Id": "00005310 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4516,
"name": "زاهر زيتون اخضر سليم مخلل طبيعى وزن",
"price": 26.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اخضر سليم مخلل طبيعى وزن",
"Product_EN": "Zaher Natural Pickled Green Olive - Scalable ",
"Product_Id": "00005311 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4517,
"name": "زاهر زيتون اسبانى مخلل طبيعى وزن - موقوف",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اسبانى مخلل طبيعى وزن - موقوف",
"Product_EN": "",
"Product_Id": "00005312 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4518,
"name": "زاهر زيتون كلاماتا وزن - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون كلاماتا وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005313 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4519,
"name": "دووف صابون بينك 100جم عرض - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دووف صابون بينك 100جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005314 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4520,
"name": "زينه مناديل علب 300منديل",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل علب 300منديل",
"Product_EN": null,
"Product_Id": "00005316 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4521,
"name": "زينه كلاسيك مناديل علب 200 منديل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه كلاسيك مناديل علب 200 منديل",
"Product_EN": null,
"Product_Id": "00005317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4522,
"name": "لامدى جبنه فيتا 500 جم تترباك - موقوف",
"price": 9.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبنه فيتا 500 جم تترباك - موقوف",
"Product_EN": null,
"Product_Id": "00005318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4523,
"name": "لامدى جبنه اسطمبولى 500 جم - موقوف",
"price": 9.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبنه اسطمبولى 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005319 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4524,
"name": "زاهر ايس كريم علبه صغير - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم علبه صغير - موقوف",
"Product_EN": null,
"Product_Id": "00005320 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4525,
"name": "ساندى جبنه مثلثات 100 جم - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ساندى جبنه مثلثات 100 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005321 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4526,
"name": "لامدى جبنه فيتا 250 جم - موقوف",
"price": 4.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبنه فيتا 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005322 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4527,
"name": "لامدى جبنه قشطه 250 جم - موقوف",
"price": 4.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبنه قشطه 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005323 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4528,
"name": "لامدى جبنه اسطمبولى 250 جم - موقوف",
"price": 4.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبنه اسطمبولى 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005324 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4529,
"name": "لامدى جبنه صفراء 250 جم - موقوف",
"price": 4.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبنه صفراء 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005325 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4530,
"name": "لامدى جبنه مطبوخه 500 جم - موقوف",
"price": 10.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبنه مطبوخه 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4531,
"name": "لامدى جبنه مطبوخه 1 كجم - موقوف",
"price": 19.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبنه مطبوخه 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005327 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4532,
"name": "لامدى جبن ابيض فيتا 1200 جم - موقوف",
"price": 24.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبن ابيض فيتا 1200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4533,
"name": "لامدى جبن ابيض وسط 1200 جم - موقوف",
"price": 24.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبن ابيض وسط 1200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4534,
"name": "لامدى جبن ابيض دوبل 1200 جم - موقوف",
"price": 24.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبن ابيض دوبل 1200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005333 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4535,
"name": "لامدى جبن ابيض براميلى 1200 جم - موقوف",
"price": 24.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبن ابيض براميلى 1200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4536,
"name": "لامدى جبن ابيض بالزيتون 1200 جم - موقوف",
"price": 24.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى جبن ابيض بالزيتون 1200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005335 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4537,
"name": "رويال اعشاب ينسون 20 فتله",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب ينسون 20 فتله",
"Product_EN": "Royal Anise Herbs 20 Bags",
"Product_Id": "00005337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4538,
"name": "رويال شاى بالنعناع 20 فتلة - موقوف",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى بالنعناع 20 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00005338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4539,
"name": "سيلفر ورنيش بنى 75 مل",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "سيلفر ورنيش بنى 75 مل",
"Product_EN": null,
"Product_Id": "00005339 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4540,
"name": "افانتى شيدر كمون شرائح 150 جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى شيدر كمون شرائح 150 جم",
"Product_EN": null,
"Product_Id": "00005340 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4541,
"name": "افانتى جبنه شيدر سبريد 240 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى جبنه شيدر سبريد 240 جم",
"Product_EN": null,
"Product_Id": "00005341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4542,
"name": "الربيع عسل اسود 500 جم - موقوف",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عسل اسود 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005342 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4543,
"name": "علبه تعبئه شمع عسل كبيره",
"price": 2.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علبه تعبئه شمع عسل كبيره",
"Product_EN": null,
"Product_Id": "00005343 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4544,
"name": "جلاكسى الموند ايس كريم 73 جم ",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جلاكسى الموند ايس كريم 73 جم ",
"Product_EN": "Galaxy Almond Ice Cream 73 gm",
"Product_Id": "00005344 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4545,
"name": "جلاكسى ميلك ايس كريم 25 جم ",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جلاكسى ميلك ايس كريم 25 جم ",
"Product_EN": "Galaxy Milk Ice Cream 25 gm",
"Product_Id": "00005345 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4546,
"name": "سنيكرز ايس كريم قرطاس 110مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سنيكرز ايس كريم قرطاس 110مل",
"Product_EN": "Galaxy Milk Ice Cream 25 gm",
"Product_Id": "00005346 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4547,
"name": "تويكس ايس كريم بار 40 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تويكس ايس كريم بار 40 جم",
"Product_EN": "Twix Ice Cream Bar 40 gm",
"Product_Id": "00005347 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4548,
"name": "باونتى ايس كريم بار",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باونتى ايس كريم بار",
"Product_EN": "Bounty Ice Cream Bar ",
"Product_Id": "00005348 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4549,
"name": "جلاكسى ايس كريم بار 50جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جلاكسى ايس كريم بار 50جم",
"Product_EN": "Galaxy Ice Cream Bar 50 gm",
"Product_Id": "00005349 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4550,
"name": "بانتين بلسم 360 مل - موقوف",
"price": 38.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بلسم 360 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005350 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4551,
"name": "هيربال شامبو 400 مل قوه العسل - موقوف",
"price": 28.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال شامبو 400 مل قوه العسل - موقوف",
"Product_EN": null,
"Product_Id": "00005351 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4552,
"name": "بامبرز حفاضات 64 حفاضه م 5 - موقوف",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز حفاضات 64 حفاضه م 5 - موقوف",
"Product_EN": null,
"Product_Id": "00005352 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4553,
"name": "هيد اند شولدرز شامبو 400 مل - موقوف",
"price": 54.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدرز شامبو 400 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005353 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4554,
"name": "هيربال بلسم 360 مل - موقوف",
"price": 28.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال بلسم 360 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005354 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4555,
"name": "هيد اند شولرز شامبو للرجال 400 مل - موقوف",
"price": 54.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولرز شامبو للرجال 400 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005355 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4556,
"name": "بانتين شامبو انسيابى 400 مل - موقوف",
"price": 42.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو انسيابى 400 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005356 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4557,
"name": "المراعى برجر بقرى مجمد 25 ق 1 كجم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى برجر بقرى مجمد 25 ق 1 كجم",
"Product_EN": null,
"Product_Id": "00005357 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4558,
"name": "المراعى مفروم بقرى خشن مجمد 350 جم",
"price": 36.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى مفروم بقرى خشن مجمد 350 جم",
"Product_EN": null,
"Product_Id": "00005358 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4559,
"name": "المراعى كفته بقرى مجمد 875 جم 25 ق",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى كفته بقرى مجمد 875 جم 25 ق",
"Product_EN": null,
"Product_Id": "00005359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4560,
"name": "المراعى هوت دوج بقرى مجمد 1 كجم",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى هوت دوج بقرى مجمد 1 كجم",
"Product_EN": null,
"Product_Id": "00005360 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4561,
"name": "المراعى فرانك بقرى مجمد 25 ق 1 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى فرانك بقرى مجمد 25 ق 1 كجم",
"Product_EN": null,
"Product_Id": "00005361 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4562,
"name": "المراعى سمبوسك لحم بقرى مجمد 400 جم",
"price": 26.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى سمبوسك لحم بقرى مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00005362 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4563,
"name": "المراعى سمبوسك جبنه مجمد 350 جم",
"price": 26.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى سمبوسك جبنه مجمد 350 جم",
"Product_EN": null,
"Product_Id": "00005363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4564,
"name": "المراعى رقائق سمبوسك مجمد 500 جم",
"price": 15.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى رقائق سمبوسك مجمد 500 جم",
"Product_EN": null,
"Product_Id": "00005364 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4565,
"name": "المراعى سجق شرقى بقرى مجمد 350 جم",
"price": 33.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى سجق شرقى بقرى مجمد 350 جم",
"Product_EN": null,
"Product_Id": "00005365 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4566,
"name": "المراعى فرانك بقرى 3 بسعر 2 عرض - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى فرانك بقرى 3 بسعر 2 عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005367 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4567,
"name": "المراعى هوت دوج بقرى 3 بسعر 2 عرض - موقوف",
"price": 72.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى هوت دوج بقرى 3 بسعر 2 عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4568,
"name": "المراعى لانشون بقرى ساده\/بهار\/زيتون وزن",
"price": 72.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى لانشون بقرى ساده\/بهار\/زيتون وزن",
"Product_EN": null,
"Product_Id": "00005369 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4569,
"name": "المراعى لانشون بهار وزن - موقوف",
"price": 72.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى لانشون بهار وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005370 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4570,
"name": "المراعى لانشون بقرى بالزيتون وزن - موقوف",
"price": 72.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى لانشون بقرى بالزيتون وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005372 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4571,
"name": "المراعى قشطه فراخ مدخن وزن",
"price": 126,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى قشطه فراخ مدخن وزن",
"Product_EN": null,
"Product_Id": "00005373 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4572,
"name": "اكياس سلوفان وزن",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اكياس سلوفان وزن",
"Product_EN": null,
"Product_Id": "00005375 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4573,
"name": "الطاهية مشروم حبه كامله 800 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية مشروم حبه كامله 800 جم",
"Product_EN": "Al Tahya Mushrooms Whale 800 gm",
"Product_Id": "00005376 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4574,
"name": "الطاهية ترمس 540 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية ترمس 540 جم",
"Product_EN": "Al Tahya Lupine 540 g",
"Product_Id": "00005377 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4575,
"name": "فيروز مشروب شعير 400 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز مشروب شعير 400 مل",
"Product_EN": null,
"Product_Id": "00005378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4576,
"name": "الحلوبه زبده خليط 1 كجم",
"price": 33.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الحلوبه زبده خليط 1 كجم",
"Product_EN": " Al Haloub Mixed Butter 1 Kg",
"Product_Id": "00005379 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4577,
"name": "روتانا زبده 1 كجم",
"price": 109.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "روتانا زبده 1 كجم",
"Product_EN": "Rotana Butter 1 Kg",
"Product_Id": "00005380 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4578,
"name": "فيتراك مربى تين 900 جم - موقوف",
"price": 21.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005381 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4579,
"name": "فيتراك مربى مشمش 245 جم _ موقوف",
"price": 6.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 245 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00005382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4580,
"name": "جنرال منظف سائل اكتف لافندر730 مل - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال منظف سائل اكتف لافندر730 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005383 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4581,
"name": "زاهر ايس كريم فئه 8 ج 1\/2 كيلو - موقوف",
"price": 47.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم فئه 8 ج 1\/2 كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00005384 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4582,
"name": "زاهر ايس كريم فئه 10 ج 1\/2 كيلو - موقوف",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم فئه 10 ج 1\/2 كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00005385 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4583,
"name": "زاهر ايس كريم فئه 12ج 1\/2 كيلو - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم فئه 12ج 1\/2 كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00005386 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4584,
"name": "دانون دانيت شيكولاتة 4 ق عرض",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانيت شيكولاتة 4 ق عرض",
"Product_EN": "Danone Danette Chocolate 4 Pieces ",
"Product_Id": "00005387 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4585,
"name": "ترايدنت لبان صغير 1 ق",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ترايدنت لبان صغير 1 ق",
"Product_EN": "Trident Gum Small 1 Pieces",
"Product_Id": "00005388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4586,
"name": "فلو مياه الكالين 330 مل كيدز",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلو مياه الكالين 330 مل كيدز",
"Product_EN": null,
"Product_Id": "00005389 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4587,
"name": "رويال اعشاب ينسون 12 فلتر + 3 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب ينسون 12 فلتر + 3 فلتر",
"Product_EN": "Royal Anise Herbs 12 Bags + 3 Bags ",
"Product_Id": "00005390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4588,
"name": "رويال اعشاب ينسون 50 فلتر",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب ينسون 50 فلتر",
"Product_EN": "Royal Anise Herbs 50 Bags",
"Product_Id": "00005391 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4589,
"name": "رويال اعشاب نعناع 20 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب نعناع 20 فلتر",
"Product_EN": "Royal Mint Herbs 20 Bags",
"Product_Id": "00005392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4590,
"name": "رويال اعشاب قرفه 12 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب قرفه 12 فلتر",
"Product_EN": "Royal Cinnamon Herbs 12 Bags",
"Product_Id": "00005393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4591,
"name": "رويال اعشاب زنجبيل وقرفه 12 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب زنجبيل وقرفه 12 فلتر",
"Product_EN": "Royal Cinnamon & Ginger Herbs 12 Bags",
"Product_Id": "00005394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4592,
"name": "رويال جنزبيل و قرفه 20 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال جنزبيل و قرفه 20 فلتر",
"Product_EN": "Royal Cinnamon & Ginger Herbs 20 Bags",
"Product_Id": "00005395 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4593,
"name": "رويال بابونج 20 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال بابونج 20 فلتر",
"Product_EN": "Royal Chamomile Herbs 20 Bags",
"Product_Id": "00005396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4594,
"name": "رويال بابونج 12 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال بابونج 12 فلتر",
"Product_EN": "Royal Chamomile Herbs 12 Bags",
"Product_Id": "00005397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4595,
"name": "رويال اعشاب اوراق جوافه وتيليو 12 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب اوراق جوافه وتيليو 12 فلتر",
"Product_EN": "Royal Tilia & Guava Leaves Herbs 12 Bags",
"Product_Id": "00005398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4596,
"name": "رويال اعشاب اوراق جوافه وتيليو 20 فلتر",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب اوراق جوافه وتيليو 20 فلتر",
"Product_EN": "Royal Tilia & Guava Leaves Herbs 20 Bags",
"Product_Id": "00005399 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4597,
"name": "رويال اعشاب ليمون & الزنجبيل 12 فلتر",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب ليمون & الزنجبيل 12 فلتر",
"Product_EN": "Royal Ginger & Lemon Herbs 12 Bags",
"Product_Id": "00005400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4598,
"name": "رويال اعشاب ليمون & الزنجبيل 20 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب ليمون & الزنجبيل 20 فلتر",
"Product_EN": "Royal Ginger & Lemon Herbs 20 Bags",
"Product_Id": "00005401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4599,
"name": "رويال شاى بالنعناع 12 فلتر - موقوف",
"price": 6.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى بالنعناع 12 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4600,
"name": "رويال شاى بالنعناع 50 فلتر - موقوف",
"price": 20.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى بالنعناع 50 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4601,
"name": "رويال بابونج بالينسون 12 فلتر - موقوف",
"price": 6.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال بابونج بالينسون 12 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005404 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4602,
"name": "رويال بابونج بالينسون 20 فلتر - موقوف",
"price": 10.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال بابونج بالينسون 20 فلتر - موقوف",
"Product_EN": " ",
"Product_Id": "00005405 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4603,
"name": "رويال شاى اخضر 12 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى اخضر 12 فلتر",
"Product_EN": "Royal Green Tea 12 Bags",
"Product_Id": "00005406 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4604,
"name": "رويال شاى اخضر 20 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى اخضر 20 فلتر",
"Product_EN": "Royal Green Tea 20 Bags",
"Product_Id": "00005407 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4605,
"name": "رويال شاى اخضر 50 فلتر - موقوف",
"price": 20.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى اخضر 50 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4606,
"name": "رويال شاى اخضر & النعناع 12 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى اخضر & النعناع 12 فلتر",
"Product_EN": "Royal Green Tea & Mint 12 Bags",
"Product_Id": "00005409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4607,
"name": "الشمعدان ويفر شيكولاتة 4 ق",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان ويفر شيكولاتة 4 ق",
"Product_EN": null,
"Product_Id": "00005410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4608,
"name": "الشمعدان ويفر بندق 4 ق",
"price": 4.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان ويفر بندق 4 ق",
"Product_EN": null,
"Product_Id": "00005411 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4609,
"name": "الشمعدان ويفر حليب 4 ق",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان ويفر حليب 4 ق",
"Product_EN": null,
"Product_Id": "00005412 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4610,
"name": "الشمعدان ويفر كاكاو 4 ق",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان ويفر كاكاو 4 ق",
"Product_EN": null,
"Product_Id": "00005413 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4611,
"name": "الشمعدان ويفر فانليا 4 ق",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان ويفر فانليا 4 ق",
"Product_EN": null,
"Product_Id": "00005414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4612,
"name": "رويال بابونج نعناع 12 فلتر - موقوف",
"price": 6.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال بابونج نعناع 12 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4613,
"name": "رويال اعشاب زنجبيل 12 فلتر",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب زنجبيل 12 فلتر",
"Product_EN": "Royal Ginger Herbs 12 Bags",
"Product_Id": "00005416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4614,
"name": "رويال كركديه 20 فلتر - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال كركديه 20 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4615,
"name": "رويال بابونج نعناع 20 فلتر - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال بابونج نعناع 20 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4616,
"name": "رويال اعشاب زنجبيل 20 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب زنجبيل 20 فلتر",
"Product_EN": "Royal Ginger Herbs 20 Bags",
"Product_Id": "00005419 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4617,
"name": "رويال ليمون زنجبيل 50 فلتر - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال ليمون زنجبيل 50 فلتر - موقوف",
"Product_EN": "",
"Product_Id": "00005420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4618,
"name": "رويال شاى ريجيم 25 فلتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى ريجيم 25 فلتر",
"Product_EN": "Royal Regime Tea 25 Pieces",
"Product_Id": "00005421 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4619,
"name": "الضحى حبه البركة ملاحة 65 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى حبه البركة ملاحة 65 جم",
"Product_EN": "Al Doha Milled Black Seed 65 g",
"Product_Id": "00005422 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4620,
"name": "الضحى حبهان ملاحة 40 جم",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى حبهان ملاحة 40 جم",
"Product_EN": "Al Doha Whole Beans Cardamom 40 g",
"Product_Id": "00005423 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4621,
"name": "الضحى زنجبيل ناعم ملاحة 70 جم",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى زنجبيل ناعم ملاحة 70 جم",
"Product_EN": "Al Doha Milled Ginger 70 g",
"Product_Id": "00005424 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4622,
"name": "الضحى فلفل ابيض ناعم ملاحة 70 جم",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى فلفل ابيض ناعم ملاحة 70 جم",
"Product_EN": "Al Doha Milled White Pepper 70 g",
"Product_Id": "00005425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4623,
"name": "الضحى قرنفل ملاحة 40 جم ",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى قرنفل ملاحة 40 جم ",
"Product_EN": "Al Doha Whole Cloves 40 g",
"Product_Id": "00005426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4624,
"name": "الضحى كارى مطحون ملاحة 70 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى كارى مطحون ملاحة 70 جم",
"Product_EN": "Al Doha Milled Curry 70 g",
"Product_Id": "00005427 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4625,
"name": "الضحى فلفل احمر مطحون ملاحة 70 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى فلفل احمر مطحون ملاحة 70 جم",
"Product_EN": "Al Doha Milled Red Pepper 70 g",
"Product_Id": "00005428 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4626,
"name": "مونتانا باميه ممتازه 400 جم - موقوف",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مونتانا باميه ممتازه 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4627,
"name": "مونتانا ورق عنب 250 جم - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مونتانا ورق عنب 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4628,
"name": "لافاش كيرى لبنه 200 جم",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش كيرى لبنه 200 جم",
"Product_EN": "LaVache Kiri Labenah 200 gm",
"Product_Id": "00005432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4629,
"name": "ليبتون شاى كراميل 3*1 - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى كراميل 3*1 - موقوف",
"Product_EN": null,
"Product_Id": "00005433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4630,
"name": "ليبتون شاى لاتية 3*1 - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى لاتية 3*1 - موقوف",
"Product_EN": null,
"Product_Id": "00005434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4631,
"name": "ليبتون شاى شيكولاتة 3*1 - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى شيكولاتة 3*1 - موقوف",
"Product_EN": null,
"Product_Id": "00005435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4632,
"name": "ليبتون شاى اثقل100فتلة + مج - موقوف",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اثقل100فتلة + مج - موقوف",
"Product_EN": null,
"Product_Id": "00005436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4633,
"name": "ليبتون شاى كلاسيك 100 فتله + مج ومعلقة هدية",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى كلاسيك 100 فتله + مج ومعلقة هدية",
"Product_EN": "Lipton Classic Tea 100 Bags + Mug & Spoon Free ",
"Product_Id": "00005437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4634,
"name": "بيكدر كريمة شيكولاتة 200 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيكدر كريمة شيكولاتة 200 جم",
"Product_EN": null,
"Product_Id": "00005438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4635,
"name": "روتيلا كريمه الشيكولاته بالبندق 1 كجم",
"price": 58.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روتيلا كريمه الشيكولاته بالبندق 1 كجم",
"Product_EN": null,
"Product_Id": "00005439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4636,
"name": "دوريتوس فلفل حار 18 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس فلفل حار 18 جم",
"Product_EN": null,
"Product_Id": "00005440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4637,
"name": "لايف بوى صابون 3+1 ق عرض",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى صابون 3+1 ق عرض",
"Product_EN": "Lifebuoy Soap 3 +1 Pieces - Offer",
"Product_Id": "00005441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4638,
"name": "باندا جبنة شيدر كوب 240جم",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة شيدر كوب 240جم",
"Product_EN": null,
"Product_Id": "00005443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4639,
"name": "هاينز مستردة دويباك 285 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز مستردة دويباك 285 جم",
"Product_EN": "Heinz Mustard Doi Buck 235 gm",
"Product_Id": "00005444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4640,
"name": "هاينز كاتشب مايونيز دويباك 285 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب مايونيز دويباك 285 جم",
"Product_EN": "Heinz Ketchup Mayonnaise Doi Buck 285 gm",
"Product_Id": "00005445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4641,
"name": "هاينز كاتشب طماطم حار دويباك 285 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم حار دويباك 285 مل",
"Product_EN": "Heinz Hot Tomato Ketchup Doi Buck 285 ml",
"Product_Id": "00005446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4642,
"name": "طرشى مكعبات لوكس وزن - موقوف",
"price": 12.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طرشى مكعبات لوكس وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4643,
"name": "طرشى بوليف ممتاز وزن",
"price": 19.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طرشى بوليف ممتاز وزن",
"Product_EN": null,
"Product_Id": "00005448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4644,
"name": "زاهر علبة ايس كريم 500 جم - موقوف",
"price": 4.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر علبة ايس كريم 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4645,
"name": "توداى دونات كيك شيكولاتة - موقوف",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توداى دونات كيك شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00005450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4646,
"name": "توداى دونات كيك شيكولاتة بكريمة الفانليا - موقوف",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توداى دونات كيك شيكولاتة بكريمة الفانليا - موقوف",
"Product_EN": null,
"Product_Id": "00005451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4647,
"name": "توداى سوفت كيك شيكولاتة - موقوف",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توداى سوفت كيك شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00005452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4648,
"name": "توداى سوفت كيك فراوله - موقوف",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توداى سوفت كيك فراوله - موقوف",
"Product_EN": null,
"Product_Id": "00005453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4649,
"name": "توداى سوفت كيك فانليا - موقوف",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توداى سوفت كيك فانليا - موقوف",
"Product_EN": null,
"Product_Id": "00005454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4650,
"name": "توداى سوفت كيك كراميل - موقوف",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توداى سوفت كيك كراميل - موقوف",
"Product_EN": null,
"Product_Id": "00005455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4651,
"name": "توداى بار كيك شيكولاتة - موقوف",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توداى بار كيك شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00005456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4652,
"name": "العبد حلاوه المولد طبق شكلمه مشكله",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق شكلمه مشكله",
"Product_EN": null,
"Product_Id": "00011234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4653,
"name": "العبد حلاوه المولد طبق فول بايتس",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق فول بايتس",
"Product_EN": null,
"Product_Id": "00011235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4654,
"name": "العبد حلاوه المولد طبق سمسم بايتس",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق سمسم بايتس",
"Product_EN": null,
"Product_Id": "00011236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4655,
"name": "العبد حلاوه المولد طبق مشمشيه جوز هند",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد حلاوه المولد طبق مشمشيه جوز هند",
"Product_EN": null,
"Product_Id": "00011237 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4656,
"name": "ليبتون ايس تى مانجو 330 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون ايس تى مانجو 330 مل",
"Product_EN": "Lipton Ice Tea Mango 330ml",
"Product_Id": "00011238 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4657,
"name": "جزارة فاقد وهالك ضانى وزن",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جزارة فاقد وهالك ضانى وزن",
"Product_EN": null,
"Product_Id": "00011239 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4658,
"name": "عطاره . زبيب مصرى وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زبيب مصرى وزن",
"Product_EN": "Attara Egyptian Raisins Scalable ",
"Product_Id": "00011240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4659,
"name": "عطاره . شبة حصى وزن",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شبة حصى وزن",
"Product_EN": "Attara ShaBh Gravel - Scalable",
"Product_Id": "00011241 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4660,
"name": "عطاره . حنة اسوانى وزن",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . حنة اسوانى وزن",
"Product_EN": "Attara Aswany Henna - Scalable",
"Product_Id": "00011242 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4661,
"name": "عطاره . اعشاب تخسيس وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . اعشاب تخسيس وزن",
"Product_EN": "Attara herbs Diet - Scalable ",
"Product_Id": "00011243 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4662,
"name": "عطاره . شعير وزن",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شعير وزن",
"Product_EN": "Attara Barley - Scalable ",
"Product_Id": "00011244 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4663,
"name": "عطاره . ورق سدر وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ورق سدر وزن",
"Product_EN": "Attara Sidr Paper - Scalable ",
"Product_Id": "00011245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4664,
"name": "عطاره . شبة معطرة وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شبة معطرة وزن",
"Product_EN": "Attara Scented Shabh - Scalable ",
"Product_Id": "00011246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4665,
"name": "عطاره . زيتون اسرائيلي وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زيتون اسرائيلي وزن",
"Product_EN": "Attara Israeli Olives - Scalable ",
"Product_Id": "00011247 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4666,
"name": "عطاره . جيلاتين وزن",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . جيلاتين وزن",
"Product_EN": "Attara Gelatin - Scalable ",
"Product_Id": "00011248 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4667,
"name": "عطاره . طعم شيبسي وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . طعم شيبسي وزن",
"Product_EN": "Attara Chips Taste - Scalable ",
"Product_Id": "00011249 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4668,
"name": "عطاره . كورن فليكس انواع وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كورن فليكس انواع وزن",
"Product_EN": "Attara Corn Flakes Plain - Scalable ",
"Product_Id": "00011250 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4669,
"name": "عطاره . كورن فليكس شوكولاتة وزن - موقوف",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كورن فليكس شوكولاتة وزن - موقوف",
"Product_EN": "Attara Corn Flakes Chocolate - Scalable",
"Product_Id": "00011251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4670,
"name": "عطاره . كورن فليكس الالوان وزن - موقوف",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كورن فليكس الالوان وزن - موقوف",
"Product_EN": "Attara Corn Flakes Colors - Scalable ",
"Product_Id": "00011252 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4671,
"name": "عطاره . بقسماط ناعم وزن",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بقسماط ناعم وزن",
"Product_EN": "Attara Bread Crumbs - Scalable ",
"Product_Id": "00011253 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4672,
"name": "عطاره . نشا سايب وزن",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . نشا سايب وزن",
"Product_EN": "Attara Starch Sayb - Scalable ",
"Product_Id": "00011254 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4673,
"name": "عطاره . بسمتى الواحة وزن",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بسمتى الواحة وزن",
"Product_EN": "Attara Basmati Oasis - Scalable ",
"Product_Id": "00011255 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4674,
"name": "عطاره . بسمتى ابيض وزن",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بسمتى ابيض وزن",
"Product_EN": "Attara Basmati White - Scalable ",
"Product_Id": "00011256 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4675,
"name": "عطاره . خلطة كنتاكي وزن",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . خلطة كنتاكي وزن",
"Product_EN": "Attara Kentucky Mix - Scalable ",
"Product_Id": "00011257 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4676,
"name": "عطاره . زعتر اخضر تونسى وزن - موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زعتر اخضر تونسى وزن - موقوف",
"Product_EN": "Attara Tunisian Green thyme - Scalable",
"Product_Id": "00011258 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4677,
"name": "عطاره . سما شيكولاتة 200 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . سما شيكولاتة 200 جم",
"Product_EN": "Attara Sama Chocolate 200 gm",
"Product_Id": "00011259 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4678,
"name": "عطاره . صمغ عربى وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . صمغ عربى وزن",
"Product_EN": "Attara Gum Arabic - Scalable ",
"Product_Id": "00011260 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4679,
"name": "عطاره . ورق زيتون وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ورق زيتون وزن",
"Product_EN": "Attara Olive Leafe - Scalable ",
"Product_Id": "00011261 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4680,
"name": "عطاره . دقة زعتر وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . دقة زعتر وزن",
"Product_EN": "Attara DUQQA Thyme - Scalable ",
"Product_Id": "00011262 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4681,
"name": "عطاره . سميد بسبوسة وزن",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . سميد بسبوسة وزن",
"Product_EN": "Attara Semolina Basbussa - Scalable ",
"Product_Id": "00011263 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4682,
"name": "عطاره . كريمة خام رقم 1 وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كريمة خام رقم 1 وزن",
"Product_EN": "Attara Raw Cream Number 1 - Scalable ",
"Product_Id": "00011264 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4683,
"name": "عطاره . كريمة خام رقم 2 وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كريمة خام رقم 2 وزن",
"Product_EN": "Attara Raw Cream Number 2 - Scalable ",
"Product_Id": "00011265 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4684,
"name": "عطاره . شيكولاتة خام وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شيكولاتة خام وزن",
"Product_EN": "Attara Raw Chocolate - Scalable",
"Product_Id": "00011266 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4685,
"name": "عطاره . شوكولاتة حجر وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاتة حجر وزن",
"Product_EN": "Attara Stone Chocolate - Scalable",
"Product_Id": "00011267 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4686,
"name": "عطاره . شوكولاتة كرسبى الوان وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاتة كرسبى الوان وزن",
"Product_EN": "Attara Crispy Chocolate Color - Scalable",
"Product_Id": "00011268 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4687,
"name": "عطاره . شوكولاتة كرسبي بني وزن - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاتة كرسبي بني وزن - موقوف",
"Product_EN": "Attara Crispy chocolate Brown - Scalable",
"Product_Id": "00011269 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4688,
"name": "عطاره . فرماسيل سبرينكل الوان وزن ",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فرماسيل سبرينكل الوان وزن ",
"Product_EN": "Attara Vermicil Sprinkle Colors - Scalable ",
"Product_Id": "00011270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4689,
"name": "عطاره . شوكولاتة ويفر وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاتة ويفر وزن",
"Product_EN": "Attara Chocolate Wafer - Scalable",
"Product_Id": "00011271 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4690,
"name": "لوز امريكي مقشر وزن - موقوف",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوز امريكي مقشر وزن - موقوف",
"Product_EN": null,
"Product_Id": "00011272 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4691,
"name": "عطاره . بندق مقشر تركى وزن",
"price": 200,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بندق مقشر تركى وزن",
"Product_EN": "Attara Turkish Peeled Hazelnut - Scalable ",
"Product_Id": "00011273 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4692,
"name": "عطاره . عين جمل مقشر وزن",
"price": 240,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . عين جمل مقشر وزن",
"Product_EN": "Attara Peeled Walnut - Scalable ",
"Product_Id": "00011274 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4693,
"name": "عطاره . كاجو محمص وزن",
"price": 260,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كاجو محمص وزن",
"Product_EN": "Attara Roasted Cashews - Scalable ",
"Product_Id": "00011275 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4694,
"name": "عطاره . دقيق اسبونش شوكولاتة وزن - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . دقيق اسبونش شوكولاتة وزن - موقوف",
"Product_EN": "Attara Chocolate Sponge Flour - Scalable ",
"Product_Id": "00011276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4695,
"name": "عطاره . دقيق اسبونش وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . دقيق اسبونش وزن",
"Product_EN": "Attara Venilla Sponge Flour - Scalable ",
"Product_Id": "00011277 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4696,
"name": "دانون مشروب مانجو بالحليب 235 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب مانجو بالحليب 235 مل",
"Product_EN": "Danao Mango Milk Drink 235 ml",
"Product_Id": "00011278 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4697,
"name": "دانون مشروب خوخ ومشمش بالحليب 1 لتر",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب خوخ ومشمش بالحليب 1 لتر",
"Product_EN": "Danao Peach & Apricot Milk Drink 1 L",
"Product_Id": "00011279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4698,
"name": "دانون مشروب جوافه بالحليب 235 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب جوافه بالحليب 235 مل",
"Product_EN": "Danao Guava Milk Drink 235 ml",
"Product_Id": "00011280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4699,
"name": "دانون مشروب خوخ ومشمش بالحليب 235 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب خوخ ومشمش بالحليب 235 مل",
"Product_EN": "Danao Peach & Apricot Milk Drink 235 ml",
"Product_Id": "00011281 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4700,
"name": "دانون مشروب مانجو بالحليب 1 لتر",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب مانجو بالحليب 1 لتر",
"Product_EN": "Danao Mango Milk Drink 1 L",
"Product_Id": "00011282 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4701,
"name": "برسيل مسحوق يدوى اخضر 80 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى اخضر 80 جم",
"Product_EN": "Persil Powder Manual Green 80 gm",
"Product_Id": "00011284 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4702,
"name": "زاهر بيتزا سوسيس 8 قطع 350جم - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتزا سوسيس 8 قطع 350جم - موقوف",
"Product_EN": null,
"Product_Id": "00011285 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4703,
"name": "صولو كراميل 2.400 كجم",
"price": 136.8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولو كراميل 2.400 كجم",
"Product_EN": null,
"Product_Id": "00011286 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4704,
"name": "صولو كريز 1 لتر",
"price": 74.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صولو كريز 1 لتر",
"Product_EN": null,
"Product_Id": "00011287 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4705,
"name": "عليا كرنب بالخضار 500 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عليا كرنب بالخضار 500 جم",
"Product_EN": null,
"Product_Id": "00011288 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4706,
"name": "زاهر ديزرت - علبة جاتوه سوارية 500 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزرت - علبة جاتوه سوارية 500 جم",
"Product_EN": null,
"Product_Id": "00011289 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4707,
"name": "توليدو مشروم قطع 800 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو مشروم قطع 800 جم",
"Product_EN": "Tolido Mushroom Pieces 800 gm",
"Product_Id": "00011290 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4708,
"name": "ستاربكس فرابيتشينو موكا 250 مل - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس فرابيتشينو موكا 250 مل - موقوف",
"Product_EN": "",
"Product_Id": "00011291 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4709,
"name": "بيبسى الهضبة زجاج 350 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى الهضبة زجاج 350 مل",
"Product_EN": "Pepsi El Hadaba Bottle 350 ml",
"Product_Id": "00011292 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4710,
"name": "هالى بسكويت مارشميلو كريمة 26 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هالى بسكويت مارشميلو كريمة 26 جم",
"Product_EN": null,
"Product_Id": "00011293 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4711,
"name": "فيتو كمامه 10 ق",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:42",
"updated_at": "2021-11-01 19:45:42",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيتو كمامه 10 ق",
"Product_EN": null,
"Product_Id": "00011294 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4712,
"name": "فيتو كمامه كبيره 50 ق",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيتو كمامه كبيره 50 ق",
"Product_EN": null,
"Product_Id": "00011295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4713,
"name": "فيتو كمامه اطفال 50 ق",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيتو كمامه اطفال 50 ق",
"Product_EN": null,
"Product_Id": "00011296 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4714,
"name": "فيتو هاند جيل 120 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيتو هاند جيل 120 مل",
"Product_EN": null,
"Product_Id": "00011297 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4715,
"name": "فيتو كحول 125 مل",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيتو كحول 125 مل",
"Product_EN": null,
"Product_Id": "00011298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4716,
"name": "فيتو بيور تاتش كحول 1 لتر",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيتو بيور تاتش كحول 1 لتر",
"Product_EN": null,
"Product_Id": "00011299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4717,
"name": "فيتو ستيريليوم 1 لتر",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيتو ستيريليوم 1 لتر",
"Product_EN": null,
"Product_Id": "00011300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4718,
"name": "شالي ملح إستحمام 500 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "شالي ملح إستحمام 500 جم",
"Product_EN": null,
"Product_Id": "00011301 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4719,
"name": "كارجو طماطم وزن - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو طماطم وزن - موقوف",
"Product_EN": null,
"Product_Id": "00011302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4720,
"name": "القرشى تمر 3 بلحات 50 عبوه",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر 3 بلحات 50 عبوه",
"Product_EN": "Al Qurashi Dates 3 Dates 50 Packs",
"Product_Id": "00011303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4721,
"name": "القرشى عجوه بالنواة 650 جم",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى عجوه بالنواة 650 جم",
"Product_EN": "Al Qurashi Aghwa With Kernel 650 gm",
"Product_Id": "00011304 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4722,
"name": "القرشى تمر باللوز 40 ق",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر باللوز 40 ق",
"Product_EN": "Al Qurashi Dates Almonds 40 Pieces",
"Product_Id": "00011305 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4723,
"name": "القرشى تمر باللوز 16 ق",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر باللوز 16 ق",
"Product_EN": "Al Qurashi Dates Almonds 16 Pieces",
"Product_Id": "00011306 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4724,
"name": "القرشى تمر مجدول 5 كجم",
"price": 400,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر مجدول 5 كجم",
"Product_EN": "Al Qurashi Medjool Dates 5 kg",
"Product_Id": "00011307 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4725,
"name": "القرشى تمر رطب 3 كجم",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر رطب 3 كجم",
"Product_EN": "Al Qurashi Wet Dates 3 kg",
"Product_Id": "00011308 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4726,
"name": "القرشى تمر رطب 650 جم",
"price": 51.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر رطب 650 جم",
"Product_EN": "Al Qurashi Wet Dates 650 gm",
"Product_Id": "00011309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4727,
"name": "القرشى تمر رطب 450 جم",
"price": 38.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر رطب 450 جم",
"Product_EN": "Al Qurashi Wet Dates 450 gm",
"Product_Id": "00011310 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4728,
"name": "القرشى تمر فاكيوم 800 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر فاكيوم 800 جم",
"Product_EN": "Al Qurashi Vacuum Dates 800 gm",
"Product_Id": "00011311 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4729,
"name": "القرشى تمر طبق فوم 600 جم",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر طبق فوم 600 جم",
"Product_EN": "Al Qurashi Dates Foam Plate 600 gm",
"Product_Id": "00011313 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4730,
"name": "القرشى عجوه المدينه 3 كجم",
"price": 240,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى عجوه المدينه 3 كجم",
"Product_EN": "Al Qurashi Ajwa Medina 3 kg",
"Product_Id": "00011314 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4731,
"name": "القرشى تمر 850 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر 850 جم",
"Product_EN": "Al Qurashi Dates 850 gm",
"Product_Id": "00011315 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4732,
"name": "القرشى تمر الوادى 450 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر الوادى 450 جم",
"Product_EN": "Al Qurashi Wadi Dates 450 gm",
"Product_Id": "00011316 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4733,
"name": "كارجو بلح سمانى وزن",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو بلح سمانى وزن",
"Product_EN": null,
"Product_Id": "00011317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4734,
"name": "زاهر بيتزا 8 ق 250 جم - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتزا 8 ق 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4735,
"name": "اريال مسحوق يدوى داونى 1 كجم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى داونى 1 كجم",
"Product_EN": null,
"Product_Id": "00011319 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4736,
"name": "اريال مسحوق يدوى ياسمين 170 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 170 جم",
"Product_EN": null,
"Product_Id": "00011320 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4737,
"name": "اريال مسحوق اتوماتيك الوان 2.5 كجم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك الوان 2.5 كجم",
"Product_EN": null,
"Product_Id": "00011321 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4738,
"name": "عطاره . عرق سوس سورى وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . عرق سوس سورى وزن",
"Product_EN": "Attara Licorice Syrian - Scalable ",
"Product_Id": "00011322 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4739,
"name": "عطاره . خروب مجروش وزن",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . خروب مجروش وزن",
"Product_EN": "Attara Crushed Carob - Scalable ",
"Product_Id": "00011323 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4740,
"name": "زينه بيبى مناديل سحب 450 منديل * 3 قطع",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه بيبى مناديل سحب 450 منديل * 3 قطع",
"Product_EN": null,
"Product_Id": "00011324 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4741,
"name": "زينه مناديل سحب عود 550 منديل * 3 ق",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل سحب عود 550 منديل * 3 ق",
"Product_EN": null,
"Product_Id": "00011325 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4742,
"name": "زينه مناديل مطبخ اقتصادى 4 + 2 بكرة",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل مطبخ اقتصادى 4 + 2 بكرة",
"Product_EN": null,
"Product_Id": "00011326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4743,
"name": "زاهر فينو حبوب متنوعة 4 ق",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر فينو حبوب متنوعة 4 ق",
"Product_EN": "Zaher Fino Assorted Cereal 4 Pieces ",
"Product_Id": "00011327 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4744,
"name": "زاهر فينو سن 4 ق",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر فينو سن 4 ق",
"Product_EN": "Zaher Browm Fino Bread 4 pieces",
"Product_Id": "00011328 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4745,
"name": "زاهر بيتى بان سن 6 ق",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتى بان سن 6 ق",
"Product_EN": "Zaher Betty Ban Diet 6 Pieces ",
"Product_Id": "00011329 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4746,
"name": "دومتى جبنه كريمى رومى 220 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه كريمى رومى 220 جم",
"Product_EN": "Domty Creamy Cheese 220 gm",
"Product_Id": "00011330 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4747,
"name": "كلير شامبو رجالى 180 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو رجالى 180 مل",
"Product_EN": "Clear Shampoo For Men 180 ml",
"Product_Id": "00011331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4748,
"name": "صانسيلك شامبو 2*1 قوة ولمعان 600 مل",
"price": 49.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو 2*1 قوة ولمعان 600 مل",
"Product_EN": "Sunsilk Shampoo 2 in 1 Strength & Shine 600 ml",
"Product_Id": "00011332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4749,
"name": "سيجنال معجون اسنان كومبليت قرنفل 100مل خصم 15%",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت قرنفل 100مل خصم 15%",
"Product_EN": "Signal Toothpaste Complete Clove 100 ml 15 % Off ",
"Product_Id": "00011334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4750,
"name": "سيجنال معجون اسنان كومبليت كوكو وايت 100مل",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت كوكو وايت 100مل",
"Product_EN": "Signal Toothpaste Complete Coco White 100 ml",
"Product_Id": "00011335 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4751,
"name": "سيجنال معجون اسنان كومبليت اعشاب 100مل",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت اعشاب 100مل",
"Product_EN": "Signal Toothpaste Complete Herbs 100 ml",
"Product_Id": "00011336 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4752,
"name": "سيجنال معجون اسنان كومبليت فحم 100 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت فحم 100 مل",
"Product_EN": "Signal Toothpaste Complete Charcoal 100 ml",
"Product_Id": "00011337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4753,
"name": "سيجنال معجون اسنان كومبليت قرنفل 50 مل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت قرنفل 50 مل",
"Product_EN": "Signal Toothpaste Complete Clove 50 ml",
"Product_Id": "00011338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4754,
"name": "لايف بوي سائل غسيل ايدي عنايه متكامله 450 جم ",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي سائل غسيل ايدي عنايه متكامله 450 جم ",
"Product_EN": "Lifebuoy Hand Wash Liquid Complete Care 450 gm",
"Product_Id": "00011341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4755,
"name": "تريسمي شامبو كيراتين 200 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي شامبو كيراتين 200 مل",
"Product_EN": "Tresemme Shampoo Keratin 200 ml",
"Product_Id": "00011343 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4756,
"name": "روز تونه قطع 1700 جم",
"price": 155,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روز تونه قطع 1700 جم",
"Product_EN": null,
"Product_Id": "00011345 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4757,
"name": "زاهر مانجو 4 لتر خام - موقوف",
"price": 94.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مانجو 4 لتر خام - موقوف",
"Product_EN": null,
"Product_Id": "00011347 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4758,
"name": "حلوانى لانشون رول زيتون 250 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى لانشون رول زيتون 250 جم",
"Product_EN": "Halwani Beef Olive Luncheon Roll 250 gm",
"Product_Id": "00011348 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4759,
"name": "حلوانى لانشون رول دجاج 250 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى لانشون رول دجاج 250 جم",
"Product_EN": "Halwani Chicken Luncheon Roll 250 gm",
"Product_Id": "00011349 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4760,
"name": "حلوانى لانشون رول لحم 250 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى لانشون رول لحم 250 جم",
"Product_EN": "Halwani Beef Luncheon Roll 250 gm",
"Product_Id": "00011350 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4761,
"name": "بائن عيش بلدى 5 ق",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بائن عيش بلدى 5 ق",
"Product_EN": null,
"Product_Id": "00011351 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4762,
"name": "الخير ملح مكرر ناعم كيس 300 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الخير ملح مكرر ناعم كيس 300 جم",
"Product_EN": null,
"Product_Id": "00011353 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4763,
"name": "نور ملح مكرر ناعم كيس 200 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نور ملح مكرر ناعم كيس 200 جم",
"Product_EN": null,
"Product_Id": "00011354 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4764,
"name": "نور ملح مكرر ناعم رشاش 160 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نور ملح مكرر ناعم رشاش 160 جم",
"Product_EN": null,
"Product_Id": "00011355 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4765,
"name": "نور ملح مكرر ناعم كيس 1 كجم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نور ملح مكرر ناعم كيس 1 كجم",
"Product_EN": null,
"Product_Id": "00011357 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4766,
"name": "ريتش ملح بحرى خشن برطمان 1 كجم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتش ملح بحرى خشن برطمان 1 كجم",
"Product_EN": null,
"Product_Id": "00011358 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4767,
"name": "ريتش ملح بحرى ناعم برطمان 1 كجم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتش ملح بحرى ناعم برطمان 1 كجم",
"Product_EN": null,
"Product_Id": "00011359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4768,
"name": "دكتور سولت ملح منخفض الصوديوم كيس 200 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دكتور سولت ملح منخفض الصوديوم كيس 200 جم",
"Product_EN": null,
"Product_Id": "00011360 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4769,
"name": "دكتور سولت ملح منخفض الصوديوم كيس 400 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دكتور سولت ملح منخفض الصوديوم كيس 400 جم",
"Product_EN": null,
"Product_Id": "00011361 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4770,
"name": "دكتور سولت ملح منخفض الصوديوم ملاحه 160 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دكتور سولت ملح منخفض الصوديوم ملاحه 160 جم",
"Product_EN": null,
"Product_Id": "00011362 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4771,
"name": "اجاج ملح يودى خشن كيس 500 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اجاج ملح يودى خشن كيس 500 جم",
"Product_EN": null,
"Product_Id": "00011363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4772,
"name": "اجاج ملح يودى خشن مطحنه 200 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اجاج ملح يودى خشن مطحنه 200 جم",
"Product_EN": null,
"Product_Id": "00011364 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4773,
"name": "بيوتى ملح الحليب سبا للاستحمام ليمون 300 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيوتى ملح الحليب سبا للاستحمام ليمون 300 جم",
"Product_EN": null,
"Product_Id": "00011365 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4774,
"name": "بيوتى ملح الحليب سبا للاستحمام توت 300 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيوتى ملح الحليب سبا للاستحمام توت 300 جم",
"Product_EN": null,
"Product_Id": "00011366 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4775,
"name": "بيوتى ملح الحليب سبا للاستحمام زبادى وحليب 300 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيوتى ملح الحليب سبا للاستحمام زبادى وحليب 300 جم",
"Product_EN": null,
"Product_Id": "00011367 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4776,
"name": "بيوتى ملح الحليب سبا للاستحمام لافندر وحليب 300 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيوتى ملح الحليب سبا للاستحمام لافندر وحليب 300 جم",
"Product_EN": null,
"Product_Id": "00011368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4777,
"name": "نور ملح مكرر ناعم كيس 450 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نور ملح مكرر ناعم كيس 450 جم",
"Product_EN": null,
"Product_Id": "00011369 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4778,
"name": "نيو كريمة كريمة الكاكاو والبندق بلاستيك 1 كجم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيو كريمة كريمة الكاكاو والبندق بلاستيك 1 كجم",
"Product_EN": "New Cream Cocoa and Hazelnut Cream Plastic 1 Kg ",
"Product_Id": "00011371 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4779,
"name": "سيلا رول قمامه 70*90 1 كجم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول قمامه 70*90 1 كجم",
"Product_EN": null,
"Product_Id": "00011372 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4780,
"name": "سيلا رول قمامه 60*70 1 كجم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول قمامه 60*70 1 كجم",
"Product_EN": null,
"Product_Id": "00011373 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4781,
"name": "سيلا رول قمامه 70*90 500 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول قمامه 70*90 500 جم",
"Product_EN": null,
"Product_Id": "00011374 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4782,
"name": "سيلا رول قمامه 70*60 500 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول قمامه 70*60 500 جم",
"Product_EN": null,
"Product_Id": "00011375 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4783,
"name": "سيلا رول قمامه 70*90 12 ق",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول قمامه 70*90 12 ق",
"Product_EN": null,
"Product_Id": "00011376 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4784,
"name": "سيلا رول قمامه 65*75 15 ق",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول قمامه 65*75 15 ق",
"Product_EN": null,
"Product_Id": "00011377 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4785,
"name": "سيلا رول قمامه 10 كيس",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول قمامه 10 كيس",
"Product_EN": null,
"Product_Id": "00011378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4786,
"name": "سيلا رول قمامه 20 كيس 50 * 55",
"price": 12.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول قمامه 20 كيس 50 * 55",
"Product_EN": null,
"Product_Id": "00011379 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4787,
"name": "سيلا مفرش سفره 90*110 35 م",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا مفرش سفره 90*110 35 م",
"Product_EN": null,
"Product_Id": "00011380 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4788,
"name": "سيلا مفرش سفره 90*110 20 م",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا مفرش سفره 90*110 20 م",
"Product_EN": null,
"Product_Id": "00011381 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4789,
"name": "سيلا مفرش سفره 1 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا مفرش سفره 1 كجم",
"Product_EN": null,
"Product_Id": "00011382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4790,
"name": "سيلا رول اكياس سندوتش 70 كيس",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول اكياس سندوتش 70 كيس",
"Product_EN": null,
"Product_Id": "00011383 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4791,
"name": "سيلا رول اكياس سندوتش 150 كيس",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول اكياس سندوتش 150 كيس",
"Product_EN": null,
"Product_Id": "00011384 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4792,
"name": "سيلا رول اكياس ثلاجه 60 كيس",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول اكياس ثلاجه 60 كيس",
"Product_EN": null,
"Product_Id": "00011385 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4793,
"name": "سيلا رول اكياس ثلاجه 125 كيس",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول اكياس ثلاجه 125 كيس",
"Product_EN": null,
"Product_Id": "00011386 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4794,
"name": "سيلا رول قمامه 12 كيس70*90",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول قمامه 12 كيس70*90",
"Product_EN": null,
"Product_Id": "00011387 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4795,
"name": "سيلا رول قمامه 25 كيس كور 110*110",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول قمامه 25 كيس كور 110*110",
"Product_EN": null,
"Product_Id": "00011388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4796,
"name": "سيلا رول مفرش سفره 10 مفرش",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول مفرش سفره 10 مفرش",
"Product_EN": null,
"Product_Id": "00011389 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4797,
"name": "سيلا رول مفرش سفره 25 مفرش",
"price": 16.32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول مفرش سفره 25 مفرش",
"Product_EN": null,
"Product_Id": "00011390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4798,
"name": "سيلا رول تغليف غذائى 40*20",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول تغليف غذائى 40*20",
"Product_EN": null,
"Product_Id": "00011391 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4799,
"name": "سيلا رول فويل الومنيوم 40سم *20م",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول فويل الومنيوم 40سم *20م",
"Product_EN": null,
"Product_Id": "00011392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4800,
"name": "سيلا رول فويل الومنيوم 40سم *10م",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول فويل الومنيوم 40سم *10م",
"Product_EN": null,
"Product_Id": "00011393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4801,
"name": "سيلا اكياس جود لوك 27*30",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا اكياس جود لوك 27*30",
"Product_EN": null,
"Product_Id": "00011394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4802,
"name": "سيلا اكياس جود لوك 30*175",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا اكياس جود لوك 30*175",
"Product_EN": null,
"Product_Id": "00011395 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4803,
"name": "سيلا اكياس فرن صغير 36*43",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا اكياس فرن صغير 36*43",
"Product_EN": null,
"Product_Id": "00011396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4804,
"name": "سيلا اكياس فرن وسط 43*60",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا اكياس فرن وسط 43*60",
"Product_EN": null,
"Product_Id": "00011397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4805,
"name": "سيلا اكياس فرن كبير",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا اكياس فرن كبير",
"Product_EN": null,
"Product_Id": "00011398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4806,
"name": "سيلا غطاء بوتجاز 4 اغلفه",
"price": 20.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا غطاء بوتجاز 4 اغلفه",
"Product_EN": null,
"Product_Id": "00011399 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4807,
"name": "نور ملح 700 جم 2 + 1 عرض",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نور ملح 700 جم 2 + 1 عرض",
"Product_EN": null,
"Product_Id": "00011400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4808,
"name": "رولى رول قمامه1\/2 كجم 70*90",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رولى رول قمامه1\/2 كجم 70*90",
"Product_EN": null,
"Product_Id": "00011401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4809,
"name": "رول رول اكياس قمامه 1\/2 كجم 60*70",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رول رول اكياس قمامه 1\/2 كجم 60*70",
"Product_EN": null,
"Product_Id": "00011402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4810,
"name": "رولى رول باكت 1 كجم 70*90",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رولى رول باكت 1 كجم 70*90",
"Product_EN": null,
"Product_Id": "00011403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4811,
"name": "رولى رول باكت 1كجم 60*70",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رولى رول باكت 1كجم 60*70",
"Product_EN": null,
"Product_Id": "00011404 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4812,
"name": "رولى رول مفرش سفره 125*175",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رولى رول مفرش سفره 125*175",
"Product_EN": null,
"Product_Id": "00011405 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4813,
"name": "اوكسى سائل ليمون اخضر بالنعناع 600 جم عرض",
"price": 10.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى سائل ليمون اخضر بالنعناع 600 جم عرض",
"Product_EN": null,
"Product_Id": "00011406 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4814,
"name": "اوكسى سائل فواكه 650 مل عرض",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى سائل فواكه 650 مل عرض",
"Product_EN": null,
"Product_Id": "00011407 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4815,
"name": "اوكسى اوتوماتك نسيم الشرق 4 كجم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى اوتوماتك نسيم الشرق 4 كجم",
"Product_EN": null,
"Product_Id": "00011408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4816,
"name": "فلوتس شوكولاتة 4 اصابع 45 جم ",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلوتس شوكولاتة 4 اصابع 45 جم ",
"Product_EN": "Flutes Chocolate 4 Fingers 45 g ",
"Product_Id": "00011409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4817,
"name": "فلوتس شوكولاتة 2 اصابع 22 جم ",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلوتس شوكولاتة 2 اصابع 22 جم ",
"Product_EN": "Flutes Chocolate 2 Fingers 22 g ",
"Product_Id": "00011410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4818,
"name": "فانش مزيل بقع بودر 450 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش مزيل بقع بودر 450 جم",
"Product_EN": null,
"Product_Id": "00011411 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4819,
"name": "فانش سائل مزيل بقع 900 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش سائل مزيل بقع 900 مل",
"Product_EN": null,
"Product_Id": "00011412 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4820,
"name": "زاهر كورنو سيفتى علبة 400 مل",
"price": 1.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر كورنو سيفتى علبة 400 مل",
"Product_EN": null,
"Product_Id": "00011413 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4821,
"name": "لاكتيل زبادى يونانى 105 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى يونانى 105 جم",
"Product_EN": "Lactel Greek Yogurt 105 gm",
"Product_Id": "00011414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4822,
"name": "الدقهليه باذنجان ميكس 500 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه باذنجان ميكس 500 جم",
"Product_EN": null,
"Product_Id": "00011415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4823,
"name": "الدقهليه بصل ذهبى 3 كجم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه بصل ذهبى 3 كجم",
"Product_EN": null,
"Product_Id": "00011416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4824,
"name": "الدقهليه بصل احمر 3 كجم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه بصل احمر 3 كجم",
"Product_EN": null,
"Product_Id": "00011417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4825,
"name": "الدقهليه بطاطس تحمير 3 كجم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه بطاطس تحمير 3 كجم",
"Product_EN": null,
"Product_Id": "00011418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4826,
"name": "الدقهليه بطاطس طهي 3 كجم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه بطاطس طهي 3 كجم",
"Product_EN": null,
"Product_Id": "00011419 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4827,
"name": "الدقهليه خيار 1 كجم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه خيار 1 كجم",
"Product_EN": null,
"Product_Id": "00011420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4828,
"name": "الدقهليه ليمون بلدى 500 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه ليمون بلدى 500 جم",
"Product_EN": null,
"Product_Id": "00011421 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4829,
"name": "الدقهليه طماطم 1 كجم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه طماطم 1 كجم",
"Product_EN": null,
"Product_Id": "00011422 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4830,
"name": "الدقهليه فلفل احمر 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه فلفل احمر 500 جم",
"Product_EN": null,
"Product_Id": "00011423 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4831,
"name": "الدقهليه فلفل اصفر 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه فلفل اصفر 500 جم",
"Product_EN": null,
"Product_Id": "00011424 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4832,
"name": "الدقهليه كرنب سلطه ابيض",
"price": 28.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه كرنب سلطه ابيض",
"Product_EN": null,
"Product_Id": "00011425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4833,
"name": "الدقهليه كرنب سلطه احمر",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه كرنب سلطه احمر",
"Product_EN": null,
"Product_Id": "00011426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4834,
"name": "الدقهليه ليمون اضاليا 1 كجم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهليه ليمون اضاليا 1 كجم",
"Product_EN": null,
"Product_Id": "00011427 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4835,
"name": "بصل اصفر ذهبى وزن - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بصل اصفر ذهبى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00011428 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4836,
"name": "لاندانا جبنه جوده كمون وزن",
"price": 200,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جوده كمون وزن",
"Product_EN": null,
"Product_Id": "00011429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4837,
"name": "لاندانا جبنه جوده لايت وزن",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جوده لايت وزن",
"Product_EN": null,
"Product_Id": "00011430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4838,
"name": "لاندانا جبنه جوده ماعز وزن",
"price": 320,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جوده ماعز وزن",
"Product_EN": null,
"Product_Id": "00011431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4839,
"name": "لاندانا جبنه ماسدام وزن",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه ماسدام وزن",
"Product_EN": null,
"Product_Id": "00011432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4840,
"name": "وش فخده بتلو مبرد وزن - بوم استلام - موقوف",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وش فخده بتلو مبرد وزن - بوم استلام - موقوف",
"Product_EN": null,
"Product_Id": "00011433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4841,
"name": "ظهر فخده بتلو مبرد وزن - بوم استلام",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ظهر فخده بتلو مبرد وزن - بوم استلام",
"Product_EN": null,
"Product_Id": "00011434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4842,
"name": "بتلو سمانة مبرد وزن - بوم استلام",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بتلو سمانة مبرد وزن - بوم استلام",
"Product_EN": null,
"Product_Id": "00011435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4843,
"name": "بتلو كولاتة مبرد وزن - بوم استلام",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بتلو كولاتة مبرد وزن - بوم استلام",
"Product_EN": null,
"Product_Id": "00011436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4844,
"name": "بتلو مكعبات جنوب افريقى وزن",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بتلو مكعبات جنوب افريقى وزن",
"Product_EN": null,
"Product_Id": "00011437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4845,
"name": "بتلو مفروم جنوب افريقى وزن",
"price": 155,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بتلو مفروم جنوب افريقى وزن",
"Product_EN": null,
"Product_Id": "00011438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4846,
"name": "بتلو بوفتيك ( اسكالوب ) جنوب افريقى وزن",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بتلو بوفتيك ( اسكالوب ) جنوب افريقى وزن",
"Product_EN": null,
"Product_Id": "00011439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4847,
"name": "بتلو شاورما جنوب افريقى وزن",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بتلو شاورما جنوب افريقى وزن",
"Product_EN": null,
"Product_Id": "00011440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4848,
"name": "بتلو موزه جنوب افريقى وزن",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بتلو موزه جنوب افريقى وزن",
"Product_EN": null,
"Product_Id": "00011441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4849,
"name": "بتلو سمانه جنوب افريقى وزن",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بتلو سمانه جنوب افريقى وزن",
"Product_EN": null,
"Product_Id": "00011442 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4850,
"name": "كارن بيف كبده شرائح بتلو 450 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف كبده شرائح بتلو 450 جم",
"Product_EN": null,
"Product_Id": "00011443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4851,
"name": "كارن بيف كبده اسكندرانى بتلو 450 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف كبده اسكندرانى بتلو 450 جم",
"Product_EN": null,
"Product_Id": "00011444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4852,
"name": "كارن بيف لحم مكعبات بتلو 450 جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف لحم مكعبات بتلو 450 جم",
"Product_EN": null,
"Product_Id": "00011445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4853,
"name": "كارن بيف لحم مفروم بتلو 450 جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف لحم مفروم بتلو 450 جم",
"Product_EN": null,
"Product_Id": "00011446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4854,
"name": "كارن بيف اسكالوب بانيه بتلو 600 جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف اسكالوب بانيه بتلو 600 جم",
"Product_EN": null,
"Product_Id": "00011447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4855,
"name": "كارن بيف استيك ستربولين بتلو 450 جم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف استيك ستربولين بتلو 450 جم",
"Product_EN": null,
"Product_Id": "00011448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4856,
"name": "كارن بيف ستيك ريب اى بتلو 450 جم",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف ستيك ريب اى بتلو 450 جم",
"Product_EN": null,
"Product_Id": "00011449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4857,
"name": "كارن بيف استيك فيليه بتلو 600 جم",
"price": 250,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف استيك فيليه بتلو 600 جم",
"Product_EN": null,
"Product_Id": "00011450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4858,
"name": "كارن بيف شرائح فيليه بتلو 450 جم",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف شرائح فيليه بتلو 450 جم",
"Product_EN": null,
"Product_Id": "00011451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4859,
"name": "كارن بيف سجق بتلو خلطه مصريه 450 جم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف سجق بتلو خلطه مصريه 450 جم",
"Product_EN": null,
"Product_Id": "00011452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4860,
"name": "كارن بيف كفته بتلو فرن 425 جم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف كفته بتلو فرن 425 جم",
"Product_EN": null,
"Product_Id": "00011453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4861,
"name": "كارن بيف كفته داوود باشا بتلو 350 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف كفته داوود باشا بتلو 350 جم",
"Product_EN": null,
"Product_Id": "00011454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4862,
"name": "كارن بيف برجر بتلو 250 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارن بيف برجر بتلو 250 جم",
"Product_EN": null,
"Product_Id": "00011455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4863,
"name": "اوكسى مسحوق يدوى 700 جم +125 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوى 700 جم +125 جم",
"Product_EN": null,
"Product_Id": "00011457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4864,
"name": "اوكسى جيل اتوماتيك 2.5+500 جم عرض",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى جيل اتوماتيك 2.5+500 جم عرض",
"Product_EN": null,
"Product_Id": "00011458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4865,
"name": "فانش ئل مزيل بقع 900 مل",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش ئل مزيل بقع 900 مل",
"Product_EN": null,
"Product_Id": "00011459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4866,
"name": "ميلكا اوريو شوكولاتة بالبسكويت 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا اوريو شوكولاتة بالبسكويت 100 جم",
"Product_EN": "Milka OREO Chocolate Biscuits 100 gm",
"Product_Id": "00011460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4867,
"name": "ميلكا شوكولاتة بيضاء بالبسكويت 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بيضاء بالبسكويت 100 جم",
"Product_EN": "Milka White Chocolate Biscuits 100 gm",
"Product_Id": "00011461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4868,
"name": "ميلكا شوكولاتة كراميل 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة كراميل 100 جم",
"Product_EN": "Milka Caramel Chocolate 100 gm",
"Product_Id": "00011462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4869,
"name": "ميلكا شوكولاتة زبادي 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة زبادي 100 جم",
"Product_EN": "Milka Chocolate Yogurt 100 gm",
"Product_Id": "00011463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4870,
"name": "ميلكا شيكولاته دارك بالحليب 85 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شيكولاته دارك بالحليب 85 جم",
"Product_EN": "Milka Chocolate Dark Milk 85 gm",
"Product_Id": "00011464 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4871,
"name": "ميلكا شوكولاتة بالحليب باللوز 85 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالحليب باللوز 85 جم",
"Product_EN": "Milka Almond Milk Chocolate 85 gm",
"Product_Id": "00011465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4872,
"name": "ميلكا شيكولاته ترابيل كراميل 90 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شيكولاته ترابيل كراميل 90 جم",
"Product_EN": "Milka Triple Caramel Chocolate 90 gm",
"Product_Id": "00011466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4873,
"name": "ميلكا شوكولاتة بالحليب مع الكريمة والبسكويت 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالحليب مع الكريمة والبسكويت 100 جم",
"Product_EN": "Milka Milk Chocolate With Cream & Biscuits 100 gm",
"Product_Id": "00011467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4874,
"name": "ميلكا شوكولاتة بالحليب بالميلكنيز 87.5 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالحليب بالميلكنيز 87.5 جم",
"Product_EN": "Milka Milk Chocolate With Milknaise 87.5 gm",
"Product_Id": "00011468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4875,
"name": "ميلكا شوكولاتة بندق 100 جم - موقوف",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بندق 100 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4876,
"name": "ميلكا شوكولاتة توت 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة توت 100 جم",
"Product_EN": "Milka Raspberry Chocolate 100 gm",
"Product_Id": "00011470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4877,
"name": "ماكينة حلاقة VIP ",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماكينة حلاقة VIP ",
"Product_EN": "vip Shaver",
"Product_Id": "00011471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4878,
"name": "نيدو حليب مجفف 300 جم + نسكويك مشروب شيكولاته 77جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيدو حليب مجفف 300 جم + نسكويك مشروب شيكولاته 77جم",
"Product_EN": null,
"Product_Id": "00011472 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4879,
"name": "نستله سيريلاك قمح ولبن 250 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله سيريلاك قمح ولبن 250 جم",
"Product_EN": null,
"Product_Id": "00011473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4880,
"name": "الخير خل ابيض طبيعى 900 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الخير خل ابيض طبيعى 900 مل",
"Product_EN": null,
"Product_Id": "00011475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4881,
"name": "الخير تونه مفتته 140 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الخير تونه مفتته 140 جم",
"Product_EN": null,
"Product_Id": "00011476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4882,
"name": "الخير تونه قطع 140 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الخير تونه قطع 140 جم",
"Product_EN": null,
"Product_Id": "00011477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4883,
"name": "الخير ارز بلدى 1 كجم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الخير ارز بلدى 1 كجم",
"Product_EN": "Al Khair Rice 1 Kg",
"Product_Id": "00011478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4884,
"name": "زاهر بقسماط مطحون 400 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط مطحون 400 جم",
"Product_EN": "Zaher Bread Crumbs 400 gm",
"Product_Id": "00011481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4885,
"name": "تفاح اصفر لبنانى وزن",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تفاح اصفر لبنانى وزن",
"Product_EN": null,
"Product_Id": "00011482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4886,
"name": "رولى رول قمامة 1 كيلو 70 * 90 عرض",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رولى رول قمامة 1 كيلو 70 * 90 عرض",
"Product_EN": null,
"Product_Id": "00011483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4887,
"name": "توليدو تونه مفتته بارد 170 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو تونه مفتته بارد 170 جم",
"Product_EN": "Tolido Crumbled Tuna 170 g",
"Product_Id": "00011484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4888,
"name": "توليدو تونه قطعه واحده حار 185 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو تونه قطعه واحده حار 185 جم",
"Product_EN": "Tolido Tuna Pieces Spicy 185 gm",
"Product_Id": "00011485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4889,
"name": "توليدو تونه قطعة واحده دايت 185جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو تونه قطعة واحده دايت 185جم",
"Product_EN": "Tolido Tuna Diet 1 Piece 185 gm",
"Product_Id": "00011486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4890,
"name": "توليدو ارز بسمتى 1 كجم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو ارز بسمتى 1 كجم",
"Product_EN": "Tolido Basmati Rice 1 kg",
"Product_Id": "00011487 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4891,
"name": "ميرندا برتقال الهضبة زجاج 350 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميرندا برتقال الهضبة زجاج 350 مل",
"Product_EN": "Mirinda Orange El Hadaba Bottle 350 ml",
"Product_Id": "00011488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4892,
"name": "توليدو قهوه 2*1 12 ظرف * 2علبة + مج عرض",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو قهوه 2*1 12 ظرف * 2علبة + مج عرض",
"Product_EN": "Toledo coffee 2 * 1 * 2 boxes + display mug",
"Product_Id": "00011489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4893,
"name": "اريال مسحوق يدورى لافندر 1 كجم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدورى لافندر 1 كجم",
"Product_EN": null,
"Product_Id": "00011490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4894,
"name": "اريال مسحوف اتوماتيك داونى 6كجم + فيرى 650 مل",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوف اتوماتيك داونى 6كجم + فيرى 650 مل",
"Product_EN": null,
"Product_Id": "00011491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4895,
"name": "اريال جل اوتوماتيك لافندر 2.5 كجم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال جل اوتوماتيك لافندر 2.5 كجم",
"Product_EN": null,
"Product_Id": "00011492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4896,
"name": "اريال مسحوق اوتوماتيك 6 كجم",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اوتوماتيك 6 كجم",
"Product_EN": null,
"Product_Id": "00011493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4897,
"name": "اولويز الترا فوط صحيه طويل 8 فوطه",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز الترا فوط صحيه طويل 8 فوطه",
"Product_EN": null,
"Product_Id": "00011494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4898,
"name": "اولويز فوط صحيه الترا حساس طويل جدا 7 فوطه",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز فوط صحيه الترا حساس طويل جدا 7 فوطه",
"Product_EN": null,
"Product_Id": "00011495 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4899,
"name": "الويز ليلى 16*8 فوطه ",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ليلى 16*8 فوطه ",
"Product_EN": null,
"Product_Id": "00011496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4900,
"name": "الويز ليلى طويل جدا دبل 16*16 فوطه ",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ليلى طويل جدا دبل 16*16 فوطه ",
"Product_EN": null,
"Product_Id": "00011497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4901,
"name": "فيرى كبسولات اول ان وان لغسالات الاطباق",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى كبسولات اول ان وان لغسالات الاطباق",
"Product_EN": null,
"Product_Id": "00011498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4902,
"name": "هيربل شامبو بالفراوله والنعناع 400 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو بالفراوله والنعناع 400 مل",
"Product_EN": null,
"Product_Id": "00011499 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4903,
"name": "هيربل شامبو اسنسز جنزبيل الازرق 400 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو اسنسز جنزبيل الازرق 400 مل",
"Product_EN": null,
"Product_Id": "00011500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4904,
"name": "بانتين شامبو ملكى 400 مل + بلسم ذهبى",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ملكى 400 مل + بلسم ذهبى",
"Product_EN": null,
"Product_Id": "00011501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4905,
"name": "بانتين شامبو ناعم وحريرى 400 مل + بانتين بلسم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ناعم وحريرى 400 مل + بانتين بلسم",
"Product_EN": null,
"Product_Id": "00011502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4906,
"name": "بانتين شامبو 400 مل + بديل الزيت 180م + بلسم 200 م",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو 400 مل + بديل الزيت 180م + بلسم 200 م",
"Product_EN": null,
"Product_Id": "00011503 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4907,
"name": "اولويز الترا ماسيه فوط صحيه طويل 14 فوطه",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز الترا ماسيه فوط صحيه طويل 14 فوطه",
"Product_EN": null,
"Product_Id": "00011504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4908,
"name": "اريال مسحوق يدوى لافندر 1 كجم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى لافندر 1 كجم",
"Product_EN": null,
"Product_Id": "00011505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4909,
"name": "هاينز بيتى صوص بالفلفل 290 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز بيتى صوص بالفلفل 290 جم",
"Product_EN": "Heinz Betty Pepper Sauce 290 gm",
"Product_Id": "00011508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4910,
"name": "هاينز بيتى صوص بالبصل 290 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز بيتى صوص بالبصل 290 جم",
"Product_EN": "Heinz Betty Onion Sauce 290 gm",
"Product_Id": "00011509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4911,
"name": "لايف بوى سائل غسيل ايدى عنايه بالبشره 450 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى سائل غسيل ايدى عنايه بالبشره 450 مل",
"Product_EN": "Lifebuoy Hand Wash Skin Care 450 ml",
"Product_Id": "00011510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4912,
"name": "لوكس شاور سحر الجمال 250 مل + لوفة",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس شاور سحر الجمال 250 مل + لوفة",
"Product_EN": "LUX Shower Magical Beauty 250 ml + loofah",
"Product_Id": "00011511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4913,
"name": "عطاره . كريم زبده الشيا",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كريم زبده الشيا",
"Product_EN": "Attara Shea Butter Cream - Scalable",
"Product_Id": "00011513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4914,
"name": "عطاره . كريم العود الملكي",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كريم العود الملكي",
"Product_EN": "Attara - Royal Oud Cream",
"Product_Id": "00011515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4915,
"name": "عطاره . مسك الطهاره",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مسك الطهاره",
"Product_EN": "Attara - Musk Altahara",
"Product_Id": "00011516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4916,
"name": "عطاره . زيت كبد الحوت",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زيت كبد الحوت",
"Product_EN": "Attara - COD Liver Oil ",
"Product_Id": "00011517 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4917,
"name": "عطاره . زيت جرجير",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زيت جرجير",
"Product_EN": "Attara - Eruca Oil",
"Product_Id": "00011518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4918,
"name": "عطاره . عسل جلوكوز",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . عسل جلوكوز",
"Product_EN": "Attara - Glucose Honey",
"Product_Id": "00011519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4919,
"name": "عطاره . بصل مجفف وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بصل مجفف وزن",
"Product_EN": "Attara Dried Onion - Scalable ",
"Product_Id": "00011520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4920,
"name": "عطاره . قسط هندى وزن",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . قسط هندى وزن",
"Product_EN": "Attara Indian Costus - Scalable",
"Product_Id": "00011521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4921,
"name": "عطاره . خردل وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . خردل وزن",
"Product_EN": "Attara Mustard - Scalable ",
"Product_Id": "00011522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4922,
"name": "عطاره . بذور جرجير وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذور جرجير وزن",
"Product_EN": "Attara Eruca Seeds - Scalable ",
"Product_Id": "00011523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4923,
"name": "عطاره . بذور فجل وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذور فجل وزن",
"Product_EN": "Attara Radish Seeds - Scalable ",
"Product_Id": "00011524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4924,
"name": "عطاره . بذور برسيم وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذور برسيم وزن",
"Product_EN": "Attara Alfalfa Seeds - Scalable ",
"Product_Id": "00011525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4925,
"name": "عطاره . بذور ريحان وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذور ريحان وزن",
"Product_EN": "Attara Basil Seeds - Scalable ",
"Product_Id": "00011526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4926,
"name": "عطاره . بذور بقدونس وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذور بقدونس وزن",
"Product_EN": "Attara Parsley Seeds - Scalable ",
"Product_Id": "00011527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4927,
"name": "عطاره . بذور كرفس وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذور كرفس وزن",
"Product_EN": "Attara Celery Seeds - Scalable",
"Product_Id": "00011528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4928,
"name": "عطاره . بذور شبت وزن",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذور شبت وزن",
"Product_EN": "Attara Dill Seeds - Scalable ",
"Product_Id": "00011529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4929,
"name": "عطاره . ترمس مطحون وزن",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ترمس مطحون وزن",
"Product_EN": "Attara Crushed Lupine - Scalable ",
"Product_Id": "00011530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4930,
"name": "عطاره . ريحه كحك وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ريحه كحك وزن",
"Product_EN": "Attara Smell kahak - Scalable ",
"Product_Id": "00011531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4931,
"name": "دانون مشروب فراوله موز بالحليب 1 لتر",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب فراوله موز بالحليب 1 لتر",
"Product_EN": "Danao Strawberry Banana Milk Drink 1 L",
"Product_Id": "00011532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4932,
"name": "دانون مشروب فراولة موز بالحليب 235 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب فراولة موز بالحليب 235 مل",
"Product_EN": "Danao Strawberry Banana Milk Drink 235 ml",
"Product_Id": "00011534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4933,
"name": "فريدا منظف اسطح الزيزفون 480 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا منظف اسطح الزيزفون 480 مل",
"Product_EN": null,
"Product_Id": "00011535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4934,
"name": "فريدا منظف اسطح مشمش 480 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا منظف اسطح مشمش 480 مل",
"Product_EN": null,
"Product_Id": "00011536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4935,
"name": "فريدا منظف اسطح جوز هند 480 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا منظف اسطح جوز هند 480 مل",
"Product_EN": null,
"Product_Id": "00011537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4936,
"name": "فريدا منظف اسطح توت برى480 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا منظف اسطح توت برى480 مل",
"Product_EN": null,
"Product_Id": "00011538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4937,
"name": "فريدا منظف اسطح عود 480 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا منظف اسطح عود 480 مل",
"Product_EN": null,
"Product_Id": "00011539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4938,
"name": "فريدا منظف اسطح رائحه النظافه 480 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا منظف اسطح رائحه النظافه 480 مل",
"Product_EN": null,
"Product_Id": "00011540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4939,
"name": "فريدا منعم ملابس نسيم الربيع 2 لتر - موقوف",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا منعم ملابس نسيم الربيع 2 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00011541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4940,
"name": "فريدا منعم ملابس نسيم الربيع 2 لتر",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا منعم ملابس نسيم الربيع 2 لتر",
"Product_EN": null,
"Product_Id": "00011542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4941,
"name": "فريدا سائل غسيل ايدى توت برى 520 مل * 2 قطعه ",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فريدا سائل غسيل ايدى توت برى 520 مل * 2 قطعه ",
"Product_EN": "Frida Hand Wash Liquid Cranberry 520 ml * 2 Pieces",
"Product_Id": "00011543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4942,
"name": "فريدا سائل غسيل ايدى 520 مل * 2 قطعه ",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فريدا سائل غسيل ايدى 520 مل * 2 قطعه ",
"Product_EN": null,
"Product_Id": "00011544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4943,
"name": "فريدا سائل غسيل ايدى جوز هند 520 مل * 2 قطعه",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فريدا سائل غسيل ايدى جوز هند 520 مل * 2 قطعه",
"Product_EN": "Frida Hand Wash Liquid Coconut 520 ml * 2 pieces",
"Product_Id": "00011545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4944,
"name": "فريدا سائل غسيل ايدى نسيم الربيع 520 مل * 2 قطعه",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فريدا سائل غسيل ايدى نسيم الربيع 520 مل * 2 قطعه",
"Product_EN": "Frida Hand Wash Liquid Spring 520 ml * 2 Pieces",
"Product_Id": "00011546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4945,
"name": "فيبا منظف صحون بقوه الاوكسجين 3 لتر",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا منظف صحون بقوه الاوكسجين 3 لتر",
"Product_EN": null,
"Product_Id": "00011547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4946,
"name": "ماكسيل منظف ارضيات 1.8 لتر",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكسيل منظف ارضيات 1.8 لتر",
"Product_EN": null,
"Product_Id": "00011548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4947,
"name": "ديفا سائل غسيل ايدي ريلاكس 500 مل ",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديفا سائل غسيل ايدي ريلاكس 500 مل ",
"Product_EN": null,
"Product_Id": "00011550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4948,
"name": "فيبا منظف 520 مل 1+1",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا منظف 520 مل 1+1",
"Product_EN": null,
"Product_Id": "00011551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4949,
"name": "فلفليتا مزيل بقع رشاش 700 مل + عبوه اقتصاديه 600 م",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفليتا مزيل بقع رشاش 700 مل + عبوه اقتصاديه 600 م",
"Product_EN": null,
"Product_Id": "00011552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4950,
"name": "الدقهلية فلفل الوان ميكس",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية فلفل الوان ميكس",
"Product_EN": null,
"Product_Id": "00011553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4951,
"name": "الدقهلية فلفل بلدى اخضر",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الدقهلية فلفل بلدى اخضر",
"Product_EN": null,
"Product_Id": "00011554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4952,
"name": "جاما باك طبق اسود pet t11\/41",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "جاما باك طبق اسود pet t11\/41",
"Product_EN": null,
"Product_Id": "00011555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4953,
"name": "جاما باك1 كجم طبق اسود pet t5\/39 1",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "جاما باك1 كجم طبق اسود pet t5\/39 1",
"Product_EN": null,
"Product_Id": "00011556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4954,
"name": "سيلا مفرش سفره 110*110",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا مفرش سفره 110*110",
"Product_EN": null,
"Product_Id": "00011557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4955,
"name": "سيلا رول تغليف غذائى 40 سم",
"price": 20.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا رول تغليف غذائى 40 سم",
"Product_EN": null,
"Product_Id": "00011558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4956,
"name": "يوسفى بلدى وزن",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "يوسفى بلدى وزن",
"Product_EN": null,
"Product_Id": "00011560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4957,
"name": "ردة ناعمة وزن",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ردة ناعمة وزن",
"Product_EN": "Attara Stabilized Rice Bran - Scalable ",
"Product_Id": "00011561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4958,
"name": "بيسكولاتة اصابع شيكولاتة",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيسكولاتة اصابع شيكولاتة",
"Product_EN": null,
"Product_Id": "00011562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4959,
"name": "اوزمو كونو شوكولاته 24 جم * 4 ق",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوزمو كونو شوكولاته 24 جم * 4 ق",
"Product_EN": "Ozmo Cornet Chocolate 24 gm * 4 Pieces ",
"Product_Id": "00011563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4960,
"name": "ويفر ميموريز بالشوكولاته 4*20*40 جم",
"price": 133,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ويفر ميموريز بالشوكولاته 4*20*40 جم",
"Product_EN": null,
"Product_Id": "00011564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4961,
"name": "ويفر ميموريز بالبندق 4*20*40 جم",
"price": 133,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ويفر ميموريز بالبندق 4*20*40 جم",
"Product_EN": null,
"Product_Id": "00011565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4962,
"name": "ويفر ميموريز بالفانليا 4*20*40 جم",
"price": 133,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ويفر ميموريز بالفانليا 4*20*40 جم",
"Product_EN": null,
"Product_Id": "00011566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4963,
"name": "ويفر ميموريز جوي بالشوكولاته 4*24*25 جم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ويفر ميموريز جوي بالشوكولاته 4*24*25 جم",
"Product_EN": null,
"Product_Id": "00011567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4964,
"name": "ويفر ميموريز جوي بالفانليا 4*24*25 جم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ويفر ميموريز جوي بالفانليا 4*24*25 جم",
"Product_EN": null,
"Product_Id": "00011568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4965,
"name": "ويفر ميموريز جوي بالبندق 4*24*25 جم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ويفر ميموريز جوي بالبندق 4*24*25 جم",
"Product_EN": null,
"Product_Id": "00011569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4966,
"name": "ميموريز بسكويت شاي 12*12*80 جم",
"price": 77,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميموريز بسكويت شاي 12*12*80 جم",
"Product_EN": null,
"Product_Id": "00011570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4967,
"name": "ميموريز بسكويت شاي 6*12*150 جم",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميموريز بسكويت شاي 6*12*150 جم",
"Product_EN": null,
"Product_Id": "00011571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4968,
"name": "ميموريز كوكيز بالتمر 24*110 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميموريز كوكيز بالتمر 24*110 جم",
"Product_EN": null,
"Product_Id": "00011572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4969,
"name": "ميموريز كوكيز بالفراولة 24*110 جم",
"price": 345,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميموريز كوكيز بالفراولة 24*110 جم",
"Product_EN": null,
"Product_Id": "00011573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4970,
"name": "عطاره . بذور خردل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بذور خردل",
"Product_EN": "Attara Mustard Seeds ",
"Product_Id": "00011574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4971,
"name": "عطاره . شوكولاتة بيضاء خام وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاتة بيضاء خام وزن",
"Product_EN": "Attara Raw White Chocolate - Scalable",
"Product_Id": "00011575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4972,
"name": "عطاره . دقيق ذرة وزن",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . دقيق ذرة وزن",
"Product_EN": "Attara Corn Flour - Scalable ",
"Product_Id": "00011576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4973,
"name": "عطاره . دم غزال 1 ق",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . دم غزال 1 ق",
"Product_EN": "Attara - Deer Blood 1 Piece ",
"Product_Id": "00011577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4974,
"name": "عطاره . زعفران بودرة 1 ق",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زعفران بودرة 1 ق",
"Product_EN": "Attara - Saffron Powder 1 Piece",
"Product_Id": "00011578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4975,
"name": "اريال كبسولات بلمسه الداونى 15 كبسوله",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال كبسولات بلمسه الداونى 15 كبسوله",
"Product_EN": null,
"Product_Id": "00011579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4976,
"name": "الويز الترا طويله جدا اقنصادى 12 حفاضه",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز الترا طويله جدا اقنصادى 12 حفاضه",
"Product_EN": null,
"Product_Id": "00011580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4977,
"name": "بونكس مسحوق اتوماتيك فل 10 كجم",
"price": 181,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بونكس مسحوق اتوماتيك فل 10 كجم",
"Product_EN": null,
"Product_Id": "00011581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4978,
"name": "كرست معجون اسنان 50 مل",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كرست معجون اسنان 50 مل",
"Product_EN": null,
"Product_Id": "00011582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4979,
"name": "نيوتيلا بندق طبيعى 200 جم ",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيوتيلا بندق طبيعى 200 جم ",
"Product_EN": null,
"Product_Id": "00011584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4980,
"name": "نيوتيلا بندق طبيعى 350 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيوتيلا بندق طبيعى 350 جم",
"Product_EN": null,
"Product_Id": "00011585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4981,
"name": "نيوتيلا بطعم البندق طبيعى 200 جم بلاستيك",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيوتيلا بطعم البندق طبيعى 200 جم بلاستيك",
"Product_EN": null,
"Product_Id": "00011586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4982,
"name": "نيوتيلا بطعم البندق طبيعى 500 جم بلاستيك",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيوتيلا بطعم البندق طبيعى 500 جم بلاستيك",
"Product_EN": null,
"Product_Id": "00011587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4983,
"name": "نيوتيلا بطعم البندق طبيعى 1 ك",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيوتيلا بطعم البندق طبيعى 1 ك",
"Product_EN": null,
"Product_Id": "00011588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4984,
"name": "بيرى كريمة الشيكولاتة بالبندق 350 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيرى كريمة الشيكولاتة بالبندق 350 جم",
"Product_EN": null,
"Product_Id": "00011589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4985,
"name": "دانون مشروب زبادى ماكس بالمانجو 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب زبادى ماكس بالمانجو 400 جم",
"Product_EN": "Danone Max Mango Yogurt Drink 400 gm",
"Product_Id": "00011590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4986,
"name": "حواء مكرونه قواقع 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حواء مكرونه قواقع 400 جم",
"Product_EN": "Hawaa Shells Pasta 400 gm",
"Product_Id": "00011591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4987,
"name": "حواء مكرونه فيوزيللى 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حواء مكرونه فيوزيللى 400 جم",
"Product_EN": "Hawaa Fusilli Pasta 400 gm",
"Product_Id": "00011592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4988,
"name": "حواء مكرونه شرايط 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حواء مكرونه شرايط 400 جم",
"Product_EN": "Hawaa Fettuccine Pasta 400 gm",
"Product_Id": "00011593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4989,
"name": "حواء مكرونه مينى فرن 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حواء مكرونه مينى فرن 400 جم",
"Product_EN": "Hawaa Penne Pasta Mini 400 gm",
"Product_Id": "00011594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4990,
"name": "كونتى بن ساده سبشيال 500 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كونتى بن ساده سبشيال 500 جم",
"Product_EN": null,
"Product_Id": "00011595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4991,
"name": "كونتى بن محوج سبشيال 500 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كونتى بن محوج سبشيال 500 جم",
"Product_EN": null,
"Product_Id": "00011596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4992,
"name": "كونتى بن غامق سبشيال 500 جم",
"price": 62.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كونتى بن غامق سبشيال 500 جم",
"Product_EN": null,
"Product_Id": "00011597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4993,
"name": "كونتى بن بندق قطع 500 جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كونتى بن بندق قطع 500 جم",
"Product_EN": null,
"Product_Id": "00011598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4994,
"name": "كونتى بن غامق سبشيال 250 جم",
"price": 31.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كونتى بن غامق سبشيال 250 جم",
"Product_EN": null,
"Product_Id": "00011599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4995,
"name": "كونتى بن محوج سبشيال 250 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "كونتى بن محوج سبشيال 250 جم",
"Product_EN": null,
"Product_Id": "00011600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4996,
"name": "كوكس كورن فلاور 60 جم",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس كورن فلاور 60 جم",
"Product_EN": null,
"Product_Id": "00011601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4997,
"name": "شوجر ماتش سكر دايت 75 كيس",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شوجر ماتش سكر دايت 75 كيس",
"Product_EN": null,
"Product_Id": "00011602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4998,
"name": "شوجر ماتش سكر دايت 50 كيس",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شوجر ماتش سكر دايت 50 كيس",
"Product_EN": null,
"Product_Id": "00011603 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 4999,
"name": "افانتى حليب مجفف800 جم",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "افانتى حليب مجفف800 جم",
"Product_EN": null,
"Product_Id": "00011604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5000,
"name": "العبد كوكيز بقطع الشيكولاته 2 ق",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد كوكيز بقطع الشيكولاته 2 ق",
"Product_EN": null,
"Product_Id": "00011605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5001,
"name": "العبد كوكيز بقطع الشيكولاته 6 ق",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد كوكيز بقطع الشيكولاته 6 ق",
"Product_EN": null,
"Product_Id": "00011606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5002,
"name": "اكياس حليب مطبوعة (20×35) عثمان عبادة",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اكياس حليب مطبوعة (20×35) عثمان عبادة",
"Product_EN": null,
"Product_Id": "00011607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5003,
"name": "صن لايت مسحوق اوتوماتيك برائحة نسيم البحر4كجم",
"price": 178,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "صن لايت مسحوق اوتوماتيك برائحة نسيم البحر4كجم",
"Product_EN": "Sunlight Automatic Powder Sea Breeze Fresh 4 kg",
"Product_Id": "00011608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5004,
"name": "ريسكونا مزيل عرق رجالى اكسترا 50 مل",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريسكونا مزيل عرق رجالى اكسترا 50 مل",
"Product_EN": "Rexona Men Antiperspirant Xtra 50 ml",
"Product_Id": "00011610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5005,
"name": "ريكسونا مزيل عرق رجالى وايت 50 مل",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق رجالى وايت 50 مل",
"Product_EN": "Rexona Men Antiperspirant White 50ml",
"Product_Id": "00011611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5006,
"name": "حلوانى فصوص رومى وزن",
"price": 288,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى فصوص رومى وزن",
"Product_EN": "Halwani Turkey Lobes - Weight ",
"Product_Id": "00011612 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5007,
"name": "كنور خلطه بشاميل 70 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطه بشاميل 70 جم",
"Product_EN": "Knorr Bechamel Mix 70 gm",
"Product_Id": "00011613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5008,
"name": "كنور خلطه كفته 35 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطه كفته 35 جم",
"Product_EN": "Knorr Kofta Mix 35 gm",
"Product_Id": "00011614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5009,
"name": "ليبتون شاى 25 فتلة - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 25 فتلة - موقوف",
"Product_EN": "",
"Product_Id": "00011615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5010,
"name": "ليبتون شاى ناعم 270 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى ناعم 270 جم",
"Product_EN": "Lipton Dust Tea 270 gm",
"Product_Id": "00011616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5011,
"name": "سوهاجى برغل 500 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى برغل 500 جم",
"Product_EN": "Suhagy Bulgur 500 g",
"Product_Id": "00000781 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5012,
"name": "الضحى ترمس 500 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى ترمس 500 جم",
"Product_EN": "Al Douha Lupine 500 g",
"Product_Id": "00000782 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5013,
"name": "الضحى ذرة فيشار 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى ذرة فيشار 500 جم",
"Product_EN": "Al Doha Pop Corn 500 g",
"Product_Id": "00000785 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5014,
"name": "زاهر عسل اسود اكياس وزن",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عسل اسود اكياس وزن",
"Product_EN": "Zaher Molasses - Scalable ",
"Product_Id": "00000787 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5015,
"name": "سوهاجى ترمس 500 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى ترمس 500 جم",
"Product_EN": "Suhagy Lupine 500 g",
"Product_Id": "00000788 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5016,
"name": "الضحى حمص طبيخ 100 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى حمص طبيخ 100 جم",
"Product_EN": "Al Doha Chickpeas 50 gm",
"Product_Id": "00000789 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5017,
"name": "حلاوه سودانى ممتازه وزن - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلاوه سودانى ممتازه وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000791 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5018,
"name": "المثالى ارز بسمتى وزن - موقوف",
"price": 15.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى ارز بسمتى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000794 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5019,
"name": "الدلتا عدس اصفر 500 جم",
"price": 15.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا عدس اصفر 500 جم",
"Product_EN": "Al Delta Yellow Lentils 500 gm",
"Product_Id": "00000796 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5020,
"name": "سوهاجى ذرة فشار 500 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى ذرة فشار 500 جم",
"Product_EN": "Suhagy Pop Corn 500 g",
"Product_Id": "00000797 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5021,
"name": "الحملاوى حلاوه شيكولاتة وزن - موقوف",
"price": 29.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الحملاوى حلاوه شيكولاتة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000798 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5022,
"name": "الدلتا عدس بجبة 500 جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا عدس بجبة 500 جم",
"Product_EN": "Al Delta Browen Lentils 500 gm ",
"Product_Id": "00000799 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5023,
"name": "الحملاوى حلاوه ساده وزن - موقوف",
"price": 28.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الحملاوى حلاوه ساده وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000801 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5024,
"name": "الدلتا حمص طبيخ 100جم",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا حمص طبيخ 100جم",
"Product_EN": "Al Delta Chickpeas 100 gm",
"Product_Id": "00000802 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5025,
"name": "سوهاجى عدس بجبة 500 جم",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى عدس بجبة 500 جم",
"Product_EN": "Suhagy Brown Lentils 500 g",
"Product_Id": "00000803 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5026,
"name": "الدلتا فريك 500 جم",
"price": 12.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا فريك 500 جم",
"Product_EN": "Al Delta Freekeh 500 gm ",
"Product_Id": "00000805 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5027,
"name": "رنجه هولندى دلعه وزن",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رنجه هولندى دلعه وزن",
"Product_EN": null,
"Product_Id": "00000806 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5028,
"name": "الدلتا قمح 500 جم",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا قمح 500 جم",
"Product_EN": "Al Delta Wheat 500 gm ",
"Product_Id": "00000808 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5029,
"name": "سوهاجى فريك 500 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:43",
"updated_at": "2021-11-01 19:45:43",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى فريك 500 جم",
"Product_EN": "Suhagy Frek 500 g",
"Product_Id": "00000809 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5030,
"name": "كريستال زيت ذرة 1 لتر - موقوف",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذرة 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00000811 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5031,
"name": "كريستال زيت ذرة 2 لتر - موقوف",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذرة 2 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00000813 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5032,
"name": "سوهاجى فول مجروش 500 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى فول مجروش 500 جم",
"Product_EN": "Suhagy Beans Crushed 500 g",
"Product_Id": "00000814 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5033,
"name": "ناشونال بهارات للبريانى 45جم - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناشونال بهارات للبريانى 45جم - موقوف",
"Product_EN": null,
"Product_Id": "00000815 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5034,
"name": "سوهاجى لوبيا بلدى 500 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى لوبيا بلدى 500 جم",
"Product_EN": "Suhagy Black Eyed Beans 500 g",
"Product_Id": "00000819 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5035,
"name": "وادى فود زيت زيتون 500مل - موقوف",
"price": 47.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود زيت زيتون 500مل - موقوف",
"Product_EN": null,
"Product_Id": "00000820 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5036,
"name": "ناشونال بهارات سمك 50 جم - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناشونال بهارات سمك 50 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000821 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5037,
"name": "عافيه زيت ذرة 2.4 لتر",
"price": 77.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت ذرة 2.4 لتر",
"Product_EN": "Afia Corn Oil 2.4 L ",
"Product_Id": "00000823 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5038,
"name": "سوهاجى لوبيا بيضاء 500 جم",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى لوبيا بيضاء 500 جم",
"Product_EN": "Suhagy White Eyed Beans 500 g",
"Product_Id": "00000824 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5039,
"name": "ناشونال خلطه بانيه 100جم - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناشونال خلطه بانيه 100جم - موقوف",
"Product_EN": null,
"Product_Id": "00000825 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5040,
"name": "ناشونال بهارات حواوشى 50جم - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناشونال بهارات حواوشى 50جم - موقوف",
"Product_EN": null,
"Product_Id": "00000828 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5041,
"name": "الضحى فلفل اسود ناعم 20 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى فلفل اسود ناعم 20 جم",
"Product_EN": "Al Doha Black Pepper 20 g",
"Product_Id": "00000829 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5042,
"name": "الضحى فلفل اسود ناعم ملاحة 70 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى فلفل اسود ناعم ملاحة 70 جم",
"Product_EN": "Al Doha Milled Black Pepper 70 g",
"Product_Id": "00000830 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5043,
"name": "الضحى كمون ناعم ملاحة 60 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى كمون ناعم ملاحة 60 جم",
"Product_EN": "Al Doha Milled Cumin 60 g",
"Product_Id": "00000831 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5044,
"name": "بسمه وان طرشى بلدى صاروخ وزن",
"price": 6.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان طرشى بلدى صاروخ وزن",
"Product_EN": null,
"Product_Id": "00000834 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5045,
"name": "الضحى كركم مطحون ملاحة 70 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى كركم مطحون ملاحة 70 جم",
"Product_EN": "Al Doha Milled Turmeric 70 g",
"Product_Id": "00000836 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5046,
"name": "سلايت زيت عباد الشمس 2.4 لتر",
"price": 52.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سلايت زيت عباد الشمس 2.4 لتر",
"Product_EN": "Slite Sunflower Oil 2.4 L",
"Product_Id": "00000837 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5047,
"name": "هنادى زيت 800 مل - موقوف",
"price": 15.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنادى زيت 800 مل - موقوف",
"Product_EN": null,
"Product_Id": "00000839 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5048,
"name": "الضحى زعتر ملاحة 30 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى زعتر ملاحة 30 جم",
"Product_EN": "Al Doha Milled Thyme 30 g",
"Product_Id": "00000840 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5049,
"name": "كريستال سمنه بيضاء 1.5 كجم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال سمنه بيضاء 1.5 كجم",
"Product_EN": "Crystal White Ghee 1.5 Kg",
"Product_Id": "00000841 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5050,
"name": "الضحى كسبرة مطحونة ملاحة 50 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى كسبرة مطحونة ملاحة 50 جم",
"Product_EN": "Al Doha Milled Coriander 50 g",
"Product_Id": "00000842 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5051,
"name": "حلايب سمن بقرى طبيعى 900جم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلايب سمن بقرى طبيعى 900جم",
"Product_EN": "Halayeb Natural Beef Ghee 900 gm",
"Product_Id": "00000847 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5052,
"name": "كنور فاين فودز مرقة دجاج 12 مكعب",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فاين فودز مرقة دجاج 12 مكعب",
"Product_EN": "Knorr Fine Foods Chicken Stock 12 Cubes",
"Product_Id": "00000848 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5053,
"name": "المراعى حلوب سمنه 800 جم",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حلوب سمنه 800 جم",
"Product_EN": "Almarai Al Haloub Ghee 800 gm",
"Product_Id": "00000849 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5054,
"name": "فاين فودز مرقة خضار 8 مكعب - موقوف",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فاين فودز مرقة خضار 8 مكعب - موقوف",
"Product_EN": null,
"Product_Id": "00000850 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5055,
"name": "فيرن سمنه طبيعى 700 جم",
"price": 116,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيرن سمنه طبيعى 700 جم",
"Product_EN": "Fern Natural Ghee 700 gm",
"Product_Id": "00000851 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5056,
"name": "نجمه الزيتون خل 1 لتر",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نجمه الزيتون خل 1 لتر",
"Product_EN": null,
"Product_Id": "00000852 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5057,
"name": "وادى فود خل عنب بلسمي 250 مل",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وادى فود خل عنب بلسمي 250 مل",
"Product_EN": null,
"Product_Id": "00000853 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5058,
"name": "جهينة زبادو مشروب زبادي التفاح & القرفه 220 مل",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي التفاح & القرفه 220 مل",
"Product_EN": "Juhayna Zabado Apple&Cinnamon Yogurt Drink 220 ml",
"Product_Id": "00000856 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5059,
"name": "جهينة زبادى طبيعى 105 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى طبيعى 105 جم",
"Product_EN": "Juhayna Natural Yoghurt 105 gm",
"Product_Id": "00000857 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5060,
"name": "نعمة ترمس 500 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نعمة ترمس 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000859 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5061,
"name": "المثالى مشروم مقطع 800 جم - موقوف",
"price": 36.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى مشروم مقطع 800 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000860 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5062,
"name": "جهينة زبادى طبيعى 1 كجم",
"price": 23.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى طبيعى 1 كجم",
"Product_EN": "Juhayna Natural Yoghurt 1 Kg",
"Product_Id": "00000861 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5063,
"name": "الطاهية مشروم شرائح 400 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية مشروم شرائح 400 جم",
"Product_EN": "Al Tahya Mushrooms 400 gm",
"Product_Id": "00000862 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5064,
"name": "جهينة زبادى475 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى475 جم",
"Product_EN": "Juhayna Natural Yoghurt 475 Kg",
"Product_Id": "00000864 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5065,
"name": "جهينة زبادى طبيعى 2 كجم",
"price": 45.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى طبيعى 2 كجم",
"Product_EN": "Juhayna Natural Yoghurt 2 Kg",
"Product_Id": "00000867 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5066,
"name": "صنى زيت للقلى 4.4 لتر",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صنى زيت للقلى 4.4 لتر",
"Product_EN": "Sunny Oil For Frying 4.4 L ",
"Product_Id": "00000869 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5067,
"name": "جولدن ميكس سمن نباتى 1.5 كجم",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جولدن ميكس سمن نباتى 1.5 كجم",
"Product_EN": "Golden Mix Vegetable Ghee 1.5 Kg",
"Product_Id": "00000872 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5068,
"name": "جولدن ميكس سمنه خليط 750 جم",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جولدن ميكس سمنه خليط 750 جم",
"Product_EN": "Golden Mix Ghee 750 gm",
"Product_Id": "00000874 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5069,
"name": "الرشيدى عرض طحينه + صلصه - موقوف",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى عرض طحينه + صلصه - موقوف",
"Product_EN": null,
"Product_Id": "00000875 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5070,
"name": "تيميز شوكو رايس 30 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو رايس 30 جم",
"Product_EN": "Temmy's Choco Rice 30 gm",
"Product_Id": "00000882 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5071,
"name": "تيميز فروت بوبس 30 جم - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز فروت بوبس 30 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000883 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5072,
"name": "تيميز لوبى توت 250 جم - موقوف",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز لوبى توت 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000885 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5073,
"name": "طرشى بوليف وزن - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طرشى بوليف وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000887 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5074,
"name": "ليمون محشى حمص وزن - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ليمون محشى حمص وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000888 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5075,
"name": "بسمه وان خيار قطع ممتاز وزن - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان خيار قطع ممتاز وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000890 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5076,
"name": "زيتون اسود حلقات وزن - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زيتون اسود حلقات وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000893 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5077,
"name": "زيتون اخضر حلقات وزن - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زيتون اخضر حلقات وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000896 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5078,
"name": "هيلثى دبس رمان 325 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى دبس رمان 325 مل",
"Product_EN": null,
"Product_Id": "00000897 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5079,
"name": "الطحان دبس تمر 350 جم",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان دبس تمر 350 جم",
"Product_EN": null,
"Product_Id": "00000900 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5080,
"name": "زيتون اخضر محشى وزن - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زيتون اخضر محشى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000901 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5081,
"name": "القرشى دبس بلح",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى دبس بلح",
"Product_EN": "Al Qurashi Date Molasses ",
"Product_Id": "00000902 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5082,
"name": "الشروق دبس تمر500جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق دبس تمر500جم",
"Product_EN": "Al Shorouk Dates Syrup 500 gm",
"Product_Id": "00000905 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5083,
"name": "فلفل مكسيكى وزن - موقوف",
"price": 15.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فلفل مكسيكى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000907 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5084,
"name": "هاينز صلصه مكرونة 365 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصه مكرونة 365 جم",
"Product_EN": "Heinz Pasta Sauce 365 gm",
"Product_Id": "00000908 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5085,
"name": "بسمه وان زيتون دولسى وزن - موقوف",
"price": 18.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسمه وان زيتون دولسى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000910 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5086,
"name": "هاينز صلصه بيتزا 350 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصه بيتزا 350 جم",
"Product_EN": "Heinz Pizza Sauce 350 gm",
"Product_Id": "00000911 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5087,
"name": "المثالى ارز هندى وزن - موقوف",
"price": 14.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى ارز هندى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000912 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5088,
"name": "هاينز صلصة هريسه 170 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصة هريسه 170 جم",
"Product_EN": "Heinz Harissa 170 gm",
"Product_Id": "00000914 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5089,
"name": "العراقى خيار اسكندرانى وزن - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى خيار اسكندرانى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000916 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5090,
"name": "فلفل بلدى وزن - وزن",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فلفل بلدى وزن - وزن",
"Product_EN": null,
"Product_Id": "00000920 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5091,
"name": "العراقى ليمون بالعصفر وزن - موقوف",
"price": 11.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى ليمون بالعصفر وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000921 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5092,
"name": "العراقى بوليف لوكس وزن - موقوف",
"price": 11.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى بوليف لوكس وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000925 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5093,
"name": "العراقى زيتون اسود حلقات وزن - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى زيتون اسود حلقات وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000926 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5094,
"name": "العراقى زيتون اخضر حلقات وزن - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى زيتون اخضر حلقات وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000929 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5095,
"name": "هاينز باربكيو صوص 200 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز باربكيو صوص 200 جم",
"Product_EN": "Heinz Sauce BBQ 200 gm",
"Product_Id": "00000930 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5096,
"name": "هاينز شيلى صوص 195 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز شيلى صوص 195 جم",
"Product_EN": "Heinz Chile Sauce 195 gm",
"Product_Id": "00000935 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5097,
"name": "مكرونتو لسان عصفور350 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مكرونتو لسان عصفور350 جم",
"Product_EN": "Marcaronto Pasta Rice 350 gm ",
"Product_Id": "00000938 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5098,
"name": "العراقى زيتون اخضر محشى وزن - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى زيتون اخضر محشى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000941 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5099,
"name": "المراعى زبادى فراولة 110 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى فراولة 110 جم",
"Product_EN": "Almarai Yogurt Strawberry 110 gm",
"Product_Id": "00000943 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5100,
"name": "هاينز شطه حاره 165 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز شطه حاره 165 جم",
"Product_EN": "Heinz Hot Sauce 165 gm",
"Product_Id": "00000944 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5101,
"name": "العلى فواكه مسكره 50 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلى فواكه مسكره 50 جم",
"Product_EN": null,
"Product_Id": "00000945 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5102,
"name": "الجودة بيض ابيض - مغلف 10بيضه",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة بيض ابيض - مغلف 10بيضه",
"Product_EN": "Gouda White Eggs - Packed 10 eggs",
"Product_Id": "00000946 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5103,
"name": "هاينز هوت صوص 165 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز هوت صوص 165 جم",
"Product_EN": "Heinz Hot Sauce 165 gm",
"Product_Id": "00000948 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5104,
"name": "العراقى زيتون كلاماتا وزن - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى زيتون كلاماتا وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000949 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5105,
"name": "الجودة بيض احمر - مغلف 15بيضه",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة بيض احمر - مغلف 15بيضه",
"Product_EN": "Gouda Red Eggs - Packed 15 eggs",
"Product_Id": "00000951 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5106,
"name": "الضحى فلفل بلدى قرون مطحون ملاحة 55 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى فلفل بلدى قرون مطحون ملاحة 55 جم",
"Product_EN": "Al Doha Milled Chili 55 g",
"Product_Id": "00000953 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5107,
"name": "الجودة بيض ابيض - مغلف 15 بيضه",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة بيض ابيض - مغلف 15 بيضه",
"Product_EN": "Gouda White Eggs - Packed 15 eggs",
"Product_Id": "00000954 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5108,
"name": "بيلدولاند جبنه جوده معتق وزن - موقوف",
"price": 124.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بيلدولاند جبنه جوده معتق وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000955 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5109,
"name": "الجودة بيض بلدى - مغلف 15 بيضه",
"price": 35.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة بيض بلدى - مغلف 15 بيضه",
"Product_EN": "Gouda Local Eggs - Packed 15 eggs",
"Product_Id": "00000957 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5110,
"name": "لاندانا جبنه ماسدام وزن - موقوف",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه ماسدام وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000959 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5111,
"name": "الجودة بيض بلدى - مغلف 30 بيضه",
"price": 65.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الجودة بيض بلدى - مغلف 30 بيضه",
"Product_EN": "Gouda Local Eggs - Packed 30 eggs",
"Product_Id": "00000961 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5112,
"name": "لاندانا بلو بطعم الريكفورد وزن - موقوف",
"price": 124.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا بلو بطعم الريكفورد وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000963 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5113,
"name": "حلوانى حلاوه طحينيه بالشيكولاته 320 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوه طحينيه بالشيكولاته 320 جم",
"Product_EN": "Halwani Halawa Tahini Chocolate 320 gm",
"Product_Id": "00000964 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5114,
"name": "حلوانى حلاوه طحينيه لايت 320 جم",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوه طحينيه لايت 320 جم",
"Product_EN": "Halwani Halawa Tahini Light 320 gm",
"Product_Id": "00000966 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5115,
"name": "لاندانا جبنه جوده بالكمون وزن - موقوف",
"price": 169.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جوده بالكمون وزن - موقوف",
"Product_EN": null,
"Product_Id": "00000967 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5116,
"name": "هاينز كاتشب 10 جم - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب 10 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000969 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5117,
"name": "افانتى جبنه شيدر طعوم وزن",
"price": 89.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى جبنه شيدر طعوم وزن",
"Product_EN": null,
"Product_Id": "00000971 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5118,
"name": "حلوانى حلاوه طحينيه باللوز 320 جم",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوه طحينيه باللوز 320 جم",
"Product_EN": "Halawani Almond Halawa 320 gm",
"Product_Id": "00000972 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5119,
"name": "الرشيدى حلاوة سبريد 320 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى حلاوة سبريد 320 جم",
"Product_EN": " El Rashidi Halawa Spread 320 g",
"Product_Id": "00000974 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5120,
"name": "هاينز كاتشب طماطم بارد 500 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم بارد 500 جم",
"Product_EN": "Heinz Tomato Ketchup 500 ml",
"Product_Id": "00000976 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5121,
"name": "الميزان حلاوة طحينيه 85 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الميزان حلاوة طحينيه 85 جم - موقوف",
"Product_EN": null,
"Product_Id": "00000977 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5122,
"name": "هاينز كلاسيك مايونيز 180 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كلاسيك مايونيز 180 جم",
"Product_EN": "Heinz Classic Mayonnaise 180 gm",
"Product_Id": "00000978 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5123,
"name": "الرشيدى الميزان حلاوة بار 30 جم",
"price": 0.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان حلاوة بار 30 جم",
"Product_EN": "Halawa Bar Rashidi Al Mizan 30 gm",
"Product_Id": "00000979 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5124,
"name": "حلوانى حلاوة بار علبه - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوة بار علبه - موقوف",
"Product_EN": null,
"Product_Id": "00000981 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5125,
"name": "هاينز مايونيز حار دويباك 285 مل",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز مايونيز حار دويباك 285 مل",
"Product_EN": "Heinz Mayonnaise Hot Doi Buck 285 ml",
"Product_Id": "00000984 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5126,
"name": "هاينز مايونيز ثوم دويباك 285 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز مايونيز ثوم دويباك 285 جم",
"Product_EN": "Heinz Mayonnaise Garlic Doi Buck 285 gm",
"Product_Id": "00000987 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5127,
"name": "جهينه حليب زيرو دسم 1 لتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه حليب زيرو دسم 1 لتر",
"Product_EN": "Juhayna Zero Fat Milk 1 L",
"Product_Id": "00000988 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5128,
"name": "هاينز مايونيز لايت 310 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز مايونيز لايت 310 جم",
"Product_EN": "Heinz Light Mayonnaise 310 gm",
"Product_Id": "00000990 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5129,
"name": "جهينة حليب طبيعى 100جم - موقوقف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة حليب طبيعى 100جم - موقوقف",
"Product_EN": null,
"Product_Id": "00000992 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5130,
"name": "ايزيس كمون بالليمون 25 فتلة",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس كمون بالليمون 25 فتلة",
"Product_EN": "Isis Herbs Cumin with Lemon 25 Bags",
"Product_Id": "00000993 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5131,
"name": "جهينة حليب اطفال 500مل - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة حليب اطفال 500مل - موقوف",
"Product_EN": null,
"Product_Id": "00000994 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5132,
"name": "هاينز كلاسيك مايونيز ظرف 10 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كلاسيك مايونيز ظرف 10 جم",
"Product_EN": "Heinz Classic Mayonnaise Sachet 10 gm",
"Product_Id": "00000996 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5133,
"name": "ايزيس اعشاب كاموميل 12 فلتر",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب كاموميل 12 فلتر",
"Product_EN": "ISIS Chamomile Herbs 12 Bags",
"Product_Id": "00000999 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5134,
"name": "جهينة حليب بالشيكولاتة 100 مل - موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة حليب بالشيكولاتة 100 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001000 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5135,
"name": "جهينة حليب اطفال 200 مل - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة حليب اطفال 200 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001003 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5136,
"name": "جهينة حليب بالعسل 100 مل - موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة حليب بالعسل 100 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001006 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5137,
"name": "اكس مزيل عرق جولد 150 مل - موقوف",
"price": 47.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس مزيل عرق جولد 150 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001009 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5138,
"name": "جهينة حليب بالموز 100 مل - موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة حليب بالموز 100 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001011 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5139,
"name": "فريز مشروب بطعم الفراوله 275 مل",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريز مشروب بطعم الفراوله 275 مل",
"Product_EN": null,
"Product_Id": "00001012 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5140,
"name": "جهينه حليب نصف دسم 1 لتر",
"price": 87,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه حليب نصف دسم 1 لتر",
"Product_EN": "Juhayna Half Cream Milk 1 L",
"Product_Id": "00001015 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5141,
"name": "اكس مزيل عرق بلاك نايت 150مل - موقوف",
"price": 47.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس مزيل عرق بلاك نايت 150مل - موقوف",
"Product_EN": null,
"Product_Id": "00001016 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5142,
"name": "فريز مشروب بطعم التوت 275 مل",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريز مشروب بطعم التوت 275 مل",
"Product_EN": null,
"Product_Id": "00001017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5143,
"name": "جهينه حليب خالى الدسم 500 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه حليب خالى الدسم 500 مل",
"Product_EN": "Juhayna Skimmed Milk 500 ml",
"Product_Id": "00001018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5144,
"name": "ناسيت ماكينه حلاقه ",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ناسيت ماكينه حلاقه ",
"Product_EN": null,
"Product_Id": "00001019 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5145,
"name": "جهينه حليب خالى الدسم 200 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه حليب خالى الدسم 200 جم",
"Product_EN": "Juhayna Skimmed Milk 200 ml",
"Product_Id": "00001020 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5146,
"name": "اورال بى كلاسيك افيكت 3 40 وسط",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى كلاسيك افيكت 3 40 وسط",
"Product_EN": null,
"Product_Id": "00001021 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5147,
"name": "جهينه ميكس حليب شيكولاته 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه ميكس حليب شيكولاته 200 مل",
"Product_EN": "Juhayna Mix Chocolate Milk 200 ml",
"Product_Id": "00001023 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5148,
"name": "جيلت ماكينه حلاقه - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "جيلت ماكينه حلاقه - موقوف",
"Product_EN": null,
"Product_Id": "00001024 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5149,
"name": "ايزيس اعشاب قرفة 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب قرفة 20 فلتر",
"Product_EN": "ISIS Cinnamon Herbs 20 Bags",
"Product_Id": "00001025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5150,
"name": "جهينه ميكس حليب موز 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه ميكس حليب موز 200 مل",
"Product_EN": "Juhayna Mix Banana Milk 200 ml",
"Product_Id": "00001026 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5151,
"name": "جهينة ميكس بالكراميل 200 مل",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة ميكس بالكراميل 200 مل",
"Product_EN": "Juhayna Mix Caramel Milk 200 ml",
"Product_Id": "00001029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5152,
"name": "ايزيس اعشاب كركديه 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب كركديه 20 فلتر",
"Product_EN": "ISIS Hibiscus Herbs 20 Bags",
"Product_Id": "00001031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5153,
"name": "جهينة ميكس فانليا 200 مل",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة ميكس فانليا 200 مل",
"Product_EN": "Juhayna Mix Vanilla Milk 200 ml",
"Product_Id": "00001033 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5154,
"name": "دانون اكتيفيا زبادى طبيعى 105 جم 5+1 مجانا",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا زبادى طبيعى 105 جم 5+1 مجانا",
"Product_EN": "Danone Activia Natural Yogurt 105 gm 5+1 Free",
"Product_Id": "00001034 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5155,
"name": "كرست معجون اسنان مبيض 75 مل - موقوف",
"price": 21.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كرست معجون اسنان مبيض 75 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001035 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5156,
"name": "ايزيس اعشاب نعناع 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب نعناع 20 فلتر",
"Product_EN": "ISIS Herbs Mint 20 Bags",
"Product_Id": "00001037 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5157,
"name": "كرست حمايه من التسوس 50 جم",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كرست حمايه من التسوس 50 جم",
"Product_EN": null,
"Product_Id": "00001038 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5158,
"name": "ايزيس اعشاب ليمون بالجنزبيل 12 فلتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب ليمون بالجنزبيل 12 فلتر",
"Product_EN": "ISIS Ginger Lemongrass 12 Bags",
"Product_Id": "00001041 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5159,
"name": "ايزيس ليمون بالزنجبيل 25 فلتر",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس ليمون بالزنجبيل 25 فلتر",
"Product_EN": "ISIS Ginger Lemongrass 25 Bags",
"Product_Id": "00001053 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5160,
"name": "جهينه بيورعصير كوكتيل 235 مل - موقوف",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيورعصير كوكتيل 235 مل - موقوف",
"Product_EN": "Juhayna Pure Cocktail Juice 235 ml",
"Product_Id": "00001054 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5161,
"name": "سيجنال معجون اسنان 120 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان 120 مل",
"Product_EN": "Signal Toothpaste 120 ml",
"Product_Id": "00001055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5162,
"name": "لبنيتا حليب خالى الدسم 900 جم - موقوف",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لبنيتا حليب خالى الدسم 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001056 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5163,
"name": "فيتراك عصير مانجو 650 مل",
"price": 10.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك عصير مانجو 650 مل",
"Product_EN": null,
"Product_Id": "00001058 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5164,
"name": "المراعى حليب خالى الدسم 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب خالى الدسم 200 مل",
"Product_EN": "Al Marai Skimmed Milk 200 ml",
"Product_Id": "00001060 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5165,
"name": "فيتراك عصير مشمش 770 مل",
"price": 27.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك عصير مشمش 770 مل",
"Product_EN": null,
"Product_Id": "00001061 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5166,
"name": "الضحى كركدية برطمان 50 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى كركدية برطمان 50 جم",
"Product_EN": "Al Doha Hibiscus 50 gm",
"Product_Id": "00001063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5167,
"name": "فيتراك شربات مانجو 850 مل",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات مانجو 850 مل",
"Product_EN": null,
"Product_Id": "00001065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5168,
"name": "بيتي حليب خالى الدسم 1 لتر",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتي حليب خالى الدسم 1 لتر",
"Product_EN": "Beyti Skimmed Milk 1 L",
"Product_Id": "00001066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5169,
"name": "رويال شاى ريجيم 50 فتلة",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى ريجيم 50 فتلة",
"Product_EN": "Royal Regime Tea 50 Pieces",
"Product_Id": "00001068 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5170,
"name": "المراعى حليب بالشيكولاتة 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى حليب بالشيكولاتة 200 مل",
"Product_EN": "Al Marai Chocolate w Milk 200 ml ",
"Product_Id": "00001069 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5171,
"name": "المراعى حليب فراولة 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى حليب فراولة 200 مل",
"Product_EN": "Al Marai strawberry w Milk 200 ml",
"Product_Id": "00001071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5172,
"name": "بيتى حليب كامل الدسم 900 مل - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى حليب كامل الدسم 900 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001074 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5173,
"name": "فيتراك شربات نعناع 850 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات نعناع 850 مل",
"Product_EN": null,
"Product_Id": "00001075 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5174,
"name": "سيجنال معجون اسنان 120 مل - موقوف",
"price": 16.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان 120 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5175,
"name": "بيتى حليب خالى الدسم 900مل - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى حليب خالى الدسم 900مل - موقوف",
"Product_EN": null,
"Product_Id": "00001078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5176,
"name": "ليبتون شاى 250 جم - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001079 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5177,
"name": "بيتى حليب كامل الدسم 1.4 لتر - موقوف",
"price": 16.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى حليب كامل الدسم 1.4 لتر - موقوف",
"Product_EN": "Beyti Full Cream Milk 1.4 L ",
"Product_Id": "00001082 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5178,
"name": "جهينه بيورعصير تفاح 235 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيورعصير تفاح 235 مل",
"Product_EN": "Juhayna Pure Apple Juice 235 ml",
"Product_Id": "00001084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5179,
"name": "ليبتون شاى 75 فتلة - موقوف",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 75 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00001085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5180,
"name": "المراعى حليب بالفراولة 200مل - موقوف",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى حليب بالفراولة 200مل - موقوف",
"Product_EN": null,
"Product_Id": "00001086 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5181,
"name": "المراعى حليب بالموز 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى حليب بالموز 200 مل",
"Product_EN": "Al Marai Banana w Milk 200 ml",
"Product_Id": "00001088 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5182,
"name": "ليبتون شاى 25 فتلة",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 25 فتلة",
"Product_EN": "Lipton Tea 25 Bags",
"Product_Id": "00001089 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5183,
"name": "جهينه بيورعصير مانجو وخوخ 235 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيورعصير مانجو وخوخ 235 مل",
"Product_EN": "Juhayna Pure Mango w Peach Juice 235 ml",
"Product_Id": "00001090 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5184,
"name": "المراعى حليب شيكولاتة و فراولة - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى حليب شيكولاتة و فراولة - موقوف",
"Product_EN": null,
"Product_Id": "00001092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5185,
"name": "جهينة عصير برتقال بيور 235مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير برتقال بيور 235مل",
"Product_EN": "Juhayna Pure Orange Juice 235 ml",
"Product_Id": "00001093 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5186,
"name": "جهينه بيور عصير كوكتيل 235 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيور عصير كوكتيل 235 مل",
"Product_EN": "Juhayna Pure Cocktail Juice 235 ml",
"Product_Id": "00001098 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5187,
"name": "المراعى حليب شيكولاتة كراميل 250مل - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى حليب شيكولاتة كراميل 250مل - موقوف",
"Product_EN": null,
"Product_Id": "00001100 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5188,
"name": "جهينه كلاسيك عصير عنب احمر 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير عنب احمر 235 مل",
"Product_EN": "Juhayna Red Grapes Juice 235 ml",
"Product_Id": "00001101 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5189,
"name": "المراعى حليب قهوة كراميل 250مل",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى حليب قهوة كراميل 250مل",
"Product_EN": "Almarai Milk Flavored Coffe Caramel 250 ml",
"Product_Id": "00001102 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5190,
"name": "المراعى حليب كامل الدسم 1.5 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب كامل الدسم 1.5 لتر",
"Product_EN": "Al Marai Full Cream Milk 1.5 L",
"Product_Id": "00001104 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5191,
"name": "جهينه بيور عصير برتقال وجزر 235 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيور عصير برتقال وجزر 235 مل",
"Product_EN": "Juhayna Pure Orange w Carrot Juice 235 ml",
"Product_Id": "00001107 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5192,
"name": "جهينة عصير بيور جوافة كوكتيل 230 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير بيور جوافة كوكتيل 230 مل",
"Product_EN": "Juhayna Pure Cocktail w Guava Juice 235 ml",
"Product_Id": "00001110 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5193,
"name": "انجرام معجون حلاقه 60 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "انجرام معجون حلاقه 60 جم",
"Product_EN": null,
"Product_Id": "00001111 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5194,
"name": "جهينه بيور عصير عنب احمر 235 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيور عصير عنب احمر 235 مل",
"Product_EN": "Juhayna Pure Red Grapes Juice 235 ml",
"Product_Id": "00001112 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5195,
"name": "دانجو حليب شيكولاتة عرض - موقوف",
"price": 11.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو حليب شيكولاتة عرض - موقوف",
"Product_EN": null,
"Product_Id": "00001113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5196,
"name": "كلوركس عادى 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس عادى 1 لتر",
"Product_EN": null,
"Product_Id": "00001114 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5197,
"name": "جهينه بيور عصير اناناس 235 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيور عصير اناناس 235 مل",
"Product_EN": "Juhayna Pure Pineapple Juice 235 ml ",
"Product_Id": "00001115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5198,
"name": "دانجو حليب فراولة عرض - موقوف",
"price": 11.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو حليب فراولة عرض - موقوف",
"Product_EN": null,
"Product_Id": "00001116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5199,
"name": "كلوركس منظف ابيض 1.200 مل ",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف ابيض 1.200 مل ",
"Product_EN": null,
"Product_Id": "00001117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5200,
"name": "كلوركس الوان ازرق 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس الوان ازرق 1 لتر",
"Product_EN": null,
"Product_Id": "00001119 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5201,
"name": "دانجو حليب موز عرض - موقوف",
"price": 11.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو حليب موز عرض - موقوف",
"Product_EN": null,
"Product_Id": "00001120 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5202,
"name": "جهينه كلاسيك عصير يوسفى 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير يوسفى 1 لتر",
"Product_EN": "Juhayna Tangerine Mandarin Juice 1 L",
"Product_Id": "00001121 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5203,
"name": "كلوركس الوان احمر1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس الوان احمر1 لتر",
"Product_EN": "118",
"Product_Id": "00001122 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5204,
"name": "كلوركس منظف ومطهر منزلى 700 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف ومطهر منزلى 700 مل",
"Product_EN": null,
"Product_Id": "00001124 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5205,
"name": "لاكتيل حليب كامل الدسم تتراباك 1 لتر",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل حليب كامل الدسم تتراباك 1 لتر",
"Product_EN": "Lactel Full Cream Milk 1 L",
"Product_Id": "00001125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5206,
"name": "كلوركس منظف ومطهر منزلى 700 مل _ موقوف",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف ومطهر منزلى 700 مل _ موقوف",
"Product_EN": null,
"Product_Id": "00001126 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5207,
"name": "كلوركس منظف ومطهر 700 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف ومطهر 700 مل",
"Product_EN": null,
"Product_Id": "00001127 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5208,
"name": "لاكتيل حليب خالى الدسم 1 لتر",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لاكتيل حليب خالى الدسم 1 لتر",
"Product_EN": "Lactel Skimmed Milk 1 L",
"Product_Id": "00001129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5209,
"name": "جهينه عصير مكس بيرى 1 لتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه عصير مكس بيرى 1 لتر",
"Product_EN": "Juhayna Mixed Berries Juice 1 L",
"Product_Id": "00001130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5210,
"name": "كلوركس مزيل للبقع 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس مزيل للبقع 200 مل",
"Product_EN": null,
"Product_Id": "00001131 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5211,
"name": "لاكتيل حليب كامل الدسم 225 مل ",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل حليب كامل الدسم 225 مل ",
"Product_EN": "Lactel Full Cream Milk 225 ml ",
"Product_Id": "00001132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5212,
"name": "طعمة حليب كيس 450مل - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة حليب كيس 450مل - موقوف",
"Product_EN": null,
"Product_Id": "00001134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5213,
"name": "جهينه عصير توت برى 235 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه عصير توت برى 235 مل",
"Product_EN": "Juhayna Mixed Berries Juice 235 ml",
"Product_Id": "00001135 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5214,
"name": "لاكتيل حليب شيكولاتة كلاونى 225مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل حليب شيكولاتة كلاونى 225مل",
"Product_EN": "Lactel Clooney Milk Chocolate 225 ml",
"Product_Id": "00001137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5215,
"name": "تايد مسحوق اتوماتيك 8 ك - موقوف",
"price": 200,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق اتوماتيك 8 ك - موقوف",
"Product_EN": null,
"Product_Id": "00001139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5216,
"name": "لاكتيل حليب فراولة 225 مل",
"price": 4.65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل حليب فراولة 225 مل",
"Product_EN": "Lactel Strawberry Milk 225 ml",
"Product_Id": "00001140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5217,
"name": "جهينة عصير اناناس كنتالوب 1 لتر ",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير اناناس كنتالوب 1 لتر ",
"Product_EN": "Juhayna Cantaloupe w Pineapple Juice 1 L",
"Product_Id": "00001141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5218,
"name": "لاكتيل كلاونى حليب بالموز 200 مل + 25 مل عرض",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل كلاونى حليب بالموز 200 مل + 25 مل عرض",
"Product_EN": "Lactel Clowny Banana Milk 200 ml + 25 ml - Offer",
"Product_Id": "00001143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5219,
"name": "اريال مسحوق يدوى 40 جم ( موقوف )",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 40 جم ( موقوف )",
"Product_EN": null,
"Product_Id": "00001144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5220,
"name": "جهينه عصير تفاح كمثرى 1 لتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه عصير تفاح كمثرى 1 لتر",
"Product_EN": "Juhayna Apple w Pear Juice 1 L",
"Product_Id": "00001146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5221,
"name": "ارسال مسحوق مركز 280 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ارسال مسحوق مركز 280 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5222,
"name": "لمار حليب كامل الدسم 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار حليب كامل الدسم 200 مل",
"Product_EN": "Lamar Full Cream Milk - 200 ml",
"Product_Id": "00001148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5223,
"name": "جهينه عصير تفاح كمثرى 235 مل",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه عصير تفاح كمثرى 235 مل",
"Product_EN": "Juhayna Apple w Pear Juice 235 ml",
"Product_Id": "00001149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5224,
"name": "اريال مسحوق اتوماتيك 8 ك - موقوف",
"price": 255,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك 8 ك - موقوف",
"Product_EN": null,
"Product_Id": "00001157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5225,
"name": "لمار حليب خالى الدسم 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار حليب خالى الدسم 200 مل",
"Product_EN": "Lamar Skimmed Milk - 200 ml",
"Product_Id": "00001160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5226,
"name": "اريال مسحوق اوتوماتيك ياسمين 8 كجم",
"price": 269.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اوتوماتيك ياسمين 8 كجم",
"Product_EN": null,
"Product_Id": "00001162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5227,
"name": "بونكس مسحوق فل 3 ك - موقوف",
"price": 61.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بونكس مسحوق فل 3 ك - موقوف",
"Product_EN": null,
"Product_Id": "00001163 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5228,
"name": "بونكس مسحوق اتوماتيك 8 ك - موقوف",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بونكس مسحوق اتوماتيك 8 ك - موقوف",
"Product_EN": null,
"Product_Id": "00001164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5229,
"name": "جهينة عصير عنب بيور200مل - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير عنب بيور200مل - موقوف",
"Product_EN": null,
"Product_Id": "00001165 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5230,
"name": "جهينه بيور عصير تفاح 1 لتر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيور عصير تفاح 1 لتر",
"Product_EN": "Juhayna Pure Apple Juice 1 L",
"Product_Id": "00001171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5231,
"name": "جهينه بيور عصير جوافه وكوكتيل 1 لتر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيور عصير جوافه وكوكتيل 1 لتر",
"Product_EN": "Juhayna Pure Cocktail w Guava Juice 1 L",
"Product_Id": "00001176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5232,
"name": "جهينة عصير برتقال وجزر بيور1لتر",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير برتقال وجزر بيور1لتر",
"Product_EN": "Juhayna Pure Orange w Carrot Juice1 L",
"Product_Id": "00001178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5233,
"name": "جهينه بيور عصير عنب احمر 1 لتر",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه بيور عصير عنب احمر 1 لتر",
"Product_EN": "Juhayna Pure Red Grapes Juice 1 L",
"Product_Id": "00001180 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5234,
"name": "برسيل باور مسحوق 3 ك - موقوف",
"price": 66.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل باور مسحوق 3 ك - موقوف",
"Product_EN": null,
"Product_Id": "00001181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5235,
"name": "جهينة عصير رمان بيور 1لتر",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة عصير رمان بيور 1لتر",
"Product_EN": "Juhayna Pure Pomegranate 1 L",
"Product_Id": "00001183 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5236,
"name": "برسيل باور مسحوق 1 ك - موقوف",
"price": 25.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل باور مسحوق 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00001184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5237,
"name": "جهينه كلاسيك عصير اناناس 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه كلاسيك عصير اناناس 1 لتر",
"Product_EN": "Juhayna Pineapple Juice 1 L",
"Product_Id": "00001185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5238,
"name": "برسيل باور مسحوق 4 ك ( موقوف )",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل باور مسحوق 4 ك ( موقوف )",
"Product_EN": null,
"Product_Id": "00001187 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5239,
"name": "دومتى عصير مانجو250مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دومتى عصير مانجو250مل - موقوف",
"Product_EN": null,
"Product_Id": "00001189 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5240,
"name": "برسيل بلاك 1لتر - موقوف",
"price": 24.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل بلاك 1لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001190 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5241,
"name": "حلوانى ستربس دجاج حار 400 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى ستربس دجاج حار 400 جم",
"Product_EN": "Halwani Spicy Chicken Strips 400 gm",
"Product_Id": "00001198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5242,
"name": "كوكى دجاج استربس بارد 400 جم",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى دجاج استربس بارد 400 جم",
"Product_EN": "Koki Chicken Strips 400 gm ",
"Product_Id": "00001204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5243,
"name": "ليبتون ايس تى خوخ 345 ملى - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون ايس تى خوخ 345 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00001207 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5244,
"name": "ليبتون ايس تى ليمون 345 ملى - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون ايس تى ليمون 345 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00001208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5245,
"name": "ليبتون ايس تى خوخ وكمثرى345مل - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون ايس تى خوخ وكمثرى345مل - موقوف",
"Product_EN": null,
"Product_Id": "00001209 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5246,
"name": "كوكى بانيه كرانشى دجاج بارد 8 ق",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى بانيه كرانشى دجاج بارد 8 ق",
"Product_EN": "Koki Crunchy Chicken Pane 8 Count",
"Product_Id": "00001210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5247,
"name": "ميراندا تفاح اخضر كان 250 مل",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا تفاح اخضر كان 250 مل",
"Product_EN": null,
"Product_Id": "00001211 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5248,
"name": "بيتى عصير مانجو 1 لتر - موقوف ",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو 1 لتر - موقوف ",
"Product_EN": "Beyti Mango Juice 1 L",
"Product_Id": "00001212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5249,
"name": "كوكى بانيه كرانشى دجاج حار 8 ق",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى بانيه كرانشى دجاج حار 8 ق",
"Product_EN": "Koki Crunchy Chicken Pane Spicy 8 Count",
"Product_Id": "00001213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5250,
"name": "كوكى ناجتس دجاج بارد 400 جم",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى ناجتس دجاج بارد 400 جم",
"Product_EN": "Koki Chicken Nuggets 400 gm",
"Product_Id": "00001214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5251,
"name": "اطياب صدور بانيه بارد 1 كجم 20 ق",
"price": 101,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب صدور بانيه بارد 1 كجم 20 ق",
"Product_EN": "Atyab Crispy Chicken Pane 20 pieces",
"Product_Id": "00001215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5252,
"name": "اطياب شيش دجاج مشوى 400 جم",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب شيش دجاج مشوى 400 جم",
"Product_EN": "Atyab Chicken Shish Tawouk 1 kg",
"Product_Id": "00001216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5253,
"name": "اطياب ناجتس دجاج 50 ق",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب ناجتس دجاج 50 ق",
"Product_EN": "Atyab Chicken Nuggets 50 pieces",
"Product_Id": "00001217 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5254,
"name": "اطياب ستربس دجاج بارد 1 كجم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب ستربس دجاج بارد 1 كجم",
"Product_EN": "Atyab Frozen Chicken Strips 1 kg",
"Product_Id": "00001218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5255,
"name": "اطياب ستربس دجاج حار 1 كجم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب ستربس دجاج حار 1 كجم",
"Product_EN": "Atyab Hot Chicken Strips 1 kg",
"Product_Id": "00001219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5256,
"name": "اطياب ستربس دجاج بارد 400 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب ستربس دجاج بارد 400 جم",
"Product_EN": "Atyab Spicy Chicken Strips 500 g",
"Product_Id": "00001220 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5257,
"name": "ليبتون شاى 100 فتلة عرض - موقوف",
"price": 22.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 100 فتلة عرض - موقوف",
"Product_EN": null,
"Product_Id": "00001223 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5258,
"name": "ليبتون 100 فتلة - موقوف",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون 100 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00001224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5259,
"name": "ليبتون شاى اثقل 25 فتلة",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اثقل 25 فتلة",
"Product_EN": "Lipton Tea Extra Strong 25 Bags",
"Product_Id": "00001225 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5260,
"name": "ليبتون شاى اثقل 100فتلة - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اثقل 100فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00001226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5261,
"name": "ليبتون شاى خرز 250 جم - موقوف",
"price": 28.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى خرز 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5262,
"name": "ليبتون شاى 100 فتلة - موقوف",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 100 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00001230 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5263,
"name": "ايزيس شاى اخضر 12 فتلة",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس شاى اخضر 12 فتلة",
"Product_EN": "ISIS Green Tea 12 Bags",
"Product_Id": "00001231 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5264,
"name": "ليبتون شاى تفاح 25 فتلة _ موقوف",
"price": 12.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى تفاح 25 فتلة _ موقوف",
"Product_EN": null,
"Product_Id": "00001234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5265,
"name": "دلما شاى بنكهة التفاح 20 فتله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى بنكهة التفاح 20 فتله",
"Product_EN": "Dilmah Ceylon Tea With Apple 20 Count ",
"Product_Id": "00001235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5266,
"name": "نستله نسكافيه جولد قهوة سريعه التحضير برطمان200 جم",
"price": 162,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه جولد قهوة سريعه التحضير برطمان200 جم",
"Product_EN": "Nestle Nescafe Gold Instant Coffee Jar 200 gm",
"Product_Id": "00001240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5267,
"name": "عبد المعبود بن ساده فاتح 100 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن ساده فاتح 100 جم",
"Product_EN": "Abd El Maabud Light Plain Coffee 100 gm",
"Product_Id": "00001241 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5268,
"name": "عبد المعبود بن سادة غامق 100 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن سادة غامق 100 جم",
"Product_EN": "Abd El Maabud Dark Plain Coffee 100 gm",
"Product_Id": "00001242 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5269,
"name": "عبد المعبود بن سادة وسط 100 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن سادة وسط 100 جم",
"Product_EN": "Abd El Maabud Mid Plain Coffee 100 gm",
"Product_Id": "00001243 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5270,
"name": "عبد المعبود بن محوج غامق 100جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج غامق 100جم",
"Product_EN": "Abd El Maaboud Dark Cardamom Coffee 100 gm",
"Product_Id": "00001244 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5271,
"name": "عبد المعبود بن محوج مخصوص وسط 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج مخصوص وسط 100 جم",
"Product_EN": "Abd El Maabud Medium Roast Coffee 100 gm",
"Product_Id": "00001245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5272,
"name": "عبد المعبود بن محوج مخصوص فاتح 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج مخصوص فاتح 100 جم",
"Product_EN": "Abd El Maabud Light Roast Coffee 100 gm",
"Product_Id": "00001246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5273,
"name": "هيلثى حليب كامل الدسم 950مل - موقوف",
"price": 15.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى حليب كامل الدسم 950مل - موقوف",
"Product_EN": null,
"Product_Id": "00001249 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5274,
"name": "كابتشينو فانليا علبه - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كابتشينو فانليا علبه - موقوف",
"Product_EN": null,
"Product_Id": "00001250 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5275,
"name": "هيلثى حليب خالى الدسم 950جم - موقوف",
"price": 15.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى حليب خالى الدسم 950جم - موقوف",
"Product_EN": null,
"Product_Id": "00001251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5276,
"name": "كابتشينو موكا 8 ظرف - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كابتشينو موكا 8 ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00001252 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5277,
"name": "هيلثى هوت شوكلت 80 جم - موقوف",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى هوت شوكلت 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001256 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5278,
"name": "هيلثى حليب بالشيكولاتة 270جم - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هيلثى حليب بالشيكولاتة 270جم - موقوف",
"Product_EN": null,
"Product_Id": "00001257 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5279,
"name": "شاهين كافية بالبندق 250 جم",
"price": 36.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاهين كافية بالبندق 250 جم",
"Product_EN": "Shaheen coffee Hazelnut 250 gm",
"Product_Id": "00001258 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5280,
"name": "هيلثى حليب بالقهوه 270جم - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هيلثى حليب بالقهوه 270جم - موقوف",
"Product_EN": null,
"Product_Id": "00001259 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5281,
"name": "حلوانى طحينه 710 جم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى طحينه 710 جم",
"Product_EN": "Halwani Tahina 710 gm",
"Product_Id": "00001260 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5282,
"name": "كوفى ميكس ظرف - موقوف",
"price": 0.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوفى ميكس ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00001261 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5283,
"name": "حلوانى طحينه 250 جم",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى طحينه 250 جم",
"Product_EN": "Halwani Tahina 250 gm",
"Product_Id": "00001262 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5284,
"name": "حلوانى طحينه 475 جم",
"price": 34.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى طحينه 475 جم",
"Product_EN": "Halwani Tahina 475 gm",
"Product_Id": "00001263 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5285,
"name": "بونجورنو كابتشينو لاتيه - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كابتشينو لاتيه - موقوف",
"Product_EN": null,
"Product_Id": "00001264 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5286,
"name": "الرشيدى الميزان طحينه 600 جم",
"price": 37.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان طحينه 600 جم",
"Product_EN": "El Rashidi El Mizan Tahina 275 gm",
"Product_Id": "00001265 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5287,
"name": "كابتشينو كلاسيك - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كابتشينو كلاسيك - موقوف",
"Product_EN": null,
"Product_Id": "00001269 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5288,
"name": "تيميز هنى بوبس 30 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز هنى بوبس 30 جم",
"Product_EN": "Temmy's Honey Pops 30 gm",
"Product_Id": "00001270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5289,
"name": "بونجورنو كوفي ميكس علبة 400 جم ",
"price": 52.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو كوفي ميكس علبة 400 جم ",
"Product_EN": "Bonjorno Coffee Mix Can 400 gm",
"Product_Id": "00001271 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5290,
"name": "تيميز نيوتريفيت بار موسلي 35 جم - موقوف",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز نيوتريفيت بار موسلي 35 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001272 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5291,
"name": "بونوجورنو كوفى ميكس 3*1",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونوجورنو كوفى ميكس 3*1",
"Product_EN": "Bonjorno Coffee Mix 3*1",
"Product_Id": "00001276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5292,
"name": "تيميز نيوتري فيت بالتفاح والقرفة بار موسلي 35 جم ",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز نيوتري فيت بالتفاح والقرفة بار موسلي 35 جم ",
"Product_EN": "Temmy's Nutrifit Apple & Cinnamon Bar 35 gm",
"Product_Id": "00001277 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5293,
"name": "دريم مبيض قهوة كريمر برطمان 150 جم",
"price": 22.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مبيض قهوة كريمر برطمان 150 جم",
"Product_EN": "Dreem Coffee Creamer Jar 150 gm",
"Product_Id": "00001278 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5294,
"name": "تيميز نيوترى فيت فراولة - موقوف",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز نيوترى فيت فراولة - موقوف",
"Product_EN": null,
"Product_Id": "00001279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5295,
"name": "تيميز هنى بوبس 250 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز هنى بوبس 250 جم",
"Product_EN": "Temmy's Honey Pops 250 gm",
"Product_Id": "00001280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5296,
"name": "دريم مبيض قهوة كريمر برطمان 300 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مبيض قهوة كريمر برطمان 300 جم",
"Product_EN": "Dreem Coffee Creamer Jar 300 gm",
"Product_Id": "00001281 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5297,
"name": "تيميز شوكو رايس 250 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو رايس 250 جم",
"Product_EN": "Temmy's Choco Rice 250 gm",
"Product_Id": "00001282 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5298,
"name": "تيميز سويت فليكس 250 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز سويت فليكس 250 جم",
"Product_EN": "Temmy's Sweet Flakes 250 gm",
"Product_Id": "00001283 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5299,
"name": "دريم مشروب الشوكولاته 80 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مشروب الشوكولاته 80 جم",
"Product_EN": "Dreem Chocolate Drink 80 gm",
"Product_Id": "00001284 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5300,
"name": "تيميز بران فليكس لايت 250 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز بران فليكس لايت 250 جم",
"Product_EN": "Temmy's Bran Flakes Light 250 gm",
"Product_Id": "00001285 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5301,
"name": "تيميز فروت رينجز 250 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز فروت رينجز 250 جم",
"Product_EN": "Temmy's Fruit Rings 250 gm",
"Product_Id": "00001286 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5302,
"name": "بيتى عصير تفاح 1اتر - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير تفاح 1اتر - موقوف",
"Product_EN": null,
"Product_Id": "00001287 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5303,
"name": "بيتى عصير جوافة 1 لتر - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير جوافة 1 لتر - موقوف",
"Product_EN": "Beyti Guava Juice 1 L",
"Product_Id": "00001289 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5304,
"name": "بيتى عصير كوكتيل 1 لتر _ موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير كوكتيل 1 لتر _ موقوف",
"Product_EN": null,
"Product_Id": "00001290 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5305,
"name": "الطحان سحلب 280 جم",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان سحلب 280 جم",
"Product_EN": null,
"Product_Id": "00001293 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5306,
"name": "تيميز بران فليكس بالزبيب - نوتري فيت 250 جم",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز بران فليكس بالزبيب - نوتري فيت 250 جم",
"Product_EN": "Temmy's Nutri Fit Raisin & Bran 250 gm",
"Product_Id": "00001294 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5307,
"name": "بيتى عصير اناناس 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير اناناس 1 لتر",
"Product_EN": "Beyti Pineapple Juice 1 L",
"Product_Id": "00001295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5308,
"name": "تيميز شيكو فليكس 250 جم - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شيكو فليكس 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001297 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5309,
"name": "بيتى عصير مانجو200مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو200مل - موقوف",
"Product_EN": null,
"Product_Id": "00001298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5310,
"name": "نايس بسكويت شيكولاتة - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نايس بسكويت شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00001299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5311,
"name": "بيتى عصير جوافة 230 مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير جوافة 230 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5312,
"name": "نايس بسكويت بجوز الهند علبه",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نايس بسكويت بجوز الهند علبه",
"Product_EN": null,
"Product_Id": "00001301 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5313,
"name": "بيتى عصير كوكتيل230مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير كوكتيل230مل - موقوف",
"Product_EN": null,
"Product_Id": "00001302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5314,
"name": "دريم كاكاو خام 100 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كاكاو خام 100 جم",
"Product_EN": "Dreem Cocoa Raw 100 gm",
"Product_Id": "00001303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5315,
"name": "نايس بسكويت بجوز الهند ",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نايس بسكويت بجوز الهند ",
"Product_EN": null,
"Product_Id": "00001304 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5316,
"name": "نايس بسكويت شيكولاتة _ موقوف",
"price": 19.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نايس بسكويت شيكولاتة _ موقوف",
"Product_EN": null,
"Product_Id": "00001305 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5317,
"name": "بيتى عصير اناناس 230مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير اناناس 230مل - موقوف",
"Product_EN": null,
"Product_Id": "00001306 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5318,
"name": "نايس بسكويت شيكولاتة",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نايس بسكويت شيكولاتة",
"Product_EN": null,
"Product_Id": "00001307 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5319,
"name": "بيتى عصير فراولة 230 مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير فراولة 230 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5320,
"name": "بيتى عصير رمان230مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير رمان230مل - موقوف",
"Product_EN": null,
"Product_Id": "00001312 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5321,
"name": "صن شاين تونه مفتته حار 185 جم",
"price": 12.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين تونه مفتته حار 185 جم",
"Product_EN": "Sunshine Chili Shredded Tuna 185 gm",
"Product_Id": "00001315 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5322,
"name": "بسكو مصر بسكويت شاى",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت شاى",
"Product_EN": null,
"Product_Id": "00001317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5323,
"name": "بسكو مصر بسكويت _ موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت _ موقوف",
"Product_EN": null,
"Product_Id": "00001318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5324,
"name": "بيتى عصير مانجو بيور1 لتر - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو بيور1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001319 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5325,
"name": "بسكو مصر بسكويت - موقوف",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت - موقوف",
"Product_EN": null,
"Product_Id": "00001320 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5326,
"name": "بيتى عصير تفاح بيور 1 لتر - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:44",
"updated_at": "2021-11-01 19:45:44",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير تفاح بيور 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001321 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5327,
"name": "بسكو مصر بسكويت شاى 12 قطعه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت شاى 12 قطعه",
"Product_EN": null,
"Product_Id": "00001322 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5328,
"name": "بسكو مصر بسكويت شاى كبير",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت شاى كبير",
"Product_EN": null,
"Product_Id": "00001324 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5329,
"name": "صن شاين شرائح تونة مدخنة - موقوف",
"price": 17.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين شرائح تونة مدخنة - موقوف",
"Product_EN": null,
"Product_Id": "00001325 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5330,
"name": "بسكو مصر بسكويت شاى - موقوف",
"price": 34.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت شاى - موقوف",
"Product_EN": null,
"Product_Id": "00001326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5331,
"name": "تيميز شوكو بيلو 375 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو بيلو 375 جم",
"Product_EN": "Temmy's Choco Pillow 375 gm",
"Product_Id": "00001328 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5332,
"name": "بسكو مصر لوكس بسكويت ساده 8 ق",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر لوكس بسكويت ساده 8 ق",
"Product_EN": null,
"Product_Id": "00001329 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5333,
"name": "صن شاين فانسى تونه قطعه واحده 185 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين فانسى تونه قطعه واحده 185 جم",
"Product_EN": "Sunshine Fancy Solid Tuna 185 gm",
"Product_Id": "00001330 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5334,
"name": "بسكو مصر لوكس - موقوف",
"price": 19.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر لوكس - موقوف",
"Product_EN": null,
"Product_Id": "00001331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5335,
"name": "تيميز نيوترى فيت تفاح علبه - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز نيوترى فيت تفاح علبه - موقوف",
"Product_EN": null,
"Product_Id": "00001332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5336,
"name": "بسكو مصر بسكويت لوكس _ موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت لوكس _ موقوف",
"Product_EN": null,
"Product_Id": "00001333 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5337,
"name": "صن شاين تونة قطع 185 جم - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين تونة قطع 185 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5338,
"name": "بسكو مصر بسكويت لوكس علبه - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت لوكس علبه - موقوف",
"Product_EN": null,
"Product_Id": "00001335 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5339,
"name": "تيميز بليله فانيليا 45جم - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز بليله فانيليا 45جم - موقوف",
"Product_EN": null,
"Product_Id": "00001336 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5340,
"name": "بسكو مصر بسكويت لوكس - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت لوكس - موقوف",
"Product_EN": null,
"Product_Id": "00001337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5341,
"name": "صن شاين تونه قطع دايت 185 جم",
"price": 19.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين تونه قطع دايت 185 جم",
"Product_EN": "Sunshine Chunks Diet Tuna 185 gm",
"Product_Id": "00001338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5342,
"name": "تيميز نيوترى فيت بندق علبه - موقوف",
"price": 33.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز نيوترى فيت بندق علبه - موقوف",
"Product_EN": null,
"Product_Id": "00001339 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5343,
"name": "بسكو مصر بسكويت لوكس بالشيكولاتة 12 قطعه",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر بسكويت لوكس بالشيكولاتة 12 قطعه",
"Product_EN": null,
"Product_Id": "00001340 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5344,
"name": "صن شاين سردين حار 125جم",
"price": 10.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين سردين حار 125جم",
"Product_EN": "Sunshine Hot Sardines 125 gm",
"Product_Id": "00001341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5345,
"name": "تيميز - موقوف",
"price": 30.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز - موقوف",
"Product_EN": null,
"Product_Id": "00001342 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5346,
"name": "تيميز نيوتريفيت بار موسلي 35 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز نيوتريفيت بار موسلي 35 جم",
"Product_EN": "Temmy's Nutri-Fit Bar 35 gm",
"Product_Id": "00001344 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5347,
"name": "صن شاين سردين بارد 125 جم",
"price": 10.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين سردين بارد 125 جم",
"Product_EN": "Sunshine Sardines 125 gm",
"Product_Id": "00001346 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5348,
"name": "دانون حليب مجفف كامل 300جم - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دانون حليب مجفف كامل 300جم - موقوف",
"Product_EN": null,
"Product_Id": "00001347 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5349,
"name": "صن شاين تونه قطع حار 185 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين تونه قطع حار 185 جم",
"Product_EN": "Sunshine Tuna Chunks Hot 185 gm",
"Product_Id": "00001350 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5350,
"name": "روز تونه قطع بارد 200 جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روز تونه قطع بارد 200 جم",
"Product_EN": null,
"Product_Id": "00001353 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5351,
"name": "دوني بسكويت شاى",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوني بسكويت شاى",
"Product_EN": "Donny Tea Biscuits ",
"Product_Id": "00001355 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5352,
"name": "روز تونه قطع بارد 185 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روز تونه قطع بارد 185 جم",
"Product_EN": null,
"Product_Id": "00001356 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5353,
"name": "دوني بسكويت بالتمر علبه",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوني بسكويت بالتمر علبه",
"Product_EN": "Donnie Date Biscuits ",
"Product_Id": "00001358 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5354,
"name": "روز تونه قطع بالفلفل الحلو 185 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روز تونه قطع بالفلفل الحلو 185 جم",
"Product_EN": null,
"Product_Id": "00001359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5355,
"name": "صن شاين ماكريل 145 جم - موقوف",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين ماكريل 145 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001360 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5356,
"name": "دونى بسكويت بالتمر 2 ق",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دونى بسكويت بالتمر 2 ق",
"Product_EN": "Donnie Biscuits Date 2 Pieces ",
"Product_Id": "00001362 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5357,
"name": "دوني بسكويت بالتمر 2ق علبه",
"price": 10.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوني بسكويت بالتمر 2ق علبه",
"Product_EN": null,
"Product_Id": "00001363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5358,
"name": "اولكر بسكويت - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت - موقوف",
"Product_EN": null,
"Product_Id": "00001366 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5359,
"name": "بسكريم بسكويت محشو بالكاكاو 40 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكريم بسكويت محشو بالكاكاو 40 جم",
"Product_EN": null,
"Product_Id": "00001367 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5360,
"name": "اولكر بسكويت ويفر شيكولاتة",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت ويفر شيكولاتة",
"Product_EN": null,
"Product_Id": "00001368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5361,
"name": "بسكريم بسكويت علبه - موقوف",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكريم بسكويت علبه - موقوف",
"Product_EN": null,
"Product_Id": "00001372 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5362,
"name": "اولكر بسكويت",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت",
"Product_EN": null,
"Product_Id": "00001375 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5363,
"name": "فيتراك مربى فراوله وتوت 450 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله وتوت 450 جم",
"Product_EN": "Vitrac Strawberry & Raspberry Jam 450 gm",
"Product_Id": "00001377 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5364,
"name": "مارى بسكويت 1 ق",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مارى بسكويت 1 ق",
"Product_EN": null,
"Product_Id": "00001378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5365,
"name": "اولكر بسكويت سندوتش 28 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت سندوتش 28 جم",
"Product_EN": null,
"Product_Id": "00001380 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5366,
"name": "اولكر بسكويت سندوتش 65جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت سندوتش 65جم",
"Product_EN": null,
"Product_Id": "00001382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5367,
"name": "هاينز كاتشب طماطم بارد 340 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم بارد 340 جم",
"Product_EN": "Heinz Tomato Ketchup Cold 340 ml",
"Product_Id": "00008498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5368,
"name": "المصريين نشا ذرة 250 جم",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين نشا ذرة 250 جم",
"Product_EN": null,
"Product_Id": "00008499 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5369,
"name": "المصريين بقسماط ناعم 250 جم",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين بقسماط ناعم 250 جم",
"Product_EN": null,
"Product_Id": "00008500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5370,
"name": "المصريين ثوم مجفف برطمان 50 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين ثوم مجفف برطمان 50 جم",
"Product_EN": null,
"Product_Id": "00008501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5371,
"name": "المصريين بصل مجفف برطمان 50 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين بصل مجفف برطمان 50 جم",
"Product_EN": null,
"Product_Id": "00008502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5372,
"name": "المصريين عدس أصفر500 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين عدس أصفر500 جم",
"Product_EN": "Al Masryin Yellow Lentils 500 gm ",
"Product_Id": "00008503 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5373,
"name": "المصريين عدس بجبة 500 جم",
"price": 9.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين عدس بجبة 500 جم",
"Product_EN": "Al Masryin Brown Lentils 500 gm ",
"Product_Id": "00008504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5374,
"name": "المصريين توابل عرض 4+1",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين توابل عرض 4+1",
"Product_EN": null,
"Product_Id": "00008505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5375,
"name": "كوكي برجر بقرى جامبو 1500 جم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكي برجر بقرى جامبو 1500 جم",
"Product_EN": "Koki Beef Burger Jumbo 1500 gm",
"Product_Id": "00008506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5376,
"name": "كوكى برجر بقرى 1 كجم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى برجر بقرى 1 كجم",
"Product_EN": "Koki Beef Burger 1 kg",
"Product_Id": "00008507 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5377,
"name": "كوكى بيف كفتة بقرى عائلى 900 جم - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى بيف كفتة بقرى عائلى 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5378,
"name": "كوكى بيف سجق شرقى 900 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى بيف سجق شرقى 900 جم",
"Product_EN": "Koki Beef Oriental Sausage 900 gm",
"Product_Id": "00008509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5379,
"name": "كوكى بيف هوت دوج رولز 18 ق - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى بيف هوت دوج رولز 18 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5380,
"name": "كوكى بيف كبيبة شامى500 جم 12 ق - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى بيف كبيبة شامى500 جم 12 ق - موقوف",
"Product_EN": null,
"Product_Id": "00008511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5381,
"name": "كوكى بيف كفتة بانية 500جم - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى بيف كفتة بانية 500جم - موقوف",
"Product_EN": null,
"Product_Id": "00008512 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5382,
"name": "ديتول سائل غسيل ايدى اصلى 200 مل * 2ق - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول سائل غسيل ايدى اصلى 200 مل * 2ق - موقوف",
"Product_EN": null,
"Product_Id": "00008513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5383,
"name": "ديتول سائل غسيل ايدى جددى نشاطك 200 مل * 2 ق-موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول سائل غسيل ايدى جددى نشاطك 200 مل * 2 ق-موقوف",
"Product_EN": null,
"Product_Id": "00008514 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5384,
"name": "جهينه ميكس شيكولاتة 200 م 3ق عرض وفر 2ج - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه ميكس شيكولاتة 200 م 3ق عرض وفر 2ج - موقوف",
"Product_EN": null,
"Product_Id": "00008515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5385,
"name": "جهينه ميكس فراولة 200 م 3 ق عرض وفر 2ج - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه ميكس فراولة 200 م 3 ق عرض وفر 2ج - موقوف",
"Product_EN": null,
"Product_Id": "00008516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5386,
"name": "كلوزاب معجون اسنان 100م +فرشاة اسنان - موقوف",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوزاب معجون اسنان 100م +فرشاة اسنان - موقوف",
"Product_EN": null,
"Product_Id": "00008517 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5387,
"name": "سيجنال معجون اسنان مكافح التسوس + فرشاه - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان مكافح التسوس + فرشاه - موقوف",
"Product_EN": null,
"Product_Id": "00008518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5388,
"name": "لوكس صابون انواع 3+1 مجانا 170 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون انواع 3+1 مجانا 170 جم",
"Product_EN": "Lux Soap Types 170 gm 3 + 1 Free ",
"Product_Id": "00008519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5389,
"name": "ليبتون شاى كلاسيك توليفه جديده 25 فتله",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى كلاسيك توليفه جديده 25 فتله",
"Product_EN": "Lipton Classic Tea New Blend 25 Bags",
"Product_Id": "00008520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5390,
"name": "ليبتون شاى كلاسيك توليفه جديده 50 فتله",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى كلاسيك توليفه جديده 50 فتله",
"Product_EN": "Lipton Classic Tea New Blend 50 Bags",
"Product_Id": "00008521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5391,
"name": "ليبتون شاى كلاسيك توليفه جديده 75 فتله _ موقوف ",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى كلاسيك توليفه جديده 75 فتله _ موقوف ",
"Product_EN": null,
"Product_Id": "00008522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5392,
"name": "كنور خلطة فيجتار عادى 35 جم خصم سعر - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطة فيجتار عادى 35 جم خصم سعر - موقوف",
"Product_EN": null,
"Product_Id": "00008523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5393,
"name": "بترو باور مطهر عام 2 لتر",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بترو باور مطهر عام 2 لتر",
"Product_EN": null,
"Product_Id": "00008524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5394,
"name": "بترو باور منظف سائل لكافه الاغراض 10 لتر",
"price": 56.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بترو باور منظف سائل لكافه الاغراض 10 لتر",
"Product_EN": null,
"Product_Id": "00008525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5395,
"name": "صن شاين فاصوليا خضراء 400 جم",
"price": 8.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين فاصوليا خضراء 400 جم",
"Product_EN": "Sunshine Green Beans 400 gm",
"Product_Id": "00008526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5396,
"name": "صن شاين خضار مشكل 400 جرام",
"price": 8.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين خضار مشكل 400 جرام",
"Product_EN": null,
"Product_Id": "00008527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5397,
"name": "صن شاين باميه وسط 400 جرام",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين باميه وسط 400 جرام",
"Product_EN": null,
"Product_Id": "00008528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5398,
"name": "صن شاين بامية صغيره 400 جرام",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين بامية صغيره 400 جرام",
"Product_EN": null,
"Product_Id": "00008529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5399,
"name": "صن شاين باميه مخصوص 400 جرام",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين باميه مخصوص 400 جرام",
"Product_EN": null,
"Product_Id": "00008530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5400,
"name": "صن شاين بسله خضراء ساده 400 جرام",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين بسله خضراء ساده 400 جرام",
"Product_EN": null,
"Product_Id": "00008531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5401,
"name": "صن شاين بسله خضراء بالجزر 400 جرام",
"price": 10.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين بسله خضراء بالجزر 400 جرام",
"Product_EN": null,
"Product_Id": "00008532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5402,
"name": "صن شاين ملوخيه خضراء 400 جرام",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين ملوخيه خضراء 400 جرام",
"Product_EN": null,
"Product_Id": "00008533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5403,
"name": "صن شاين ورق عنب 250 جرام",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين ورق عنب 250 جرام",
"Product_EN": null,
"Product_Id": "00008534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5404,
"name": "سنابل عيش بلدى",
"price": 1.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "سنابل عيش بلدى",
"Product_EN": null,
"Product_Id": "00008535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5405,
"name": "سنابل عيش شامى",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "سنابل عيش شامى",
"Product_EN": null,
"Product_Id": "00008536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5406,
"name": "دو ديللى بسكويت ساده كبير 80 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو ديللى بسكويت ساده كبير 80 جم",
"Product_EN": null,
"Product_Id": "00008537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5407,
"name": "قليه زيت للقلى 700 جم",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قليه زيت للقلى 700 جم",
"Product_EN": "Qaleya Oil For Frying 700 ml ",
"Product_Id": "00008538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5408,
"name": "سنابل عيش سن",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "سنابل عيش سن",
"Product_EN": null,
"Product_Id": "00008539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5409,
"name": "زاهر ديزيرت - تورتة مينى - موقوف",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - تورتة مينى - موقوف",
"Product_EN": null,
"Product_Id": "00008540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5410,
"name": "اكسترا لبان نعناع اخضر 14 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان نعناع اخضر 14 جم",
"Product_EN": "Extra Gum Green Mint 14 gm",
"Product_Id": "00008541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5411,
"name": "اكسترا لبان نعناع برطمان 84 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان نعناع برطمان 84 جم",
"Product_EN": "Extra Gum Mint Jar 84 gm",
"Product_Id": "00008542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5412,
"name": "اكسترا لبان فراولة برطمان 84 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان فراولة برطمان 84 جم",
"Product_EN": "Extra Gum Strawberry Jar 84 gm",
"Product_Id": "00008543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5413,
"name": "اكسترا لبان توت ازرق برطمان 84 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكسترا لبان توت ازرق برطمان 84 جم",
"Product_EN": "Extra Gum Blue Raspberry Jar 84 gm",
"Product_Id": "00008544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5414,
"name": "الزهار رقاق طرى 400 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الزهار رقاق طرى 400 جم",
"Product_EN": "Al Zahar Rokak 400 g",
"Product_Id": "00008545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5415,
"name": "تويست حليب فراوله 200 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تويست حليب فراوله 200 مل",
"Product_EN": "Twist Strawberry Flavored Milk 200 ml",
"Product_Id": "00008546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5416,
"name": "تويست حليب موز 200 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تويست حليب موز 200 مل",
"Product_EN": "Twist Banana Flavored Milk 200 ml",
"Product_Id": "00008547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5417,
"name": "هوهوز كيك قهوه شيكولاته جامبو",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هوهوز كيك قهوه شيكولاته جامبو",
"Product_EN": null,
"Product_Id": "00008548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5418,
"name": "توينكز كيك زيج زاج توت جوز هند",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينكز كيك زيج زاج توت جوز هند",
"Product_EN": null,
"Product_Id": "00008549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5419,
"name": "هوهوز مينى كيك محشو فراوله",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هوهوز مينى كيك محشو فراوله",
"Product_EN": null,
"Product_Id": "00008550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5420,
"name": "هوهوز كيك محشو كاكاو",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هوهوز كيك محشو كاكاو",
"Product_EN": null,
"Product_Id": "00008551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5421,
"name": "مولتو ساندوتش جبنه بيضاء و زيتون 1 قطعه ",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مولتو ساندوتش جبنه بيضاء و زيتون 1 قطعه ",
"Product_EN": "Molto sandwich white Cheese & Olives 1 Piece",
"Product_Id": "00008552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5422,
"name": "مولتو ساندوتش جبنه فيتا 1 قطعه ",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مولتو ساندوتش جبنه فيتا 1 قطعه ",
"Product_EN": "Molto Sandwich Feta Cheese 1 Piece",
"Product_Id": "00008553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5423,
"name": "مولتو ماجنم تشيز كيك مربى",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو ماجنم تشيز كيك مربى",
"Product_EN": null,
"Product_Id": "00008554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5424,
"name": "مولتو ماجنم حشو اكثر شيكولاته",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو ماجنم حشو اكثر شيكولاته",
"Product_EN": null,
"Product_Id": "00008555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5425,
"name": "الوردة الذهبيه تونه مفتته حار 140 جم - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الوردة الذهبيه تونه مفتته حار 140 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5426,
"name": "الوردة الذهبيه تونه مفتته بارد 140 جم - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الوردة الذهبيه تونه مفتته بارد 140 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5427,
"name": "بريل بريميوم منظف صحون عالى التركيز 600 مل - موقوف",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل بريميوم منظف صحون عالى التركيز 600 مل - موقوف",
"Product_EN": null,
"Product_Id": "00008559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5428,
"name": "برسيل مسحوق يدوى اخضر 160 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى اخضر 160 جم",
"Product_EN": "Persil Green manual powder 160 gm",
"Product_Id": "00008560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5429,
"name": "نسكافيه جولد اسبرسو ظرف 1.8 جم ",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه جولد اسبرسو ظرف 1.8 جم ",
"Product_EN": null,
"Product_Id": "00008561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5430,
"name": "طيبات الوادى تمر مجدول سعودى 500 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى تمر مجدول سعودى 500 جم",
"Product_EN": null,
"Product_Id": "00008562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5431,
"name": "ميتكو سجق شرقى بقرى مجمد 350 جم - موقوف",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو سجق شرقى بقرى مجمد 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5432,
"name": "فرونزى فريتس بطاطس مجمدة 2500 جم - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فرونزى فريتس بطاطس مجمدة 2500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5433,
"name": "ميتكو كبده بقرى اسكندرانى مجمد 400 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو كبده بقرى اسكندرانى مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00008565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5434,
"name": "دانجو حليب شيكولاته 200مل 4ق وفر 1.5ج - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو حليب شيكولاته 200مل 4ق وفر 1.5ج - موقوف",
"Product_EN": null,
"Product_Id": "00008566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5435,
"name": "دانجو حليب موز 200 مل 4 ق وفر 1.5ج - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو حليب موز 200 مل 4 ق وفر 1.5ج - موقوف",
"Product_EN": null,
"Product_Id": "00008567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5436,
"name": "دانجو حليب فراولة 200 مل 4 ق وفر 1.5ج - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو حليب فراولة 200 مل 4 ق وفر 1.5ج - موقوف",
"Product_EN": null,
"Product_Id": "00008568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5437,
"name": "دانيت حليب شيكولاته 200 مل 4ق وفر 1.5 ج - موقوف",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانيت حليب شيكولاته 200 مل 4ق وفر 1.5 ج - موقوف",
"Product_EN": null,
"Product_Id": "00008569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5438,
"name": "المصريين توابل كارى 50 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين توابل كارى 50 جم",
"Product_EN": null,
"Product_Id": "00008570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5439,
"name": "المصريين توابل سمسم 50 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين توابل سمسم 50 جم",
"Product_EN": null,
"Product_Id": "00008571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5440,
"name": "المصريين توابل ورق لورا 25 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين توابل ورق لورا 25 جم",
"Product_EN": null,
"Product_Id": "00008572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5441,
"name": "المصريين توابل كمون 50 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين توابل كمون 50 جم",
"Product_EN": null,
"Product_Id": "00008573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5442,
"name": "المصريين توابل زعتر 25 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين توابل زعتر 25 جم",
"Product_EN": null,
"Product_Id": "00008574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5443,
"name": "المصريين ذره فيشار 500 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين ذره فيشار 500 جم",
"Product_EN": "Al Masryin Popcorn 500 gm ",
"Product_Id": "00008575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5444,
"name": "المصريين حمص الشام 500 جم",
"price": 16.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين حمص الشام 500 جم",
"Product_EN": "Al Masryin Chickpeas 500 gm ",
"Product_Id": "00008576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5445,
"name": "المصريين لوبيا 500 جرام",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين لوبيا 500 جرام",
"Product_EN": "Al Masryin Black Eyed Peas 500 gm ",
"Product_Id": "00008577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5446,
"name": "كريستال زيت عباد الشمس 5 لتر",
"price": 148,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت عباد الشمس 5 لتر",
"Product_EN": "Craystal Sunflower Oil 5 L ",
"Product_Id": "00008579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5447,
"name": "هدية زيت للقلى 700 مل ",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هدية زيت للقلى 700 مل ",
"Product_EN": "Hedeya Oil For Frying 700 ml",
"Product_Id": "00008580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5448,
"name": "هدية زيت للقلى 1 لتر",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هدية زيت للقلى 1 لتر",
"Product_EN": "Hedeya Oil For Frying 1 L ",
"Product_Id": "00008581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5449,
"name": "هدية زيت للقلى 2.1 لتر",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هدية زيت للقلى 2.1 لتر",
"Product_EN": "Hedeya Oil For Frying 2.1 L ",
"Product_Id": "00008582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5450,
"name": "هدية زيت للقلى 4.5 لتر",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هدية زيت للقلى 4.5 لتر",
"Product_EN": "Hedeya Oil For Frying 4.5 L ",
"Product_Id": "00008583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5451,
"name": "الاصيل زيت ذره 750 مل",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الاصيل زيت ذره 750 مل",
"Product_EN": "El Asil Corn Oil 750 ml",
"Product_Id": "00008584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5452,
"name": "الاصيل زيت عباد الشمس 700 مل",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الاصيل زيت عباد الشمس 700 مل",
"Product_EN": "El Asil Sunflower 700 ml",
"Product_Id": "00008585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5453,
"name": "اكس جولد سبراى مزيل لرائحة العرق للرجال 150 مل",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس جولد سبراى مزيل لرائحة العرق للرجال 150 مل",
"Product_EN": "Ax Gold Deodorant Spray For Men 150 ml",
"Product_Id": "00008586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5454,
"name": "اكس اكسايت سبراي مزيل لرائحة العرق للرجال 150 مل",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس اكسايت سبراي مزيل لرائحة العرق للرجال 150 مل",
"Product_EN": "Axe Excite Deodorant Body Spray For Men 150 ml",
"Product_Id": "00008587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5455,
"name": "اكس بلاك نايت سبراي مزيل لرائحة العرق للرجال 150مل",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس بلاك نايت سبراي مزيل لرائحة العرق للرجال 150مل",
"Product_EN": "Axe Black Night Deodorant & Body Spray for Men 150",
"Product_Id": "00008588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5456,
"name": "اكس يو سبراى مزيل عرق 150 مل ",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس يو سبراى مزيل عرق 150 مل ",
"Product_EN": "Axe Deodorant Spray For Men 150 ml ",
"Product_Id": "00008589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5457,
"name": "اكس ايس تشيل سبراى مزيل عرق 150 مل",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس ايس تشيل سبراى مزيل عرق 150 مل",
"Product_EN": "Axe Ice Chili Deodorant Spray 150 ml ",
"Product_Id": "00008590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5458,
"name": "اوليفيا طرشى بلدى وزن - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اوليفيا طرشى بلدى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5459,
"name": "اوليفيا مخلل بوليف وزن - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اوليفيا مخلل بوليف وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5460,
"name": "ميتكو لانشون ساده \/ زيتون \/ فلفل وزن - موقوف",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو لانشون ساده \/ زيتون \/ فلفل وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5461,
"name": "كريستال زيت ذره 3.5 لتر",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذره 3.5 لتر",
"Product_EN": "Craystal Corn Oil 3.5 L ",
"Product_Id": "00008594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5462,
"name": "مورو شيكولاتة قهوه 40 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مورو شيكولاتة قهوه 40 جم",
"Product_EN": "Moro Chocolate Coffee 40 gm",
"Product_Id": "00008596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5463,
"name": "الورده الذهبيه تونه قطع بارد 140 جم - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الورده الذهبيه تونه قطع بارد 140 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5464,
"name": "روودى شاور جل 2 لتر انواع",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "روودى شاور جل 2 لتر انواع",
"Product_EN": null,
"Product_Id": "00008599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5465,
"name": "نيو بريل صابون سائل 600 مل",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "نيو بريل صابون سائل 600 مل",
"Product_EN": null,
"Product_Id": "00008600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5466,
"name": "المطبخ ارز مصرى 1 كجم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ ارز مصرى 1 كجم",
"Product_EN": "El Matbakh Egyptian Rice 5 Kg",
"Product_Id": "00008601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5467,
"name": "هاينز خل طبيعى 500 مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز خل طبيعى 500 مل",
"Product_EN": "Heinz Natural Vinegar 500 ml",
"Product_Id": "00008602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5468,
"name": "كورنو فلات طبق شفاف بلاستيك 1\/4 ك",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات طبق شفاف بلاستيك 1\/4 ك",
"Product_EN": null,
"Product_Id": "00008604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5469,
"name": "كورنو فلات طبق مستطيل شفاف بلاستيك 1\/2 ك",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات طبق مستطيل شفاف بلاستيك 1\/2 ك",
"Product_EN": null,
"Product_Id": "00008605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5470,
"name": "جبنه ريكفور قشطة وزن",
"price": 213,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جبنه ريكفور قشطة وزن",
"Product_EN": null,
"Product_Id": "00008606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5471,
"name": "بشاير حليب كامل الدسم 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بشاير حليب كامل الدسم 1 لتر",
"Product_EN": "Bashayer Full Cream Milk 1 L",
"Product_Id": "00008607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5472,
"name": "سكيتلز فواكه 38 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سكيتلز فواكه 38 جم",
"Product_EN": "Skittles Fruits 38 gm",
"Product_Id": "00008608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5473,
"name": "سكيتلز فواكه 160 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سكيتلز فواكه 160 جم",
"Product_EN": "Skittles Fruits 160 gm",
"Product_Id": "00008609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5474,
"name": "كريستال زبدة صفراء 1 كجم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زبدة صفراء 1 كجم",
"Product_EN": "Crystal Yellow Butter 1 kg",
"Product_Id": "00008610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5475,
"name": "كريستال زبدة صفراء 500 جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زبدة صفراء 500 جم",
"Product_EN": "Crystal Yellow Butter 500 kg",
"Product_Id": "00008611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5476,
"name": "هلا زيت عباد الشمس 1.5 لتر",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هلا زيت عباد الشمس 1.5 لتر",
"Product_EN": "Hala Sunflower Oil 1.5 L ",
"Product_Id": "00008613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5477,
"name": "هلا زيت عباد الشمس 2.25 لتر - موقوف ",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هلا زيت عباد الشمس 2.25 لتر - موقوف ",
"Product_EN": "Hala Sunflower Oil 2.25 L ",
"Product_Id": "00008614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5478,
"name": "هلا زيت عباد الشمس 750 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هلا زيت عباد الشمس 750 مل",
"Product_EN": "Hala Sunflower Oil 750 ml ",
"Product_Id": "00008615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5479,
"name": "البرنس سكر 1 كجم عرض",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البرنس سكر 1 كجم عرض",
"Product_EN": null,
"Product_Id": "00008618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5480,
"name": "كلاونى زبادى فراولة 75 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كلاونى زبادى فراولة 75 جم",
"Product_EN": "Clowny Strawberry Yogurt 75 gm",
"Product_Id": "00008619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5481,
"name": "حلو الشام كسكسى مغربى 400 جم ",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلو الشام كسكسى مغربى 400 جم ",
"Product_EN": "Holw El Sham CouScous 400 gm ",
"Product_Id": "00008620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5482,
"name": "سمارت زيت خليط 750 مل",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سمارت زيت خليط 750 مل",
"Product_EN": "Smart Mixed Oil 700 ml ",
"Product_Id": "00008621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5483,
"name": "الامير عدس اصفر 500 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الامير عدس اصفر 500 جم",
"Product_EN": "El Emir Yellow Lentils 500 gm ",
"Product_Id": "00008622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5484,
"name": "فيرست ارز ابيض 1 ك - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيرست ارز ابيض 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00008623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5485,
"name": "سلطان ارز 1 كجم",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سلطان ارز 1 كجم",
"Product_EN": "Sultan Rice 1 Kg ",
"Product_Id": "00008624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5486,
"name": "الامير ارز 1 كجم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الامير ارز 1 كجم",
"Product_EN": "El Emir Rice 1 Kg ",
"Product_Id": "00008625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5487,
"name": "الامير فلفل اسود 95 جرام",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الامير فلفل اسود 95 جرام",
"Product_EN": null,
"Product_Id": "00008627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5488,
"name": "الامير كمون 95 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الامير كمون 95 جم",
"Product_EN": null,
"Product_Id": "00008628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5489,
"name": "الامير دقيق 1 كجم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الامير دقيق 1 كجم",
"Product_EN": null,
"Product_Id": "00008629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5490,
"name": "الامير فاصوليا 500 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الامير فاصوليا 500 جم",
"Product_EN": "El Emir White Beans 500 gm",
"Product_Id": "00008630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5491,
"name": "الامير كمون 20 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الامير كمون 20 جم",
"Product_EN": null,
"Product_Id": "00008631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5492,
"name": "الامير فلفل اسود 20 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الامير فلفل اسود 20 جم",
"Product_EN": null,
"Product_Id": "00008632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5493,
"name": "الوردة الذهبيه تونه قطع حار 140 جم - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الوردة الذهبيه تونه قطع حار 140 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5494,
"name": "افانتى جبنه شيدر سبريد لايت 240 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى جبنه شيدر سبريد لايت 240 جم",
"Product_EN": null,
"Product_Id": "00008634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5495,
"name": "زاهر ديزيرت - تارت بلح - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - تارت بلح - موقوف",
"Product_EN": null,
"Product_Id": "00008635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5496,
"name": "زاهر ديزيرت - بلاك سويسرى - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - بلاك سويسرى - موقوف",
"Product_EN": null,
"Product_Id": "00008636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5497,
"name": "الضحى حبهان حصى كيس 5 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى حبهان حصى كيس 5 جم",
"Product_EN": "Al Doha Cardamom Pebbles Raw 5 gm",
"Product_Id": "00008637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5498,
"name": "الضحى خلطه كارى كيس 20 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى خلطه كارى كيس 20 جم",
"Product_EN": "Al Doha Curry Mix Raw 20 g",
"Product_Id": "00008638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5499,
"name": "الضحى كسبرة ناعمه 100 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى كسبرة ناعمه 100 جم",
"Product_EN": "Al Doha Coriander 100 gm",
"Product_Id": "00008639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5500,
"name": "ماستر وان صابون سائل 10 لتر",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماستر وان صابون سائل 10 لتر",
"Product_EN": null,
"Product_Id": "00008640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5501,
"name": "ماستر وان صابون سائل 5 لتر",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماستر وان صابون سائل 5 لتر",
"Product_EN": null,
"Product_Id": "00008641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5502,
"name": "ماستر وان ليفه باسفنجه 1 ق",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان ليفه باسفنجه 1 ق",
"Product_EN": null,
"Product_Id": "00008642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5503,
"name": "ماستر وان ليفه باسفنج مستطيله 3ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفه باسفنج مستطيله 3ق",
"Product_EN": null,
"Product_Id": "00008643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5504,
"name": "ماستر وان ليفه باسفنج مستطيله 5 ق",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان ليفه باسفنج مستطيله 5 ق",
"Product_EN": null,
"Product_Id": "00008644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5505,
"name": "ماستر وان ليفه باسفنج مستطيله 10 ق",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان ليفه باسفنج مستطيله 10 ق",
"Product_EN": null,
"Product_Id": "00008645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5506,
"name": "ماستر وان ليفه باسفنج حاميه اظافر 1 ق ",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفه باسفنج حاميه اظافر 1 ق ",
"Product_EN": null,
"Product_Id": "00008646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5507,
"name": "ماستر وان ليفه باسفنح حاميه اظافر 2 ق",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفه باسفنح حاميه اظافر 2 ق",
"Product_EN": null,
"Product_Id": "00008647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5508,
"name": "ماستر وان ليفه باسفنج حاميه اظافر 3 ق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفه باسفنج حاميه اظافر 3 ق",
"Product_EN": null,
"Product_Id": "00008648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5509,
"name": "ماستر وان ليفه باسفنج حاميه اظافر جامبو 1 ق",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفه باسفنج حاميه اظافر جامبو 1 ق",
"Product_EN": null,
"Product_Id": "00008649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5510,
"name": "ماستر وان ليفه باسفنج قنفد 3 ق",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفه باسفنج قنفد 3 ق",
"Product_EN": null,
"Product_Id": "00008650 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5511,
"name": "ماستر وان ليفه باسفنج نايلون 3 ق",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفه باسفنج نايلون 3 ق",
"Product_EN": null,
"Product_Id": "00008651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5512,
"name": "ماستر وان ليفه للجلى 10*15 3ق ",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفه للجلى 10*15 3ق ",
"Product_EN": null,
"Product_Id": "00008652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5513,
"name": "ماستر وان ليفه للجلى 10*15 5 ق",
"price": 13.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفه للجلى 10*15 5 ق",
"Product_EN": null,
"Product_Id": "00008653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5514,
"name": "ماستر وان ليفه للجلى 14*14 3 ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفه للجلى 14*14 3 ق",
"Product_EN": null,
"Product_Id": "00008654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5515,
"name": "3 ليفه باسفنج حاميه اظافر +3 ليفه جلى +1 سلك استان",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "3 ليفه باسفنج حاميه اظافر +3 ليفه جلى +1 سلك استان",
"Product_EN": null,
"Product_Id": "00008655 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5516,
"name": "3ق ليفه باسفنج مستطيله + 5ق ليفه للجلى 10*15",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "3ق ليفه باسفنج مستطيله + 5ق ليفه للجلى 10*15",
"Product_EN": null,
"Product_Id": "00008656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5517,
"name": "ليفه باسفنج حاميه اظافر 2باكو +1باكو عرض",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ليفه باسفنج حاميه اظافر 2باكو +1باكو عرض",
"Product_EN": null,
"Product_Id": "00008657 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5518,
"name": "5ق ليفه باسفنج مستطيله + 3ٌ جلى +ليفه حاميه اظافر ",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "5ق ليفه باسفنج مستطيله + 3ٌ جلى +ليفه حاميه اظافر ",
"Product_EN": null,
"Product_Id": "00008658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5519,
"name": "ماستر وان سلك استانلس 1ق كيس",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان سلك استانلس 1ق كيس",
"Product_EN": null,
"Product_Id": "00008659 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5520,
"name": "ماستر وان سلك استانلس 4 ق كيس",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان سلك استانلس 4 ق كيس",
"Product_EN": null,
"Product_Id": "00008660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5521,
"name": "ماستر وان فوطة اسفنجيه 3 ق",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان فوطة اسفنجيه 3 ق",
"Product_EN": null,
"Product_Id": "00008661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5522,
"name": "ماستر وان فوط متعدده 3 ق",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان فوط متعدده 3 ق",
"Product_EN": null,
"Product_Id": "00008663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5523,
"name": "ماستر غطاء بوتجاز 5*6 شعله 2 غطاء ",
"price": 9.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر غطاء بوتجاز 5*6 شعله 2 غطاء ",
"Product_EN": null,
"Product_Id": "00008664 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5524,
"name": "ماستر وان غطاء بوتجاز 6 شعله 1 غطاء ",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان غطاء بوتجاز 6 شعله 1 غطاء ",
"Product_EN": null,
"Product_Id": "00008665 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5525,
"name": "ماستر وان سلك الومونيوم 150 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان سلك الومونيوم 150 جم",
"Product_EN": null,
"Product_Id": "00008666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5526,
"name": "ماستر وان سلك الومونيوم ملفوف 10 ق",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان سلك الومونيوم ملفوف 10 ق",
"Product_EN": null,
"Product_Id": "00008667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5527,
"name": "ماستر وان سلك الومينيوم ملفوف 15 ق",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان سلك الومينيوم ملفوف 15 ق",
"Product_EN": null,
"Product_Id": "00008668 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5528,
"name": "زاهر ديزيرت - تورتة صورة م\/30*20 ",
"price": 300,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - تورتة صورة م\/30*20 ",
"Product_EN": null,
"Product_Id": "00008669 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5529,
"name": "زاهر ديزيرت - تشيز كيك لوتس \/ كاريزما بندق",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - تشيز كيك لوتس \/ كاريزما بندق",
"Product_EN": null,
"Product_Id": "00008670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5530,
"name": "زاهر ديزيرت otlp - مولتن كيك نوتيلا - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت otlp - مولتن كيك نوتيلا - موقوف",
"Product_EN": null,
"Product_Id": "00008671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5531,
"name": "زاهر ديزيرت otlp - مولتن كيك سادة - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت otlp - مولتن كيك سادة - موقوف",
"Product_EN": null,
"Product_Id": "00008672 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5532,
"name": "زاهر ديزيرت otlp - طاجن نوتيلا بندق - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت otlp - طاجن نوتيلا بندق - موقوف",
"Product_EN": null,
"Product_Id": "00008673 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5533,
"name": "زاهر ديزيرت otlp - مثلث فادج - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت otlp - مثلث فادج - موقوف",
"Product_EN": null,
"Product_Id": "00008674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5534,
"name": "المصريين نشا ذره 500 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين نشا ذره 500 جم",
"Product_EN": null,
"Product_Id": "00008675 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5535,
"name": "المصريين بقسماط 500 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين بقسماط 500 جم",
"Product_EN": null,
"Product_Id": "00008676 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5536,
"name": "ريفولى صابون 120 جم * 4 ق",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريفولى صابون 120 جم * 4 ق",
"Product_EN": null,
"Product_Id": "00008677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5537,
"name": "ريفولى صابون 175 جم * 2 ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريفولى صابون 175 جم * 2 ق",
"Product_EN": null,
"Product_Id": "00008678 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5538,
"name": "ريفولى صابون 120 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريفولى صابون 120 جم",
"Product_EN": null,
"Product_Id": "00008679 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5539,
"name": "اوكسى مسحوق أوتوماتيك 3 كجم+اوكسى صابون سائل 650جم",
"price": 86,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق أوتوماتيك 3 كجم+اوكسى صابون سائل 650جم",
"Product_EN": null,
"Product_Id": "00008680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5540,
"name": "اوكسى مسحوق 4 كجم +2كجم هديه",
"price": 142,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق 4 كجم +2كجم هديه",
"Product_EN": null,
"Product_Id": "00008681 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5541,
"name": "اوكسى مسحوق يدوى 300جم +50 زياده",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوى 300جم +50 زياده",
"Product_EN": null,
"Product_Id": "00008682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5542,
"name": "اوكسى مسحوق يدوي 600 جم +100 جم زياده",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوي 600 جم +100 جم زياده",
"Product_EN": null,
"Product_Id": "00008683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5543,
"name": "اوكسى سائل تنظيف اطباق ليمون 650 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى سائل تنظيف اطباق ليمون 650 جم",
"Product_EN": null,
"Product_Id": "00008684 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5544,
"name": "اوكسى سائل تنظيف صحون 2.5 كجم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى سائل تنظيف صحون 2.5 كجم",
"Product_EN": null,
"Product_Id": "00008685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5545,
"name": "اوكسى مسحوق يدوى 90 جم +10جم زياده",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوى 90 جم +10جم زياده",
"Product_EN": null,
"Product_Id": "00008686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5546,
"name": "ميلكا شوكولاتة بالزبيب و المكسرات 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالزبيب و المكسرات 100 جم",
"Product_EN": "Milka Chocolate With Raisin & Nut 100 gm",
"Product_Id": "00008687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5547,
"name": "توبليرون شوكولاتة بالحليب 100 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توبليرون شوكولاتة بالحليب 100 جم",
"Product_EN": "Toblerone Milk Chocolate 100 gm",
"Product_Id": "00008688 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5548,
"name": "ليو ميلكا شوكولاتة 35 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليو ميلكا شوكولاتة 35 جم",
"Product_EN": "LEO Milka Chocolate 35 gm",
"Product_Id": "00008689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5549,
"name": "ليو ميلكا شوكولاتة حليب 35 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليو ميلكا شوكولاتة حليب 35 جم",
"Product_EN": "LEO Milka Milk Chocolate 35 gm",
"Product_Id": "00008690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5550,
"name": "ليون شوكولاته مستورده 35 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليون شوكولاته مستورده 35 جم",
"Product_EN": "Lion Chocolate Imported 35 gm",
"Product_Id": "00008691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5551,
"name": "العاشر فنيك 350 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "العاشر فنيك 350 جم",
"Product_EN": null,
"Product_Id": "00008692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5552,
"name": "الممتاز زيت للقلى 700 مل",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الممتاز زيت للقلى 700 مل",
"Product_EN": "El Momtaz Oil For Frying 700 ml ",
"Product_Id": "00008693 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5553,
"name": "بريمو ترمس مخلل وزن - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريمو ترمس مخلل وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5554,
"name": "سافانا صابون ايدى 125 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سافانا صابون ايدى 125 جم",
"Product_EN": null,
"Product_Id": "00008696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5555,
"name": "الربيع شاى ناعم 200 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع شاى ناعم 200 جم",
"Product_EN": "Rabea Soft Black Tea 200 g",
"Product_Id": "00008697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5556,
"name": "الربيع شاى الاقوى 100 فتله",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع شاى الاقوى 100 فتله",
"Product_EN": "Rabea Extra Strong Tea Bags 100 Bags",
"Product_Id": "00008698 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5557,
"name": "الربيع شاى اخضر ياسمين 25 فتله",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع شاى اخضر ياسمين 25 فتله",
"Product_EN": "Rabea Natural Green Tea With Jasmine 25 Bags",
"Product_Id": "00008699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5558,
"name": "الربيع شاى اكسبريس 100 فتله",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع شاى اكسبريس 100 فتله",
"Product_EN": "Rabea Express Tea Bags 100 Bags",
"Product_Id": "00008700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5559,
"name": "الطاهيه حبوب ذره سكريه 230 جم - موقوف",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه حبوب ذره سكريه 230 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008701 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5560,
"name": "سويت لايف مايونيز 250 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف مايونيز 250 مل",
"Product_EN": "Sweet Life Mayonnaise 250 ml",
"Product_Id": "00008702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5561,
"name": "فيشر مان تونه قطع 170 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيشر مان تونه قطع 170 جم",
"Product_EN": "Fisherman Tuna Chunks 170 gm",
"Product_Id": "00008703 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5562,
"name": "فيشر مان سردين بارد 125 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيشر مان سردين بارد 125 جم",
"Product_EN": "Fisherman Sardines Cold 125 gm",
"Product_Id": "00008704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5563,
"name": "فيشر مان سردين فلفل حار 125 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيشر مان سردين فلفل حار 125 جم",
"Product_EN": "Fisherman Sardines Hot Pepper 125 gm",
"Product_Id": "00008705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5564,
"name": "فيشر مان سردين مدخن 125 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيشر مان سردين مدخن 125 جم",
"Product_EN": "Fisherman Sardines Smoked 125 gm",
"Product_Id": "00008706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5565,
"name": "المصريين فلفل اسود 20 جم كيس",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين فلفل اسود 20 جم كيس",
"Product_EN": null,
"Product_Id": "00008707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5566,
"name": "المصريين توابل انواع 20 جم كيس",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين توابل انواع 20 جم كيس",
"Product_EN": null,
"Product_Id": "00008708 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5567,
"name": "المصريين كركم 50 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين كركم 50 جم",
"Product_EN": null,
"Product_Id": "00008709 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5568,
"name": "المصريين بابريكا 50 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين بابريكا 50 جم",
"Product_EN": null,
"Product_Id": "00008710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5569,
"name": "المصريين قرفه 50 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين قرفه 50 جم",
"Product_EN": null,
"Product_Id": "00008711 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5570,
"name": "المصريين فلفل اسود 50 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين فلفل اسود 50 جم",
"Product_EN": null,
"Product_Id": "00008712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5571,
"name": "زاهر كافى - فروت سلاط سادة ",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - فروت سلاط سادة ",
"Product_EN": null,
"Product_Id": "00008713 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5572,
"name": "الوادى تمر سعودى 500 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الوادى تمر سعودى 500 جم",
"Product_EN": null,
"Product_Id": "00008714 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5573,
"name": "الوادى بلح 650 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الوادى بلح 650 جم",
"Product_EN": null,
"Product_Id": "00008715 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5574,
"name": "ليون بن اسبرسو كلاسيك علبة",
"price": 137.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "ليون بن اسبرسو كلاسيك علبة",
"Product_EN": null,
"Product_Id": "00008716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5575,
"name": "حلوانى بانيه دجاج عادى 1+1 عرض خاص - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى بانيه دجاج عادى 1+1 عرض خاص - موقوف",
"Product_EN": null,
"Product_Id": "00008717 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5576,
"name": "حلوانى بانيه دجاج حار 1+1 عرض خاص - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى بانيه دجاج حار 1+1 عرض خاص - موقوف",
"Product_EN": null,
"Product_Id": "00008718 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5577,
"name": "جهينه زبادى يونانى 180 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى يونانى 180 جم",
"Product_EN": "Juhayna Greek Yogurt 180 gm",
"Product_Id": "00008719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5578,
"name": "جهينه زبادى يونانى 5% 180 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى يونانى 5% 180 جم",
"Product_EN": "Juhayna Greek Yogurt 7 % Fat 180 gm",
"Product_Id": "00008720 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5579,
"name": "جهينه زبادى يونانى 2% دسم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى يونانى 2% دسم",
"Product_EN": "Juhayna Greek Yogurt 2 % Fat ",
"Product_Id": "00008721 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5580,
"name": "جهينه زبادى يونانى 7% دسم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى يونانى 7% دسم",
"Product_EN": "Juhayna Greek Yogurt 7 % Fat ",
"Product_Id": "00008722 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5581,
"name": "جهينه زبادى سكر 3+1 105 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى سكر 3+1 105 جم",
"Product_EN": "Juhayna Sugar Yogurt ( 1 + 3 ) 105 gm ",
"Product_Id": "00008723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5582,
"name": "زاهر ديزيرت - تشيز كيك برطمان \/ جار",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - تشيز كيك برطمان \/ جار",
"Product_EN": null,
"Product_Id": "00008725 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5583,
"name": "زاهر تورته ايس كريم شيكولاتة & مانجو ",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم شيكولاتة & مانجو ",
"Product_EN": "Zaher Chocolate & Mango Ice Cream Torte",
"Product_Id": "00008726 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5584,
"name": "زين شاى اسود ناعم 250 جم +كوب + طبق هديه",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زين شاى اسود ناعم 250 جم +كوب + طبق هديه",
"Product_EN": "Zein Dust Black Tea 250 gm + Cup + Gift Dish ",
"Product_Id": "00008727 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5585,
"name": "زاهر تورتة ايس كريم زبادى وزن - موقوف",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم زبادى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5586,
"name": "زاهر تورتة ايس كريم فراولة وزن - موقوف",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم فراولة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008729 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5587,
"name": "زاهر تورتة ايس كريم مستكة وزن - موقوف",
"price": 250,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم مستكة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008730 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5588,
"name": "زاهر تورتة ايس كريم لوتس وزن - موقوف",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم لوتس وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008731 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5589,
"name": "زاهر تورتة ايس كريم كوكيز وزن - موقوف",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم كوكيز وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5590,
"name": "زاهر تورتة ايس كريم فور سيزون وزن - موقوف",
"price": 185,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم فور سيزون وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008733 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5591,
"name": "زاهر تورتة ايس كريم مانجو وزن - موقوف",
"price": 200,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم مانجو وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008734 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5592,
"name": "كيت كات شانكى بوب كورن 40 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شانكى بوب كورن 40 جم",
"Product_EN": "Kit Kat Chunky Popcorn 40 gm",
"Product_Id": "00008735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5593,
"name": "اسيم شيكولاته اسبريد 220 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اسيم شيكولاته اسبريد 220 جم",
"Product_EN": null,
"Product_Id": "00008736 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5594,
"name": "كيلوجز نودلز جبنه فرنسية 70 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيلوجز نودلز جبنه فرنسية 70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008737 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5595,
"name": "كيلوجز نودلز خضروات 70 جم - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيلوجز نودلز خضروات 70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5596,
"name": "كيلوجز نودلز سجق شرقى70 جم - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيلوجز نودلز سجق شرقى70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008739 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5597,
"name": "كيلوجز نودلز دجاج70 جم - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيلوجز نودلز دجاج70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008740 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5598,
"name": "كيلوجز نودلز طماطم حارة 70 جم - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيلوجز نودلز طماطم حارة 70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008741 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5599,
"name": "كيلوجز نودلز اندومى دجاج كارى 70 جم - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيلوجز نودلز اندومى دجاج كارى 70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008742 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5600,
"name": "باور هورس مشروب طاقه 250 مل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باور هورس مشروب طاقه 250 مل",
"Product_EN": "Power Horse Energy Drink 250 ml",
"Product_Id": "00008743 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5601,
"name": "فيبا سائل تنظيف اطباق لايم 730 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق لايم 730 مل",
"Product_EN": null,
"Product_Id": "00008744 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5602,
"name": "فيبا سائل تنظيف اطباق تفاح 730 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق تفاح 730 مل",
"Product_EN": null,
"Product_Id": "00008745 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5603,
"name": "دو باتر بايتس بسكويت زبده 12 ق",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دو باتر بايتس بسكويت زبده 12 ق",
"Product_EN": null,
"Product_Id": "00008747 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5604,
"name": "تست بيور ستربس دجاج بارد مجمد 400 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور ستربس دجاج بارد مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00008748 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5605,
"name": "ديتول مطهر 235 مل",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر 235 مل",
"Product_EN": null,
"Product_Id": "00008749 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5606,
"name": "هارفست فول مدمس بالخلطه المصريه 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس بالخلطه المصريه 400 جم",
"Product_EN": null,
"Product_Id": "00008750 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5607,
"name": "هارفست فول مدمس بالطحينه 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس بالطحينه 400 جم",
"Product_EN": null,
"Product_Id": "00008751 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5608,
"name": "اوكسى سائل تنظيف اطباق ليمون اخضر 730 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى سائل تنظيف اطباق ليمون اخضر 730 مل",
"Product_EN": null,
"Product_Id": "00008752 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5609,
"name": "الورده الذهبيه ارز بسمتى 1 كجم - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الورده الذهبيه ارز بسمتى 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008753 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5610,
"name": "هوهوز كيك كريمة شيكولاتة new",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هوهوز كيك كريمة شيكولاتة new",
"Product_EN": null,
"Product_Id": "00008754 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5611,
"name": "بيك رولز بالزبدة والتوابل",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز بالزبدة والتوابل",
"Product_EN": null,
"Product_Id": "00008755 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5612,
"name": "بون بون برستس برتقال",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بون بون برستس برتقال",
"Product_EN": null,
"Product_Id": "00008756 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5613,
"name": "بون بون برستس تفاح",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بون بون برستس تفاح",
"Product_EN": null,
"Product_Id": "00008757 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5614,
"name": "بون بون برستس فراولة",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بون بون برستس فراولة",
"Product_EN": null,
"Product_Id": "00008758 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5615,
"name": "هاينز صوص طحينه جاهزه 285 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صوص طحينه جاهزه 285 جم",
"Product_EN": "Heinz Tahina Sauce Ready 285 gm",
"Product_Id": "00008760 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5616,
"name": "هاينز خل طبيعى 1 لتر 1+1 مجانا",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز خل طبيعى 1 لتر 1+1 مجانا",
"Product_EN": "Heinz Natural Vinegar 1 + 1 Free",
"Product_Id": "00008761 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5617,
"name": "هاينز كلاسيك مايونيز 310 جم 1 +1 عرض",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كلاسيك مايونيز 310 جم 1 +1 عرض",
"Product_EN": "Heinz Classic Mayonnaise 310 gm 1 + 1 - Width",
"Product_Id": "00008762 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5618,
"name": "هاينز صلصة طماطم 360 جم+ بيتى ميكس +هاينز خل 1 لتر",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصة طماطم 360 جم+ بيتى ميكس +هاينز خل 1 لتر",
"Product_EN": "Heinz Tomato Sauce+ Beity Max + Vinegar 1 L",
"Product_Id": "00008764 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5619,
"name": "لايف بوى صابون 125 جم 2 ق",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى صابون 125 جم 2 ق",
"Product_EN": "Lifebuoy soap 125 gm 2 Pieces ",
"Product_Id": "00008765 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5620,
"name": "سيجنال معجون اسنان مكافح التسوس 120 مل",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان مكافح التسوس 120 مل",
"Product_EN": "Signal Cavity Fighter Toothpaste 120 ml",
"Product_Id": "00008766 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5621,
"name": "كامى صابون 170 جم 3+1 ق",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامى صابون 170 جم 3+1 ق",
"Product_EN": "Camay Soap 170 gm 3+1 Pieces ",
"Product_Id": "00008767 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5622,
"name": "ليبتون شاى كلاسيك توليفه جديده 100 فتله",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى كلاسيك توليفه جديده 100 فتله",
"Product_EN": "Lipton Classic Tea New Blend 100 Bags",
"Product_Id": "00008768 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5623,
"name": "سوهاجى بقسماط مطحون 500 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سوهاجى بقسماط مطحون 500 جم",
"Product_EN": "Suhagy Bread Crumbs 500 gm",
"Product_Id": "00008769 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5624,
"name": "بنت البلد سمن بطعم الزبده الصفراء 1.450 كجم ",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بنت البلد سمن بطعم الزبده الصفراء 1.450 كجم ",
"Product_EN": "Bent Al Balad Ghee With Butter Yellow 1.45 kg",
"Product_Id": "00008770 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5625,
"name": "عافيه زيت عباد الشمس 2.400 لتر + ايطاليانو مكرونة",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت عباد الشمس 2.400 لتر + ايطاليانو مكرونة",
"Product_EN": "Afia Sunflower Oil 2.4 L + Italiano Pasta",
"Product_Id": "00008771 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5626,
"name": "زاهر غطاء ايس كريم 4 اونز شفاف - P575PET",
"price": 0.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر غطاء ايس كريم 4 اونز شفاف - P575PET",
"Product_EN": null,
"Product_Id": "00008772 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5627,
"name": "طيبات الوادى بلح صعيدى تصدير 5كجم",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى بلح صعيدى تصدير 5كجم",
"Product_EN": null,
"Product_Id": "00008773 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5628,
"name": "دانون زبادى 105 جم 4 وفر 1 جنيه",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى 105 جم 4 وفر 1 جنيه",
"Product_EN": "Danone Yogurt 105 gm Save 1 EGP",
"Product_Id": "00008774 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5629,
"name": "ثرى شيفس سوبر بانيه دجاج مقلى بارد 420 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس سوبر بانيه دجاج مقلى بارد 420 جم",
"Product_EN": "Three Chefs Super Pane Fried Chicken Cold 420 gm",
"Product_Id": "00008775 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5630,
"name": "ثرى شيفس سوبر بانيه دجاج مقلى حار 420 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس سوبر بانيه دجاج مقلى حار 420 جم",
"Product_EN": "Three Chefs Super Pane Fried Chicken Spicy 420 gm",
"Product_Id": "00008776 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5631,
"name": "ثرى شيفس ستربس دجاج بارد 400 جم ",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس ستربس دجاج بارد 400 جم ",
"Product_EN": "Three Chefs Chicken Strips Cold 400 gm",
"Product_Id": "00008777 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5632,
"name": "ثرى شيفس ستربس دجاج بارد 800 جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس ستربس دجاج بارد 800 جم",
"Product_EN": "Three Chefs Chicken Strips Cold 800 gm",
"Product_Id": "00008778 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5633,
"name": "ثرى شيفس ستربس دجاج حار 400 جم",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس ستربس دجاج حار 400 جم",
"Product_EN": "Three Chefs Chicken Strips Spicy 400 gm",
"Product_Id": "00008779 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5634,
"name": "ثرى شيفس ستربس دجاج حار 800 جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس ستربس دجاج حار 800 جم",
"Product_EN": "Three Chefs Spicy Chicken Strips 800 gm",
"Product_Id": "00008780 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5635,
"name": "ثرى شيفس ناجتس دجاج بارد 400 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس ناجتس دجاج بارد 400 جم",
"Product_EN": "Three Chefs Chicken Nuggets Cold 400 gm",
"Product_Id": "00008781 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5636,
"name": "ثرى شيفس دراميز دجاج جبن 400 جم ",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:45",
"updated_at": "2021-11-01 19:45:45",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس دراميز دجاج جبن 400 جم ",
"Product_EN": "Three Chefs Chicken Drums Cheese 400 gm",
"Product_Id": "00008782 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5637,
"name": "ثرى شيفس دراميز دجاج زبده 400 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس دراميز دجاج زبده 400 جم",
"Product_EN": "Three Chefs Chicken Drums Butter 400 gm",
"Product_Id": "00008783 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5638,
"name": "ثرى شيفس برجر دجاج بارد 400 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس برجر دجاج بارد 400 جم",
"Product_EN": "Three Chefs Chicken Burger Cold 400 gm",
"Product_Id": "00008784 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5639,
"name": "ثرى شيفس شيش طاووق دجاج بارد 400 جم ",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس شيش طاووق دجاج بارد 400 جم ",
"Product_EN": "Three Chefs Shish Tawook Chicken Cold 400 gm",
"Product_Id": "00008785 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5640,
"name": "ثرى شيفس بيف برجر 400 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس بيف برجر 400 جم",
"Product_EN": "Three Chefs Beef Burger 400 gm",
"Product_Id": "00008786 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5641,
"name": "ثرى شيفس بيف برجر 1 كجم",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس بيف برجر 1 كجم",
"Product_EN": "Three Chefs Beef Burger 1 kg",
"Product_Id": "00008787 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5642,
"name": "ثرى شيفس كفته بقرى شيش 500 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس كفته بقرى شيش 500 جم",
"Product_EN": "Three Chefs Beef Kofta Shish 500 gm",
"Product_Id": "00008788 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5643,
"name": "ثرى شيفس كفته بقرى شيش 1 كجم",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس كفته بقرى شيش 1 كجم",
"Product_EN": "Three Chefs Beef Kofta Shish 500 gm",
"Product_Id": "00008789 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5644,
"name": "دولفين جبنه اسطنبولى 500 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دولفين جبنه اسطنبولى 500 جم",
"Product_EN": "Dolphin Cheese Istanbuli 500 gm",
"Product_Id": "00008790 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5645,
"name": "بيتى عصير مانجو بلاستيك 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو بلاستيك 1 لتر",
"Product_EN": "Beyti Mango juice 1 L",
"Product_Id": "00008791 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5646,
"name": "بيتى عصير جوافه 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير جوافه 1 لتر",
"Product_EN": "Beyti Guava Juice 1 L",
"Product_Id": "00008792 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5647,
"name": "بيتى عصير كوكتيل بلاستيك 1 لتر",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير كوكتيل بلاستيك 1 لتر",
"Product_EN": "Beyti Cocktail Juice 1 L",
"Product_Id": "00008793 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5648,
"name": "بيتى عصير كوكتيل اناناس 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير كوكتيل اناناس 1 لتر",
"Product_EN": "Beyti Cocktail Pineapple Juice 1 L",
"Product_Id": "00008794 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5649,
"name": "دومتى جبنه فيتا لايت تتراباك 500 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا لايت تتراباك 500 جم",
"Product_EN": "Domty Feta Light Cheese TetraPak 500 gm",
"Product_Id": "00008795 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5650,
"name": "دومتى جبنه فيتا صفراء 500 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا صفراء 500 جم",
"Product_EN": "Domty Yellow Feta Cheese 500 gm",
"Product_Id": "00008796 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5651,
"name": "دومتى جبنه فيتا لايت 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا لايت 250 جم",
"Product_EN": "Domty Feta Light Cheese 250 gm",
"Product_Id": "00008797 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5652,
"name": "بيتى عصير تفاح 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير تفاح 1 لتر",
"Product_EN": "Beyti Apple Juice 1 L",
"Product_Id": "00008798 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5653,
"name": "بيتى عصير برتقال 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير برتقال 1 لتر",
"Product_EN": "Beyti Orange Juice 1 L",
"Product_Id": "00008799 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5654,
"name": "كريستال سائل اطباق ليمون الاصفر 4 لتر - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كريستال سائل اطباق ليمون الاصفر 4 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00008800 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5655,
"name": "بيوركس سائل اطباق 725 مل زجاج - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بيوركس سائل اطباق 725 مل زجاج - موقوف",
"Product_EN": null,
"Product_Id": "00008801 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5656,
"name": "بيوركس سائل اطباق ليمون اخضر 3 لتر - موقوف",
"price": 28.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بيوركس سائل اطباق ليمون اخضر 3 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00008802 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5657,
"name": "بيوركس كلور ابيض 1 لتر - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بيوركس كلور ابيض 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00008803 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5658,
"name": "الجوهرة فلاش 750 مل - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الجوهرة فلاش 750 مل - موقوف",
"Product_EN": null,
"Product_Id": "00008804 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5659,
"name": "نايس مسحوق غسيل يدوي 800 جم - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "نايس مسحوق غسيل يدوي 800 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008805 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5660,
"name": "كلور زيل كلور 1 لتر - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلور زيل كلور 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00008806 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5661,
"name": "هاي جين مناديل مبلله لافندر 20 منديل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاي جين مناديل مبلله لافندر 20 منديل",
"Product_EN": null,
"Product_Id": "00008808 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5662,
"name": "زينه مناديل تواليت مضغوط 12 بكرة",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل تواليت مضغوط 12 بكرة",
"Product_EN": null,
"Product_Id": "00008809 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5663,
"name": "زينه مناديل سحب جامبو باك 777 منديل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل سحب جامبو باك 777 منديل",
"Product_EN": null,
"Product_Id": "00008811 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5664,
"name": "المصريين فول تدميس 500 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين فول تدميس 500 جم",
"Product_EN": "Al Masryin Fava Beans 500 gm",
"Product_Id": "00008812 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5665,
"name": "المصريين فاصوليا 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين فاصوليا 500 جم",
"Product_EN": "Al Masryin White Beans 500 gm",
"Product_Id": "00008813 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5666,
"name": "المصريين دقيق لجميع الاغراض 1 كجم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين دقيق لجميع الاغراض 1 كجم",
"Product_EN": null,
"Product_Id": "00008815 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5667,
"name": "المصريين دقيق فاخر 1 كجم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المصريين دقيق فاخر 1 كجم",
"Product_EN": null,
"Product_Id": "00008816 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5668,
"name": "الربوة رقائق شوفان حبه كامله 500 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربوة رقائق شوفان حبه كامله 500 جم",
"Product_EN": null,
"Product_Id": "00008817 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5669,
"name": "الربوة رقائق شوفان سريعه التحضير 500 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربوة رقائق شوفان سريعه التحضير 500 جم",
"Product_EN": null,
"Product_Id": "00008818 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5670,
"name": "الراية دبس رمان 350 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الراية دبس رمان 350 جم",
"Product_EN": null,
"Product_Id": "00008819 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5671,
"name": "الراية دبس رمان 200 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الراية دبس رمان 200 جم",
"Product_EN": null,
"Product_Id": "00008820 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5672,
"name": "الراية دبس بلح 350 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الراية دبس بلح 350 جم",
"Product_EN": null,
"Product_Id": "00008821 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5673,
"name": "الراية ورق عنب 450 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الراية ورق عنب 450 جم",
"Product_EN": null,
"Product_Id": "00008822 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5674,
"name": "الراية ثوم مهروس 210 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الراية ثوم مهروس 210 جم",
"Product_EN": null,
"Product_Id": "00008823 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5675,
"name": "الراية هريسه شطه بدون بذور 210 جم ",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الراية هريسه شطه بدون بذور 210 جم ",
"Product_EN": null,
"Product_Id": "00008824 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5676,
"name": "كلوركس ظرف 450 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس ظرف 450 جم",
"Product_EN": null,
"Product_Id": "00008825 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5677,
"name": "الدسوقى سكر ناعم 1 ك - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدسوقى سكر ناعم 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00008826 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5678,
"name": "الويز فوط صحيه ماكسى سميكه طويل جدا 7 فوطه",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فوط صحيه ماكسى سميكه طويل جدا 7 فوطه",
"Product_EN": null,
"Product_Id": "00008827 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5679,
"name": "الويز ماكس دوبل 16*18 فوطه",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ماكس دوبل 16*18 فوطه",
"Product_EN": null,
"Product_Id": "00008828 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5680,
"name": "هيد اند شولدرز شامبو بالنعناع المنعش 400 جم",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدرز شامبو بالنعناع المنعش 400 جم",
"Product_EN": null,
"Product_Id": "00008829 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5681,
"name": "هيد اند شولدز شامبو عنايه متكامله 400 مل",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدز شامبو عنايه متكامله 400 مل",
"Product_EN": null,
"Product_Id": "00008830 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5682,
"name": "هيد اند شولدرز شاميو ناعم حريريى 400 مل",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدرز شاميو ناعم حريريى 400 مل",
"Product_EN": null,
"Product_Id": "00008831 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5683,
"name": "هيد اند شولدز شامبو بالفحم 400 مل ",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدز شامبو بالفحم 400 مل ",
"Product_EN": null,
"Product_Id": "00008832 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5684,
"name": "بانتين شامبو عنايه يوميه 200 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو عنايه يوميه 200 مل",
"Product_EN": null,
"Product_Id": "00008833 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5685,
"name": "بانتين شامبو ملكى 400 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ملكى 400 مل",
"Product_EN": null,
"Product_Id": "00008834 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5686,
"name": "بانتين شامبو ضد التساقط 400 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ضد التساقط 400 مل",
"Product_EN": null,
"Product_Id": "00008835 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5687,
"name": "بانتين شامبو ناعم حريرى 400 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ناعم حريرى 400 مل",
"Product_EN": null,
"Product_Id": "00008836 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5688,
"name": "بانتين شامبو عنايه يوميه 400 مل - موقوف",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو عنايه يوميه 400 مل - موقوف",
"Product_EN": null,
"Product_Id": "00008837 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5689,
"name": "بانتين شامبو امتزاج الطبيعه 180 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو امتزاج الطبيعه 180 مل",
"Product_EN": null,
"Product_Id": "00008838 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5690,
"name": "تايد مسحوق اوتوماتيك داونى 2.5 كجم + 0.5 كجم مجانا",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق اوتوماتيك داونى 2.5 كجم + 0.5 كجم مجانا",
"Product_EN": null,
"Product_Id": "00008839 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5691,
"name": "الاصيل زيت ذره 2.25 لتر",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الاصيل زيت ذره 2.25 لتر",
"Product_EN": "Al Asil Corn Oil 2.25 L ",
"Product_Id": "00008840 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5692,
"name": "بنت البلد سمن 1.500 +400 مكرونة جم هديه - موقوف",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بنت البلد سمن 1.500 +400 مكرونة جم هديه - موقوف",
"Product_EN": null,
"Product_Id": "00008841 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5693,
"name": "دانون زبادى طبيعى 105 جم 4 اكواب وفر1 ج - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى 105 جم 4 اكواب وفر1 ج - موقوف",
"Product_EN": null,
"Product_Id": "00008842 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5694,
"name": "رو بطاطس فلفل حلو62 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس فلفل حلو62 جم",
"Product_EN": null,
"Product_Id": "00008844 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5695,
"name": "فيروز اناناس كان 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز اناناس كان 250 مل",
"Product_EN": null,
"Product_Id": "00008846 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5696,
"name": "فيروز تفاح كان 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز تفاح كان 250 مل",
"Product_EN": null,
"Product_Id": "00008847 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5697,
"name": "رو بطاطس ملح بحر وفلفل اسود 50 -57 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس ملح بحر وفلفل اسود 50 -57 جم",
"Product_EN": null,
"Product_Id": "00008848 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5698,
"name": "لافاش كيرى جبنة مثلثات 8 ق - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش كيرى جبنة مثلثات 8 ق - موقوف",
"Product_EN": "",
"Product_Id": "00008849 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5699,
"name": "لافاش اورجينال جبنة مثلثات 24 ق",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش اورجينال جبنة مثلثات 24 ق",
"Product_EN": "LaVash Original Cheese Triangles 24 Pieces",
"Product_Id": "00008852 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5700,
"name": "رو بطاطس هلابينو 62 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس هلابينو 62 جم",
"Product_EN": null,
"Product_Id": "00008853 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5701,
"name": "رو بطاطس جبنه شيدر 62 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رو بطاطس جبنه شيدر 62 جم",
"Product_EN": null,
"Product_Id": "00008855 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5702,
"name": "كورنو فلات طبق شفاف بلاستيك 1\/8 ك",
"price": 0.3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات طبق شفاف بلاستيك 1\/8 ك",
"Product_EN": null,
"Product_Id": "00008856 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5703,
"name": "كوكاكولا زجاج 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا زجاج 330 مل",
"Product_EN": "Coca-Cola Glass 330 ml",
"Product_Id": "00008857 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5704,
"name": "فانتا برتقال زجاج 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا برتقال زجاج 330 مل",
"Product_EN": "Fanta Orange Glass 330 ml",
"Product_Id": "00008858 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5705,
"name": "كوكا كولا بلاستيك 400 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكا كولا بلاستيك 400 مل",
"Product_EN": "Coca-Cola Plastic 400 ml",
"Product_Id": "00008859 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5706,
"name": "سبرايت بلاستيك 400 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت بلاستيك 400 مل",
"Product_EN": "Plastic Sprite 400 ml",
"Product_Id": "00008860 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5707,
"name": "كوكاكولا كان 250 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا كان 250 مل",
"Product_EN": "Coca-Cola Can 250 ml",
"Product_Id": "00008861 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5708,
"name": "فانتا برتقال كان 250 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا برتقال كان 250 مل",
"Product_EN": "Fanta Orange Can 250 ml",
"Product_Id": "00008862 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5709,
"name": "فانتا تفاح اخضر كان 250 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا تفاح اخضر كان 250 مل",
"Product_EN": "Fanta Green Apple Can 250 ml",
"Product_Id": "00008863 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5710,
"name": "شويبس رمان زجاج 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس رمان زجاج 250 مل",
"Product_EN": "Schweppes Pomegranate Glass 250 ml",
"Product_Id": "00008864 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5711,
"name": "شويبس يوسفى زجاج 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس يوسفى زجاج 250 مل",
"Product_EN": "Schweppes Tangerine Glass 250 ml",
"Product_Id": "00008865 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5712,
"name": "شويبس ليمون زجاج 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس ليمون زجاج 250 مل",
"Product_EN": "Schweppes Lemon Glass 250 ml",
"Product_Id": "00008866 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5713,
"name": "شويبس اناناس زجاج 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس اناناس زجاج 250 مل",
"Product_EN": "Schweppes Pineapple Glass 250 ml",
"Product_Id": "00008867 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5714,
"name": "شويبس خوخ زجاج 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس خوخ زجاج 250 مل",
"Product_EN": "Schweppes Peach Glass 250 ml",
"Product_Id": "00008868 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5715,
"name": "سبرايت كان 250 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت كان 250 مل",
"Product_EN": "Sprite Can 250 ml",
"Product_Id": "00008870 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5716,
"name": "اريال مسحوق اتوماتيك داونى 9 كجم",
"price": 247,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك داونى 9 كجم",
"Product_EN": null,
"Product_Id": "00008871 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5717,
"name": "زاهر حلاوة لايت قليلة السكر وزن - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر حلاوة لايت قليلة السكر وزن - موقوف",
"Product_EN": null,
"Product_Id": "00008872 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5718,
"name": "الرايه هريسه شطه 370 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرايه هريسه شطه 370 جم",
"Product_EN": null,
"Product_Id": "00008873 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5719,
"name": "توكر اوفر هد - كاب شيف",
"price": 0.2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "توكر اوفر هد - كاب شيف",
"Product_EN": null,
"Product_Id": "00008874 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5720,
"name": "شيبسى فورنو ميكس يونانى 45 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى فورنو ميكس يونانى 45 جم",
"Product_EN": null,
"Product_Id": "00008875 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5721,
"name": "شيبسى فورنو فلفل حلو وجبنه 45 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى فورنو فلفل حلو وجبنه 45 جم",
"Product_EN": null,
"Product_Id": "00008876 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5722,
"name": "برينجلز شيبسي حار وسط بطعم القشدة الحامضه 160 جم ",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برينجلز شيبسي حار وسط بطعم القشدة الحامضه 160 جم ",
"Product_EN": "Pringles Sizzl'n Medium Sour Cream 160 gm",
"Product_Id": "00014554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5723,
"name": "زاهر تورته مينى ايس كريم زبادى توت",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته مينى ايس كريم زبادى توت",
"Product_EN": "Zaher Raspberry Yoghert Ice Cream Mini Torte",
"Product_Id": "00014555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5724,
"name": "زاهر تورته مينى ايس كريم مانجو & شيكولاتة",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته مينى ايس كريم مانجو & شيكولاتة",
"Product_EN": "Zaher Chocolate & Mango Ice Cream Mini Torte",
"Product_Id": "00014556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5725,
"name": "ارزاق سكر ابيض 1 كجم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ارزاق سكر ابيض 1 كجم",
"Product_EN": null,
"Product_Id": "00014557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5726,
"name": "ام اند ام شيكولاتة كرسبى 36 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ام اند ام شيكولاتة كرسبى 36 جم",
"Product_EN": "M&M Crispy Chocolate 36 gm",
"Product_Id": "00014558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5727,
"name": "زاهر بيتزا 8 ق 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتزا 8 ق 400 جم",
"Product_EN": "Zaher Mini Pizze 8 pieces 400 g ",
"Product_Id": "00014559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5728,
"name": "جهينه كريمه خفق بوك 500 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه كريمه خفق بوك 500 مل",
"Product_EN": "Juhayna Whipping Cream Puck 500 gm",
"Product_Id": "00014560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5729,
"name": "جهينه كريمه طهى بوك 500 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه كريمه طهى بوك 500 مل",
"Product_EN": "Juhayna Cooking Cream Puck 500 ml",
"Product_Id": "00014561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5730,
"name": "مخ بقرى 1 ق",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مخ بقرى 1 ق",
"Product_EN": "Brain Beef 1 Pieces ",
"Product_Id": "00014564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5731,
"name": "بيتى حليب خالى الدسم 900 مل",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى حليب خالى الدسم 900 مل",
"Product_EN": "Beyti Skimmed Milk 900 ml",
"Product_Id": "00014565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5732,
"name": "سن توب عصير برتقال 1 لتر",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سن توب عصير برتقال 1 لتر",
"Product_EN": null,
"Product_Id": "00014566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5733,
"name": "سن توب عصير اناناس 1 لتر",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سن توب عصير اناناس 1 لتر",
"Product_EN": null,
"Product_Id": "00014567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5734,
"name": "سن توب عصير توت مشكل 1 لتر",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سن توب عصير توت مشكل 1 لتر",
"Product_EN": null,
"Product_Id": "00014568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5735,
"name": "جهينه زبادى يونانى فراوله 180 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى يونانى فراوله 180 جم",
"Product_EN": "Juhayna Greek Yogurt Strawberry 180 gm",
"Product_Id": "00014569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5736,
"name": "جهينه زبادى يونانى فانيليا 180 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى يونانى فانيليا 180 جم",
"Product_EN": "Juhayna Greek Yogurt Vanilla 180 gm",
"Product_Id": "00014570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5737,
"name": "جهينه زبادى يونانى توت 180 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى يونانى توت 180 جم",
"Product_EN": "Juhayna Greek Yogurt Berry 180 gm",
"Product_Id": "00014571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5738,
"name": "جهينه زبادى يونانى خوخ 180 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى يونانى خوخ 180 جم",
"Product_EN": "Juhayna Greek Yogurt Peach 180 gm",
"Product_Id": "00014572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5739,
"name": "جهينه كريمه طهى بوك 200 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه كريمه طهى بوك 200 جم",
"Product_EN": "Juhayna Cream Cooking Puck 200 gm",
"Product_Id": "00014573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5740,
"name": "جهينه كريمه خفق بوك 200 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه كريمه خفق بوك 200 جم",
"Product_EN": "Juhayna Whipping Cream Puck 200 gm",
"Product_Id": "00014574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5741,
"name": "سن توب عصير مشمش اسود 250 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سن توب عصير مشمش اسود 250 مل",
"Product_EN": null,
"Product_Id": "00014575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5742,
"name": "نسكافيه جولد قهوة سريعه التحضير برطمان 100 جم",
"price": 102,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه جولد قهوة سريعه التحضير برطمان 100 جم",
"Product_EN": null,
"Product_Id": "00014576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5743,
"name": "ممبار بقري جاهز للحشو وزن",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ممبار بقري جاهز للحشو وزن",
"Product_EN": "Mombar Beef Ready For Filling - Scalable ",
"Product_Id": "00014577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5744,
"name": "زاهر تورته مينى ايس كريم شيكولاته & زبادى",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته مينى ايس كريم شيكولاته & زبادى",
"Product_EN": "Zaher Chocolate & Yogurt Ice Cream Mini Torte",
"Product_Id": "00014578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5745,
"name": "زاهر تورته مينى ايس كريم مانجو & زبادى",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته مينى ايس كريم مانجو & زبادى",
"Product_EN": "Zaher Mango & Yogurt Ice Cream Mini Torte",
"Product_Id": "00014579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5746,
"name": "توليدو صوص باربيكيو 250 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو صوص باربيكيو 250 جم",
"Product_EN": "Tolido BarBecue Sauce 250 gm",
"Product_Id": "00014580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5747,
"name": "افخاد وزن - بوم استلام",
"price": 103,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افخاد وزن - بوم استلام",
"Product_EN": null,
"Product_Id": "00014581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5748,
"name": "اكس اسبراى مزيل عرق ايس تشيل 150 مل - موقوف",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس اسبراى مزيل عرق ايس تشيل 150 مل - موقوف",
"Product_EN": null,
"Product_Id": "00014582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5749,
"name": "ليبتون شاى اسود نعناع 25 فلتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اسود نعناع 25 فلتر",
"Product_EN": "Lipton Black Tea Mint 25 Bags",
"Product_Id": "00014583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5750,
"name": "دوف سبراي انتعاش الرمان مضاد لرائحة العرق 150 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف سبراي انتعاش الرمان مضاد لرائحة العرق 150 مل",
"Product_EN": "Dove Moisturizing Cream Antiperspirant Spray150ml",
"Product_Id": "00014585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5751,
"name": "هاينز كلاسيك مايونيز 310 جم 2 قطعه",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كلاسيك مايونيز 310 جم 2 قطعه",
"Product_EN": "Heinz Classic Mayonnaise 310 gm 2 Pieces",
"Product_Id": "00014587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5752,
"name": "دوف سبراي انتعاش الرمان مضاد لرائحة العرق 150 مل",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف سبراي انتعاش الرمان مضاد لرائحة العرق 150 مل",
"Product_EN": "Dove Moisturizing Cream Antiperspirant Spray150ml",
"Product_Id": "00014588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5753,
"name": "جلاكسى تمر شيكولاته باللوز 143 جم - كيس",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى تمر شيكولاته باللوز 143 جم - كيس",
"Product_EN": "Galaxy Dates Chocolate Almonds 143 gm - Sachet",
"Product_Id": "00014589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5754,
"name": "جلاكسى تمر شيكولاته بالحليب 143 جم - كيس",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى تمر شيكولاته بالحليب 143 جم - كيس",
"Product_EN": "Galaxy Dates Milk Chocolate 143 gm - sachet",
"Product_Id": "00014590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5755,
"name": "بريل سائل تنظيف اطباق ليمون اخضر 600 مل",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل سائل تنظيف اطباق ليمون اخضر 600 مل",
"Product_EN": null,
"Product_Id": "00014591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5756,
"name": "بريل منظف اطباق ليمون اخضر 730 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق ليمون اخضر 730 مل",
"Product_EN": null,
"Product_Id": "00014592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5757,
"name": "زاهر تورتة ايس كريم مانجو & أوريو",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم مانجو & أوريو",
"Product_EN": "Zaher OREA Biscuit & Mango Ice Cream Torte",
"Product_Id": "00014593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5758,
"name": "زاهر تورتة ايس كريم فراولة & اوريو",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم فراولة & اوريو",
"Product_EN": "Zaher OREA Biscuit & Strawberry Ice Cream Torte",
"Product_Id": "00014594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5759,
"name": "هيد اند شولدز شامبو بالفحم 200 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدز شامبو بالفحم 200 مل",
"Product_EN": null,
"Product_Id": "00014595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5760,
"name": "هيربل شامبو لون ورا لون 400 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو لون ورا لون 400 مل",
"Product_EN": null,
"Product_Id": "00014596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5761,
"name": "هيربل شامبو نهايه جميله 700 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو نهايه جميله 700 مل",
"Product_EN": null,
"Product_Id": "00014597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5762,
"name": "هيربل شامبو قوه العسل 400 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو قوه العسل 400 مل",
"Product_EN": null,
"Product_Id": "00014598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5763,
"name": "اريال مسحوق اتوماتيك لافندر 2.5 كجم",
"price": 83,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك لافندر 2.5 كجم",
"Product_EN": null,
"Product_Id": "00014600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5764,
"name": "الويز فوط صحيه استخدام يومى 40 فوطه +20 بندل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فوط صحيه استخدام يومى 40 فوطه +20 بندل",
"Product_EN": null,
"Product_Id": "00014601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5765,
"name": "الويز دبل قطنى سوبر 16*16",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز دبل قطنى سوبر 16*16",
"Product_EN": null,
"Product_Id": "00014602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5766,
"name": "كرست معجون اسنان كومبليت فريش 100 مل",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كرست معجون اسنان كومبليت فريش 100 مل",
"Product_EN": null,
"Product_Id": "00014603 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5767,
"name": "فيرى منظف صحون 750 مل 2 ق",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى منظف صحون 750 مل 2 ق",
"Product_EN": null,
"Product_Id": "00014605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5768,
"name": "هيد اند شولدز شامبو عنايه يوميه 400 مل",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدز شامبو عنايه يوميه 400 مل",
"Product_EN": null,
"Product_Id": "00014606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5769,
"name": "هيربل شامبو اسنسزاشراقه 360 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو اسنسزاشراقه 360 مل",
"Product_EN": null,
"Product_Id": "00014607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5770,
"name": "اورال بى فرشاه اسنان2+1",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى فرشاه اسنان2+1",
"Product_EN": null,
"Product_Id": "00014608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5771,
"name": "اورال بى فرشاه اسنان اطفال",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى فرشاه اسنان اطفال",
"Product_EN": null,
"Product_Id": "00014609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5772,
"name": "اورال بى فرشاه اسنان الترا وسط",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى فرشاه اسنان الترا وسط",
"Product_EN": null,
"Product_Id": "00014610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5773,
"name": "بامبرز حفاضات اطفال عنايه م 5*40 حفاضه",
"price": 225,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز حفاضات اطفال عنايه م 5*40 حفاضه",
"Product_EN": null,
"Product_Id": "00014613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5774,
"name": "بامبرز عنايه مميزه حفاضات اطفال مقاس 6 - 36 حفاظه",
"price": 225,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز عنايه مميزه حفاضات اطفال مقاس 6 - 36 حفاظه",
"Product_EN": null,
"Product_Id": "00014614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5775,
"name": "الويز الترا الماسيه 2 ق+ لاينر",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز الترا الماسيه 2 ق+ لاينر",
"Product_EN": null,
"Product_Id": "00014615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5776,
"name": "الويز حفاضه نعومه الريش 24 فوطه 1+1",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز حفاضه نعومه الريش 24 فوطه 1+1",
"Product_EN": null,
"Product_Id": "00014616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5777,
"name": "اريال مسحوق يدوى ياسمين 1 كجم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 1 كجم",
"Product_EN": null,
"Product_Id": "00014617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5778,
"name": "اريال مسحوق اتوماتيك 6 كجم +فيرى 450 مل مركز",
"price": 158,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك 6 كجم +فيرى 450 مل مركز",
"Product_EN": null,
"Product_Id": "00014618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5779,
"name": "تايد مسحوق يدوى عطر اصلى 350 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى عطر اصلى 350 جم",
"Product_EN": null,
"Product_Id": "00014620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5780,
"name": "تايد مسحوق يدوى داونى 2 كجم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى داونى 2 كجم",
"Product_EN": null,
"Product_Id": "00014621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5781,
"name": "تايد مسحوق يدوى داونى 1 كجم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى داونى 1 كجم",
"Product_EN": null,
"Product_Id": "00014622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5782,
"name": "بانتين شامبو ضد التساقط 200 مل + بلسم 180 مل",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ضد التساقط 200 مل + بلسم 180 مل",
"Product_EN": null,
"Product_Id": "00014623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5783,
"name": "بانتين شامبو ضدالتساقط 600 مل",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ضدالتساقط 600 مل",
"Product_EN": null,
"Product_Id": "00014624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5784,
"name": "بانتين بلسم ضد التساقط 360 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بلسم ضد التساقط 360 مل",
"Product_EN": null,
"Product_Id": "00014625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5785,
"name": "بانتين بديل الزيت علاج تساقط الشعر 180 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بديل الزيت علاج تساقط الشعر 180 مل",
"Product_EN": null,
"Product_Id": "00014626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5786,
"name": "بانتين شامبو ضد التساقط 200 مل + بديل الزيت",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ضد التساقط 200 مل + بديل الزيت",
"Product_EN": "Pantene Hair Fall Shampoo 200 ml + Oil 350 ml",
"Product_Id": "00014627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5787,
"name": "بونكس مسحوق اتوماتيك ليمون 5 كجم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بونكس مسحوق اتوماتيك ليمون 5 كجم",
"Product_EN": null,
"Product_Id": "00014628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5788,
"name": "اولويز فوط صحيه ماكسى سميكه طويل جدا 18 فوطه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز فوط صحيه ماكسى سميكه طويل جدا 18 فوطه",
"Product_EN": null,
"Product_Id": "00014629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5789,
"name": "رودس جبنه فيتا 1 كجم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا 1 كجم",
"Product_EN": "Rhodes Feta Cheese 1 Kg",
"Product_Id": "00014630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5790,
"name": "رودس جبنه شيدر 1 كجم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه شيدر 1 كجم",
"Product_EN": "Rhodes Cheddar Cheese 1 kg",
"Product_Id": "00014631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5791,
"name": "رودس جبنه رومى 1 كجم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه رومى 1 كجم",
"Product_EN": "Rhodes Roumi Cheese 1 Kg",
"Product_Id": "00014632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5792,
"name": "تشيزا شيدر مبشور 325 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تشيزا شيدر مبشور 325 جم",
"Product_EN": null,
"Product_Id": "00014633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5793,
"name": "زاهر حلويات جيلى فواكه",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات جيلى فواكه",
"Product_EN": "Zaher Jelly Fresh Fruit ",
"Product_Id": "00014634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5794,
"name": "زاهر اكياس فاكيوم 25*20 م 1 ق",
"price": 1.55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر اكياس فاكيوم 25*20 م 1 ق",
"Product_EN": null,
"Product_Id": "00014635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5795,
"name": "زاهر اكياس فاكيوم 25*20 م 1 ق",
"price": 1.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر اكياس فاكيوم 25*20 م 1 ق",
"Product_EN": null,
"Product_Id": "00014636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5796,
"name": "فى اى بى ماكينه حلاقه",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فى اى بى ماكينه حلاقه",
"Product_EN": "vip Shaver",
"Product_Id": "00014637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5797,
"name": "بافاريا شراب شعير بالجنزبيل والليمون كان 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا شراب شعير بالجنزبيل والليمون كان 330 مل",
"Product_EN": null,
"Product_Id": "00014638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5798,
"name": "بافاريا مشروب شعير بالمانجو والماراكويا - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير بالمانجو والماراكويا - موقوف",
"Product_EN": " ",
"Product_Id": "00014639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5799,
"name": "بافاريا شراب شعير بالمانجو والفواكة الاستوائية كان",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا شراب شعير بالمانجو والفواكة الاستوائية كان",
"Product_EN": null,
"Product_Id": "00014640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5800,
"name": "بافاريا شراب شعير بالجنزبيل والليمون كانز 500 مل",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا شراب شعير بالجنزبيل والليمون كانز 500 مل",
"Product_EN": null,
"Product_Id": "00014641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5801,
"name": "الربيع عصير تفاح تتراباك 200 مل - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير تفاح تتراباك 200 مل - موقوف",
"Product_EN": null,
"Product_Id": "00014642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5802,
"name": "ريميا مايونيز 500 جم",
"price": 37.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريميا مايونيز 500 جم",
"Product_EN": null,
"Product_Id": "00014643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5803,
"name": "ريميا مايونيز 250 جم",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريميا مايونيز 250 جم",
"Product_EN": null,
"Product_Id": "00014644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5804,
"name": "دلما شاى أخضر بالياسمين 20 فلتر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى أخضر بالياسمين 20 فلتر",
"Product_EN": null,
"Product_Id": "00014645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5805,
"name": "دلما شاى افطار انجليزى 20 فلتر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى افطار انجليزى 20 فلتر",
"Product_EN": null,
"Product_Id": "00014646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5806,
"name": "دلما شاى ايرل جراى 20 فتله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دلما شاى ايرل جراى 20 فتله",
"Product_EN": null,
"Product_Id": "00014647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5807,
"name": "تيفاني بريك ريزو بسكويت ريزو بالشيكولاته 20 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني بريك ريزو بسكويت ريزو بالشيكولاته 20 جم",
"Product_EN": null,
"Product_Id": "00014648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5808,
"name": "تيفانى بريك تايم شيكولاته 16 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بريك تايم شيكولاته 16 جم",
"Product_EN": null,
"Product_Id": "00014649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5809,
"name": "تيفانى مارى بسكويت شاى 200 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى مارى بسكويت شاى 200 جم",
"Product_EN": null,
"Product_Id": "00014650 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5810,
"name": "تيفانى كوكيز ميني مونستا 32 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى كوكيز ميني مونستا 32 جم",
"Product_EN": null,
"Product_Id": "00014651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5811,
"name": "تيفاني نتى بايتس بسكويت شوكولاته وبندق 81 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني نتى بايتس بسكويت شوكولاته وبندق 81 جم",
"Product_EN": null,
"Product_Id": "00014652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5812,
"name": "تيفاني نتى بايتس جوز الهند واللوز 81 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني نتى بايتس جوز الهند واللوز 81 جم",
"Product_EN": null,
"Product_Id": "00014653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5813,
"name": "ستورك ويزرس بنبون بالشكولاتة شوجر فري 60 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ويزرس بنبون بالشكولاتة شوجر فري 60 جم",
"Product_EN": null,
"Product_Id": "00014654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5814,
"name": "تيفاني ديلايتس كوكيز شيكولاته 45 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني ديلايتس كوكيز شيكولاته 45 جم",
"Product_EN": null,
"Product_Id": "00014655 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5815,
"name": "ايزيس شاى ريجيم بالليمون 50 فلتر + ينسون 20 فلتر",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس شاى ريجيم بالليمون 50 فلتر + ينسون 20 فلتر",
"Product_EN": "Isis Diet Lemon Tea 50 Bags + ISIS Anise 20 Bags",
"Product_Id": "00014656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5816,
"name": "الربيع عصير الفواكه الاستوائيه تتراباك 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير الفواكه الاستوائيه تتراباك 330 مل",
"Product_EN": null,
"Product_Id": "00014658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5817,
"name": "الربيع عصير برتقال وجزر تتراباك 330 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الربيع عصير برتقال وجزر تتراباك 330 مل",
"Product_EN": null,
"Product_Id": "00014659 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5818,
"name": "زاهر ايس كريم تين شوكى وزن",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم تين شوكى وزن",
"Product_EN": "Zaher Fig Ice Cream - Scalable ",
"Product_Id": "00014660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5819,
"name": "رواخ مشروب جوافه 355 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رواخ مشروب جوافه 355 مل",
"Product_EN": "Rauch Guava Drink 355 ml",
"Product_Id": "00014661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5820,
"name": "سانتيه جرانولا جولد شيكولاته وبرتقال 300 جم",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سانتيه جرانولا جولد شيكولاته وبرتقال 300 جم",
"Product_EN": null,
"Product_Id": "00014662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5821,
"name": "سانتيه جرانولا جولد عسل ومكسرات 300 جم",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سانتيه جرانولا جولد عسل ومكسرات 300 جم",
"Product_EN": null,
"Product_Id": "00014663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5822,
"name": "لونج شيبس اورجينال 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس اورجينال 75 جم",
"Product_EN": null,
"Product_Id": "00014664 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5823,
"name": "لونج شيبس بابريكا 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس بابريكا 75 جم",
"Product_EN": null,
"Product_Id": "00014665 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5824,
"name": "لونج شيبس ساور كريمه وبصل 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس ساور كريمه وبصل 75 جم",
"Product_EN": null,
"Product_Id": "00014666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5825,
"name": "لونج شيبس وسابى 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس وسابى 75 جم",
"Product_EN": null,
"Product_Id": "00014667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5826,
"name": "لونج شيبس خل وملح البحر 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس خل وملح البحر 75 جم",
"Product_EN": null,
"Product_Id": "00014668 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5827,
"name": "لونج شيبس باربيكيو وعسل 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس باربيكيو وعسل 75 جم",
"Product_EN": null,
"Product_Id": "00014669 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5828,
"name": "لونج شيبس سويت شيلى 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس سويت شيلى 75 جم",
"Product_EN": null,
"Product_Id": "00014670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5829,
"name": "لونج شيبس كريمه الشبت 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس كريمه الشبت 75 جم",
"Product_EN": null,
"Product_Id": "00014671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5830,
"name": "لونج شيبس جبنه وبصل 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس جبنه وبصل 75 جم",
"Product_EN": null,
"Product_Id": "00014672 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5831,
"name": "لونج شيبس طماطم 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس طماطم 75 جم",
"Product_EN": null,
"Product_Id": "00014673 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5832,
"name": "لونج شيبس باربكيو 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس باربكيو 75 جم",
"Product_EN": null,
"Product_Id": "00014674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5833,
"name": "سانتيه شوفان كيس 500 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سانتيه شوفان كيس 500 جم",
"Product_EN": null,
"Product_Id": "00014675 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5834,
"name": "ميجا ايس كريم فانيليا",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميجا ايس كريم فانيليا",
"Product_EN": null,
"Product_Id": "00014676 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5835,
"name": "لونج شيبس جبنه 75 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لونج شيبس جبنه 75 جم",
"Product_EN": null,
"Product_Id": "00014677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5836,
"name": "ميجا ايس كريم دوبل فراولة",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميجا ايس كريم دوبل فراولة",
"Product_EN": null,
"Product_Id": "00014678 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5837,
"name": "ميجا ايس كريم ميكس بيرى",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميجا ايس كريم ميكس بيرى",
"Product_EN": null,
"Product_Id": "00014679 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5838,
"name": "نستله ايس كريم كيت كات",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله ايس كريم كيت كات",
"Product_EN": null,
"Product_Id": "00014680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5839,
"name": "اوريو ايس كريم استيك",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اوريو ايس كريم استيك",
"Product_EN": null,
"Product_Id": "00014681 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5840,
"name": "اوريو ايس كريم ويتش",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اوريو ايس كريم ويتش",
"Product_EN": null,
"Product_Id": "00014682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5841,
"name": "اوريو ايس كريم كاب",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اوريو ايس كريم كاب",
"Product_EN": null,
"Product_Id": "00014683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5842,
"name": "برادايس ايس كريم كاب غزل البنات",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برادايس ايس كريم كاب غزل البنات",
"Product_EN": null,
"Product_Id": "00014684 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5843,
"name": "دولسيكا ايس كريم الاسطورة فانيليا",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دولسيكا ايس كريم الاسطورة فانيليا",
"Product_EN": null,
"Product_Id": "00014685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5844,
"name": "اسكويز استيك ايس كريم مكس بيرى",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اسكويز استيك ايس كريم مكس بيرى",
"Product_EN": null,
"Product_Id": "00014687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5845,
"name": "جاردينو كاتشب ديوباك 285 جم + جاردينو مايونيز ديوب",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جاردينو كاتشب ديوباك 285 جم + جاردينو مايونيز ديوب",
"Product_EN": null,
"Product_Id": "00014688 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5846,
"name": "دافيدوف قهوه سريعة التحضير كريمه انتنس 90 جم",
"price": 114,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دافيدوف قهوه سريعة التحضير كريمه انتنس 90 جم",
"Product_EN": "Davidoff Instant Coffee Cream Intense 90 gm",
"Product_Id": "00014690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5847,
"name": "العبد باكو بسكويت مشكلت 4 ق",
"price": 84,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد باكو بسكويت مشكلت 4 ق",
"Product_EN": null,
"Product_Id": "00014691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5848,
"name": "العبد باكو بسكويت مشكلت 9 ق",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد باكو بسكويت مشكلت 9 ق",
"Product_EN": null,
"Product_Id": "00014692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5849,
"name": "العبد باكو بسكويت مشكل علبه 18 ق",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد باكو بسكويت مشكل علبه 18 ق",
"Product_EN": null,
"Product_Id": "00014693 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5850,
"name": "كوكس ملاحه ملح 200 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس ملاحه ملح 200 جم",
"Product_EN": null,
"Product_Id": "00014694 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5851,
"name": "كوكس خميره 450 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس خميره 450 جم",
"Product_EN": null,
"Product_Id": "00014695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5852,
"name": "زينه مناديل تواليت لافندر مضغوط 6 بكرة",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل تواليت لافندر مضغوط 6 بكرة",
"Product_EN": null,
"Product_Id": "00014696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5853,
"name": "كيت كات شوكولاتة 5 اصابع دوبل شوكلت 43 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة 5 اصابع دوبل شوكلت 43 جم",
"Product_EN": "Kitkat 5 finger double chocolate bars 43 gm",
"Product_Id": "00014697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5854,
"name": "كيت كات شوكولاتة 5 اصابع دوبل شوكلت 43 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة 5 اصابع دوبل شوكلت 43 جم",
"Product_EN": "Kitkat 5 finger double chocolate bars 43 gm",
"Product_Id": "00014698 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5855,
"name": "زينه مناديل تواليت مضغوط 4 بكرة",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل تواليت مضغوط 4 بكرة",
"Product_EN": null,
"Product_Id": "00014699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5856,
"name": "زينه مناديل تواليت مضغوط عبوة توفير 6 بكرة",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل تواليت مضغوط عبوة توفير 6 بكرة",
"Product_EN": null,
"Product_Id": "00014700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5857,
"name": "زينه مناديل متعدد الاستخدامات جامبو رول (L)",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل متعدد الاستخدامات جامبو رول (L)",
"Product_EN": null,
"Product_Id": "00014701 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5858,
"name": "زينه مناديل متعددة الاستخدامات جامبو بكرة ( xxl)",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل متعددة الاستخدامات جامبو بكرة ( xxl)",
"Product_EN": null,
"Product_Id": "00014702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5859,
"name": "زينه مناديل مطبخ اقتصادى عادى 4 بكرة",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل مطبخ اقتصادى عادى 4 بكرة",
"Product_EN": null,
"Product_Id": "00014703 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5860,
"name": "فى اى بى ماكينه حلاقه مان ثرى",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فى اى بى ماكينه حلاقه مان ثرى",
"Product_EN": "vip Shaver",
"Product_Id": "00014704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5861,
"name": "زينه مناديل سحب 400م * 4 قطعه",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل سحب 400م * 4 قطعه",
"Product_EN": null,
"Product_Id": "00014705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5862,
"name": "زينه بيبى مناديل سحب 450 منديل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه بيبى مناديل سحب 450 منديل",
"Product_EN": null,
"Product_Id": "00014706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5863,
"name": "زينه مناديل سحب 550 منديل * 4 قطعه",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل سحب 550 منديل * 4 قطعه",
"Product_EN": null,
"Product_Id": "00014707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5864,
"name": "زينه منديل سحب كان 150 منديل",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه منديل سحب كان 150 منديل",
"Product_EN": null,
"Product_Id": "00014708 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5865,
"name": "دوف شامبو عنايه بالتلف 400 مل",
"price": 46.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو عنايه بالتلف 400 مل",
"Product_EN": "Dove Shampoo Damage Care 400ml",
"Product_Id": "00014709 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5866,
"name": "كنور فاين فودز صلصه ظرف 50 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فاين فودز صلصه ظرف 50 جم",
"Product_EN": "Knorr Sauce 50 gm - Sachet",
"Product_Id": "00014710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5867,
"name": "هوكس جمبرى لحم كيس 120\/80 400 جم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هوكس جمبرى لحم كيس 120\/80 400 جم",
"Product_EN": "Hawkes Beef Shrimp Bag 120\/80 400 gm",
"Product_Id": "00014712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5868,
"name": "العزيزه ارز بسمتي هندي 1 كجم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العزيزه ارز بسمتي هندي 1 كجم",
"Product_EN": "Al Aziza Indian Bassmati Rice 1 kg",
"Product_Id": "00014713 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5869,
"name": "تشويس صويا صوص فاتح 500 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس صويا صوص فاتح 500 مل",
"Product_EN": null,
"Product_Id": "00014714 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5870,
"name": "ديلي فريش كاتشب طماطم 340 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي فريش كاتشب طماطم 340 جم",
"Product_EN": null,
"Product_Id": "00014715 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5871,
"name": "تشويس جراند قهوة خضراء 200 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس جراند قهوة خضراء 200 جم",
"Product_EN": null,
"Product_Id": "00014716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5872,
"name": "لاكتيل حليب كامل الدسم 1 لتر 6 ق",
"price": 84,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لاكتيل حليب كامل الدسم 1 لتر 6 ق",
"Product_EN": "Lactel Full Cream Milk 1 L 6 Pieces",
"Product_Id": "00014717 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5873,
"name": "زاهر حليب جاموسي كامل الدسم زجاجه 1 لتر",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب جاموسي كامل الدسم زجاجه 1 لتر",
"Product_EN": "Zaher Buffalo Milk Full Cream Bottle 1 L",
"Product_Id": "00014718 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5874,
"name": "زاهر حليب جاموسي خالى الدسم زجاجه 1 لتر",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب جاموسي خالى الدسم زجاجه 1 لتر",
"Product_EN": "Zaher Buffalo Milk Skimmed Bottle1 L ",
"Product_Id": "00014719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5875,
"name": "زاهر حليب بقرى كامل الدسم زجاجه 1 لتر",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب بقرى كامل الدسم زجاجه 1 لتر",
"Product_EN": "Zaher Beef Milk Full Cream Bottle 1 L",
"Product_Id": "00014720 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5876,
"name": "ساميانج نودلز كورى بنكهه الدجاج الحار3 اضعاف 150جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ساميانج نودلز كورى بنكهه الدجاج الحار3 اضعاف 150جم",
"Product_EN": null,
"Product_Id": "00014722 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5877,
"name": "الزهار جلاش الى350 جم عرض",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الزهار جلاش الى350 جم عرض",
"Product_EN": null,
"Product_Id": "00014723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5878,
"name": "المتولى بن قطع بندق 125 جم ",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن قطع بندق 125 جم ",
"Product_EN": null,
"Product_Id": "00014724 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5879,
"name": "المتولى بن ساده غامق 125 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن ساده غامق 125 جم",
"Product_EN": null,
"Product_Id": "00014725 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5880,
"name": "المتولى بن غامق محوج 125 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن غامق محوج 125 جم",
"Product_EN": null,
"Product_Id": "00014726 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5881,
"name": "المتولى بن فرنساوى 125 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن فرنساوى 125 جم",
"Product_EN": null,
"Product_Id": "00014727 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5882,
"name": "المتولى بن ساده فاتح 100 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن ساده فاتح 100 جم",
"Product_EN": null,
"Product_Id": "00014728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5883,
"name": "المتولى بن فاتح محوج 100 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن فاتح محوج 100 جم",
"Product_EN": null,
"Product_Id": "00014729 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5884,
"name": "المتولى بن ساده وسط 100 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن ساده وسط 100 جم",
"Product_EN": null,
"Product_Id": "00014730 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5885,
"name": "المتولى بن وسط محوج 100 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن وسط محوج 100 جم",
"Product_EN": null,
"Product_Id": "00014731 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5886,
"name": "المتولى بن فاتح ساده 200 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن فاتح ساده 200 جم",
"Product_EN": null,
"Product_Id": "00014732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5887,
"name": "المتولى بن فاتح محوج 200 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن فاتح محوج 200 جم",
"Product_EN": null,
"Product_Id": "00014733 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5888,
"name": "المتولى بن ساده وسط 200 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن ساده وسط 200 جم",
"Product_EN": null,
"Product_Id": "00014734 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5889,
"name": "المتولى بن وسط محوج 200 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن وسط محوج 200 جم",
"Product_EN": null,
"Product_Id": "00014735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5890,
"name": "المتولى بن ساده فاتح 250 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن ساده فاتح 250 جم",
"Product_EN": null,
"Product_Id": "00014736 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5891,
"name": "المتولى بن ساده وسط 250 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن ساده وسط 250 جم",
"Product_EN": null,
"Product_Id": "00014737 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5892,
"name": "المتولى بن فاتح محوج 250 جم",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن فاتح محوج 250 جم",
"Product_EN": null,
"Product_Id": "00014738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5893,
"name": "المتولى بن وسط محوج 250 جم",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن وسط محوج 250 جم",
"Product_EN": null,
"Product_Id": "00014739 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5894,
"name": "المتولى بن فاتح ساده 500 جم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن فاتح ساده 500 جم",
"Product_EN": null,
"Product_Id": "00014740 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5895,
"name": "المتولى بن فاتح محوج 500 جم",
"price": 96,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المتولى بن فاتح محوج 500 جم",
"Product_EN": null,
"Product_Id": "00014741 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5896,
"name": "خله خشب شيش 40 ق",
"price": 2.35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "خله خشب شيش 40 ق",
"Product_EN": null,
"Product_Id": "00014742 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5897,
"name": "ساميانج نودلز كورى بنكهه الدجاج الحار 150 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ساميانج نودلز كورى بنكهه الدجاج الحار 150 جم",
"Product_EN": null,
"Product_Id": "00014743 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5898,
"name": "عطاره - لبان دكر وزن",
"price": 122,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - لبان دكر وزن",
"Product_EN": "Attara Frankincense - Scalable ",
"Product_Id": "00014748 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5899,
"name": "عطاره - حنه اسوانى وزن",
"price": 25.2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - حنه اسوانى وزن",
"Product_EN": "Attara Henna Aswany - Scalable ",
"Product_Id": "00014749 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5900,
"name": "عطاره - شبه ناعمه وزن",
"price": 25.2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - شبه ناعمه وزن",
"Product_EN": "Attara Shibh soft - Scalable ",
"Product_Id": "00014750 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5901,
"name": "عطاره - كرسم وزن",
"price": 34.3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - كرسم وزن",
"Product_EN": "Attara Karasm - Scalable ",
"Product_Id": "00014751 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5902,
"name": "عطاره - كريم شانتيه وزن",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره - كريم شانتيه وزن",
"Product_EN": "Attara Whipped Topping - Scalable ",
"Product_Id": "00014754 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5903,
"name": "عطاره . لوجينا بودره فانيليا 1 ق",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لوجينا بودره فانيليا 1 ق",
"Product_EN": "Attara Logina Vanilla Powder 1 Pieces ",
"Product_Id": "00014756 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5904,
"name": "عطاره . فلفل ابيض حصى - موقوف",
"price": 146.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فلفل ابيض حصى - موقوف",
"Product_EN": "Attara Gravel White Pepper - Scalable",
"Product_Id": "00014757 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5905,
"name": "عطاره . لوز مدخن وزن",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لوز مدخن وزن",
"Product_EN": "Attara Smoked Almonds - Scalable ",
"Product_Id": "00014758 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5906,
"name": "عطاره . فسدق مدخن وزن",
"price": 225,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فسدق مدخن وزن",
"Product_EN": "Attara Smoked Pistachio - Scalable ",
"Product_Id": "00014759 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5907,
"name": "عطاره . كاجو مدخن وزن",
"price": 325,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كاجو مدخن وزن",
"Product_EN": "Attara Smoked Cashew - Scalable ",
"Product_Id": "00014760 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5908,
"name": "انجل خميره قالب 450جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "انجل خميره قالب 450جم",
"Product_EN": "anjal Yeast Mold 450 gm",
"Product_Id": "00014761 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5909,
"name": "العميد بن غامق محوج 200 جم",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العميد بن غامق محوج 200 جم",
"Product_EN": null,
"Product_Id": "00014762 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5910,
"name": "العميد بن خلطة لبنانية مع هيل200 جم",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العميد بن خلطة لبنانية مع هيل200 جم",
"Product_EN": null,
"Product_Id": "00014763 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5911,
"name": "العميد بن خلطة لبنانية بدون هيل200 جم",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العميد بن خلطة لبنانية بدون هيل200 جم",
"Product_EN": null,
"Product_Id": "00014764 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5912,
"name": "العميد بن قهوة أميريكية 420 جم",
"price": 198,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العميد بن قهوة أميريكية 420 جم",
"Product_EN": null,
"Product_Id": "00014765 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5913,
"name": "العميد اسبرسو حب 500 جم",
"price": 198,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العميد اسبرسو حب 500 جم",
"Product_EN": null,
"Product_Id": "00014766 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5914,
"name": "مــاك واي سيزار دريسنج للسلطة 300 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مــاك واي سيزار دريسنج للسلطة 300 جم",
"Product_EN": null,
"Product_Id": "00014767 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5915,
"name": "مــاك واي الف جزيرة دريسنج للسلطة 300 جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مــاك واي الف جزيرة دريسنج للسلطة 300 جم",
"Product_EN": null,
"Product_Id": "00014768 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5916,
"name": "ماك واي مستردة بالعسل دريسنج للسلطة 300 جم ",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واي مستردة بالعسل دريسنج للسلطة 300 جم ",
"Product_EN": null,
"Product_Id": "00014769 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5917,
"name": "مــاك واي ماك صوص سويت شيلى 325 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مــاك واي ماك صوص سويت شيلى 325 جم",
"Product_EN": null,
"Product_Id": "00014771 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5918,
"name": "مــاك واي صوص شطة حارة 240 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مــاك واي صوص شطة حارة 240 جم",
"Product_EN": null,
"Product_Id": "00014772 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5919,
"name": "مــاك واي ستيك عسل باربيكيو 330 جم",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مــاك واي ستيك عسل باربيكيو 330 جم",
"Product_EN": null,
"Product_Id": "00014773 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5920,
"name": "ماك واي صوص برجر 330 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واي صوص برجر 330 جم",
"Product_EN": null,
"Product_Id": "00014774 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5921,
"name": "ماك واي صوص ريزو 300 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واي صوص ريزو 300 جم",
"Product_EN": null,
"Product_Id": "00014775 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5922,
"name": "ماك واي صوص بافلو وينجز 325 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واي صوص بافلو وينجز 325 جم",
"Product_EN": null,
"Product_Id": "00014776 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5923,
"name": "ماك واي صوص صلصة ناتشو 325 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واي صوص صلصة ناتشو 325 جم",
"Product_EN": null,
"Product_Id": "00014777 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5924,
"name": "ماك واى ماك صوص شيكولاتة 350 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى ماك صوص شيكولاتة 350 جم",
"Product_EN": null,
"Product_Id": "00014778 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5925,
"name": "ماك واى ماك صوص كراميل 350 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى ماك صوص كراميل 350 جم",
"Product_EN": null,
"Product_Id": "00014779 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5926,
"name": "ماك واى ماك صوص فراولة 350 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى ماك صوص فراولة 350 جم",
"Product_EN": null,
"Product_Id": "00014780 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5927,
"name": "ماك واى مايونيز الاصلى 475 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى مايونيز الاصلى 475 جم",
"Product_EN": null,
"Product_Id": "00014781 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5928,
"name": "ماك واى مايونيز الاصلى 325 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى مايونيز الاصلى 325 جم",
"Product_EN": null,
"Product_Id": "00014782 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5929,
"name": "ماك واى مايونيز بالثوم 325 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى مايونيز بالثوم 325 جم",
"Product_EN": null,
"Product_Id": "00014783 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5930,
"name": "ماك واى مايونيز تشلى 325 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى مايونيز تشلى 325 جم",
"Product_EN": null,
"Product_Id": "00014784 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5931,
"name": "ماك واى مايونيز جوبينو 325 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى مايونيز جوبينو 325 جم",
"Product_EN": null,
"Product_Id": "00014785 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5932,
"name": "ماك واى كاتشب 525 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى كاتشب 525 جم",
"Product_EN": null,
"Product_Id": "00014786 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5933,
"name": "ماك واى كاتشب بارد 310 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى كاتشب بارد 310 جم",
"Product_EN": null,
"Product_Id": "00014787 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5934,
"name": "ماك واى كاتشب حار 310 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى كاتشب حار 310 جم",
"Product_EN": null,
"Product_Id": "00014788 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5935,
"name": "ماك واى صوص بيتزا 360 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى صوص بيتزا 360 جم",
"Product_EN": null,
"Product_Id": "00014789 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5936,
"name": "ماك واى صوص المكرونة 360 جم",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى صوص المكرونة 360 جم",
"Product_EN": null,
"Product_Id": "00014790 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5937,
"name": "ماك واى صوص هريسة الشطة 325 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى صوص هريسة الشطة 325 جم",
"Product_EN": null,
"Product_Id": "00014791 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5938,
"name": "ماك واى مسطردة 265 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى مسطردة 265 جم",
"Product_EN": null,
"Product_Id": "00014792 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5939,
"name": "ماك واى كاتشب دويباك 285 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى كاتشب دويباك 285 جم",
"Product_EN": null,
"Product_Id": "00014793 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5940,
"name": "ماك واى باربيكيو صوص دويباك 285 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى باربيكيو صوص دويباك 285 جم",
"Product_EN": null,
"Product_Id": "00014794 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5941,
"name": "ماك واى مايونيز دويباك 285 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى مايونيز دويباك 285 جم",
"Product_EN": null,
"Product_Id": "00014795 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5942,
"name": "ناتى زبدة فول سودانى بطعم القرفة 340 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناتى زبدة فول سودانى بطعم القرفة 340 جم",
"Product_EN": null,
"Product_Id": "00014796 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5943,
"name": "ناتى زبدة فول سودانى بطعم الشكولاته 340 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناتى زبدة فول سودانى بطعم الشكولاته 340 جم",
"Product_EN": null,
"Product_Id": "00014797 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5944,
"name": "ناتى زبدة فول سودانى بطعم الاناناس 340 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناتى زبدة فول سودانى بطعم الاناناس 340 جم",
"Product_EN": null,
"Product_Id": "00014798 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5945,
"name": "ناتى زبدة فول سودانى كريمى بريميم 340 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناتى زبدة فول سودانى كريمى بريميم 340 جم",
"Product_EN": null,
"Product_Id": "00014799 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5946,
"name": "ناتى زبدة فول سودانى كرانشى بريميم 340 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناتى زبدة فول سودانى كرانشى بريميم 340 جم",
"Product_EN": null,
"Product_Id": "00014800 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5947,
"name": "ناتي زبده فول كريمي 340 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناتي زبده فول كريمي 340 جم",
"Product_EN": null,
"Product_Id": "00014801 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5948,
"name": "ناتي زبده فول كرانشي 340 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناتي زبده فول كرانشي 340 جم",
"Product_EN": null,
"Product_Id": "00014802 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5949,
"name": "ناتي زبده فول كريمي 510 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناتي زبده فول كريمي 510 جم",
"Product_EN": null,
"Product_Id": "00014803 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5950,
"name": "ناتي زبده فول كرانشي 510 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ناتي زبده فول كرانشي 510 جم",
"Product_EN": null,
"Product_Id": "00014804 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5951,
"name": "كرينكو فول سودانى سوبر كرانشى بطعم البابريكا 130 ج",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرينكو فول سودانى سوبر كرانشى بطعم البابريكا 130 ج",
"Product_EN": null,
"Product_Id": "00014805 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5952,
"name": "كرينكو فول سودانى سوبر كرانشى الشطة و الليمون130جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرينكو فول سودانى سوبر كرانشى الشطة و الليمون130جم",
"Product_EN": null,
"Product_Id": "00014806 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5953,
"name": "كرينكو فول سودانى سوبر كرانشى الطماطم المتبلة130جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرينكو فول سودانى سوبر كرانشى الطماطم المتبلة130جم",
"Product_EN": null,
"Product_Id": "00014807 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5954,
"name": "كرينكو فول سودانى سوبر كرانشى بطعم الجبنة 130 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرينكو فول سودانى سوبر كرانشى بطعم الجبنة 130 جم",
"Product_EN": null,
"Product_Id": "00014808 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5955,
"name": "كرينكو فول سودانى سوبر كرانشى الباربيكيو 130 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:46",
"updated_at": "2021-11-01 19:45:46",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرينكو فول سودانى سوبر كرانشى الباربيكيو 130 جم",
"Product_EN": null,
"Product_Id": "00014809 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5956,
"name": "كرينكو بوبس فشار زبدة و ملح 75 جم",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرينكو بوبس فشار زبدة و ملح 75 جم",
"Product_EN": null,
"Product_Id": "00014810 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5957,
"name": "كرينكو بوبس فشار بيتزا حارة 75 جم",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرينكو بوبس فشار بيتزا حارة 75 جم",
"Product_EN": null,
"Product_Id": "00014811 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5958,
"name": "كرينكو بوبس فشار كاتشب حار 75 جم",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرينكو بوبس فشار كاتشب حار 75 جم",
"Product_EN": null,
"Product_Id": "00014812 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5959,
"name": "با حبوب افطار موسلى بالمكسرات 300 جم",
"price": 44.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با حبوب افطار موسلى بالمكسرات 300 جم",
"Product_EN": null,
"Product_Id": "00014813 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5960,
"name": "با حبوب افطار موسلى مع الفواكه 300 جم",
"price": 44.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با حبوب افطار موسلى مع الفواكه 300 جم",
"Product_EN": null,
"Product_Id": "00014814 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5961,
"name": "با حبوب افطار موسلى مع الفواكه والعسل 300 جم",
"price": 44.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با حبوب افطار موسلى مع الفواكه والعسل 300 جم",
"Product_EN": null,
"Product_Id": "00014815 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5962,
"name": "با حبوب افطار موسلى مع الفواكه المجففة 300 جم",
"price": 44.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با حبوب افطار موسلى مع الفواكه المجففة 300 جم",
"Product_EN": null,
"Product_Id": "00014816 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5963,
"name": "با حبوب إفطار موسلى التوت البرى 300 جم",
"price": 44.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با حبوب إفطار موسلى التوت البرى 300 جم",
"Product_EN": null,
"Product_Id": "00014817 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5964,
"name": "با حبوب افطار موسلى البذور الخمسة و العسل 300 جم",
"price": 44.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با حبوب افطار موسلى البذور الخمسة و العسل 300 جم",
"Product_EN": null,
"Product_Id": "00014818 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5965,
"name": "با بار حبوب الافطار بالفراولة مع الكينوا 30 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با بار حبوب الافطار بالفراولة مع الكينوا 30 جم",
"Product_EN": null,
"Product_Id": "00014819 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5966,
"name": "با بار حبوب الافطار بالكرز مع الأمارانثوس 30 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با بار حبوب الافطار بالكرز مع الأمارانثوس 30 جم",
"Product_EN": null,
"Product_Id": "00014820 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5967,
"name": "با بار حبوب الافطار بجوز الهند مع الشيا 30 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با بار حبوب الافطار بجوز الهند مع الشيا 30 جم",
"Product_EN": null,
"Product_Id": "00014821 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5968,
"name": "با بار حبوب الإفطار مع الفواكه 40 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با بار حبوب الإفطار مع الفواكه 40 جم",
"Product_EN": null,
"Product_Id": "00014822 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5969,
"name": "با بار حبوب الإفطار مع البذور والعسل 40 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با بار حبوب الإفطار مع البذور والعسل 40 جم",
"Product_EN": null,
"Product_Id": "00014823 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5970,
"name": "با بار حبوب الإفطار مع الفواكه والمكسرات 40 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با بار حبوب الإفطار مع الفواكه والمكسرات 40 جم",
"Product_EN": null,
"Product_Id": "00014824 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5971,
"name": "با رقائق الحبوب مع شرائح الموز و جوز الهند 250 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با رقائق الحبوب مع شرائح الموز و جوز الهند 250 جم",
"Product_EN": null,
"Product_Id": "00014825 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5972,
"name": "عطاره . فول سودانى نكهات وزن ",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فول سودانى نكهات وزن ",
"Product_EN": "Attara Peanuts Flavors - Scalable",
"Product_Id": "00014826 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5973,
"name": "با رقائق الحبوب التوت الازرق و التوت البرى 250 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "با رقائق الحبوب التوت الازرق و التوت البرى 250 جم",
"Product_EN": null,
"Product_Id": "00014827 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5974,
"name": "كلاسيك بسكويت 100% زبدة صفيح 454 جم",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت 100% زبدة صفيح 454 جم",
"Product_EN": null,
"Product_Id": "00014828 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5975,
"name": "كلاسيك بسكويت 100% زبدة صفيح 908 جم",
"price": 144,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت 100% زبدة صفيح 908 جم",
"Product_EN": null,
"Product_Id": "00014829 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5976,
"name": "كلاسيك بسكويت كولكشن صفيح 310 جم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت كولكشن صفيح 310 جم",
"Product_EN": null,
"Product_Id": "00014830 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5977,
"name": "كلاسيك بسكويت كولكشن صفيح 454 جم",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت كولكشن صفيح 454 جم",
"Product_EN": null,
"Product_Id": "00014831 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5978,
"name": "كلاسيك بسكويت كولكشن صفيح 620 جم",
"price": 99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت كولكشن صفيح 620 جم",
"Product_EN": null,
"Product_Id": "00014832 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5979,
"name": "كلاسيك بسكويت كولكشن صفيح 908 جم",
"price": 118,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت كولكشن صفيح 908 جم",
"Product_EN": null,
"Product_Id": "00014833 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5980,
"name": "كلاسيك بسكويت بالزبده والقرفة 12 قطعة",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت بالزبده والقرفة 12 قطعة",
"Product_EN": null,
"Product_Id": "00014834 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5981,
"name": "كلاسيك بسكويت بالزبده والكاكاو 12 قطعة",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت بالزبده والكاكاو 12 قطعة",
"Product_EN": null,
"Product_Id": "00014835 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5982,
"name": "كلاسيك بسكويت بالزبده والزبيب 12 قطعة",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت بالزبده والزبيب 12 قطعة",
"Product_EN": null,
"Product_Id": "00014836 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5983,
"name": "كلاسيك بسكويت بالزبده فينيش & بريتزل 12 قطعة",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت بالزبده فينيش & بريتزل 12 قطعة",
"Product_EN": null,
"Product_Id": "00014837 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5984,
"name": "كلاسيك بسكويت بالزبده والفانيليا 12 قطعة",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت بالزبده والفانيليا 12 قطعة",
"Product_EN": null,
"Product_Id": "00014838 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5985,
"name": "كلاسيك بسكويت كوليكشن فانيليا 40 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت كوليكشن فانيليا 40 جم",
"Product_EN": null,
"Product_Id": "00014839 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5986,
"name": "كلاسيك بسكويت كوليكشن مشكل 40 جم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت كوليكشن مشكل 40 جم",
"Product_EN": null,
"Product_Id": "00014840 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5987,
"name": "كلاسيك بسكويت دايجستف 250 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت دايجستف 250 جم",
"Product_EN": null,
"Product_Id": "00014841 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5988,
"name": "كلاسيك بسكويت صغير قرفة 160 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت صغير قرفة 160 جم",
"Product_EN": null,
"Product_Id": "00014842 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5989,
"name": "كلاسيك بسكويت صغير كاكاو 160 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت صغير كاكاو 160 جم",
"Product_EN": null,
"Product_Id": "00014843 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5990,
"name": "كلاسيك بسكويت صغير جوزهند 160 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت صغير جوزهند 160 جم",
"Product_EN": null,
"Product_Id": "00014844 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5991,
"name": "كلاسيك بسكويت صغير بريتزل بالسكر 160 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت صغير بريتزل بالسكر 160 جم",
"Product_EN": null,
"Product_Id": "00014845 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5992,
"name": "كلاسيك بسكويت صغير فانيليا 160 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت صغير فانيليا 160 جم",
"Product_EN": null,
"Product_Id": "00014846 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5993,
"name": "كلاسيك بسكويت صغيرعلى اشكال حيوانات فانيليا 160",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت صغيرعلى اشكال حيوانات فانيليا 160",
"Product_EN": null,
"Product_Id": "00014847 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5994,
"name": "كلاسيك بسكويت صغير على اشكال حيوانات كاكاو 160 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلاسيك بسكويت صغير على اشكال حيوانات كاكاو 160 جم",
"Product_EN": null,
"Product_Id": "00014848 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5995,
"name": "فرسكو بسكويت ساده 40 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فرسكو بسكويت ساده 40 جم",
"Product_EN": null,
"Product_Id": "00014849 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5996,
"name": "ماكسيمام بسكويت بالتمر النقي 4 ق",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيمام بسكويت بالتمر النقي 4 ق",
"Product_EN": null,
"Product_Id": "00014850 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5997,
"name": "لا جرينيد مناديل مبللة معقه 50 منديل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "لا جرينيد مناديل مبللة معقه 50 منديل",
"Product_EN": null,
"Product_Id": "00014851 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5998,
"name": "لا جرينيد جل معقم لليدين جوز هند 75 مل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لا جرينيد جل معقم لليدين جوز هند 75 مل",
"Product_EN": null,
"Product_Id": "00014852 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 5999,
"name": "لا جرينيد جل معقم لليدين فراوله 75 مل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لا جرينيد جل معقم لليدين فراوله 75 مل",
"Product_EN": null,
"Product_Id": "00014853 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6000,
"name": "لا جرينيد جل معقم لليدين تفاح 75 مل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لا جرينيد جل معقم لليدين تفاح 75 مل",
"Product_EN": null,
"Product_Id": "00014854 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6001,
"name": "العابد صدور بط مجمد وزن",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العابد صدور بط مجمد وزن",
"Product_EN": null,
"Product_Id": "00014868 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6002,
"name": "العابد اوراك بط مجمد 1 كجم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العابد اوراك بط مجمد 1 كجم",
"Product_EN": null,
"Product_Id": "00014869 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6003,
"name": "كاميل سويت شيلى صوص 330 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كاميل سويت شيلى صوص 330 جم",
"Product_EN": null,
"Product_Id": "00014870 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6004,
"name": "رويال اعشاب بردقوش 12 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب بردقوش 12 فلتر",
"Product_EN": "Royal Marjoram Herbs 12 Bags",
"Product_Id": "00014871 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6005,
"name": "ساميانج نودلز كورى دجاج لايت 150 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ساميانج نودلز كورى دجاج لايت 150 جم",
"Product_EN": null,
"Product_Id": "00014872 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6006,
"name": "بابيا مناديل سحب 550 منديل",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بابيا مناديل سحب 550 منديل",
"Product_EN": null,
"Product_Id": "00014873 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6007,
"name": "بابيا مناديل سحب 550 منديل * 3 ق",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بابيا مناديل سحب 550 منديل * 3 ق",
"Product_EN": null,
"Product_Id": "00014874 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6008,
"name": "فاميليا مناديل سحب 550 منديل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاميليا مناديل سحب 550 منديل",
"Product_EN": null,
"Product_Id": "00014875 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6009,
"name": "فامليا مناديل سحب 550 منديل * 3 ق",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فامليا مناديل سحب 550 منديل * 3 ق",
"Product_EN": null,
"Product_Id": "00014876 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6010,
"name": "دولفين تونه جولد شرائح مدخن 170 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونه جولد شرائح مدخن 170 جم",
"Product_EN": "Dolphin Gold Sliced Smoked Tuna 170 gm",
"Product_Id": "00014877 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6011,
"name": "ميلكا شوكولاتة ميلكينيس ستيك 87.5 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة ميلكينيس ستيك 87.5 جم",
"Product_EN": null,
"Product_Id": "00014878 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6012,
"name": "ميلكا شوكولاتة بالحليب 80 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالحليب 80 جم",
"Product_EN": null,
"Product_Id": "00014879 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6013,
"name": "ميلكا شوكولاتة بالعنب والبندق 80 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالعنب والبندق 80 جم",
"Product_EN": null,
"Product_Id": "00014880 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6014,
"name": " ميلكا شوكولاتة بالكاكاو وبسكويت اوريو 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": " ميلكا شوكولاتة بالكاكاو وبسكويت اوريو 100 جم",
"Product_EN": null,
"Product_Id": "00014881 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6015,
"name": "ميلكا شوكولاتة بالبندق 80 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالبندق 80 جم",
"Product_EN": null,
"Product_Id": "00014882 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6016,
"name": "فانتا برتقال كان 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا برتقال كان 300 مل",
"Product_EN": "Fanta Orange Can 300 ml",
"Product_Id": "00014884 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6017,
"name": "هاينز كاتشب بارد 340 جم * 2 قطعه",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب بارد 340 جم * 2 قطعه",
"Product_EN": "Heinz Ketchup 340 ml 1+1 Offer",
"Product_Id": "00014885 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6018,
"name": "ماك واى باربيكيو دريسنح مدخن 330 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماك واى باربيكيو دريسنح مدخن 330 جم",
"Product_EN": null,
"Product_Id": "00014887 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6019,
"name": "عطاره . خلطه فيجتار وزن",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . خلطه فيجتار وزن",
"Product_EN": null,
"Product_Id": "00014888 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6020,
"name": "لوتس بسكويت 186 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت 186 جم",
"Product_EN": "LOTUS Biscuits 186 gm",
"Product_Id": "00014889 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6021,
"name": "زاهر ايس كريم شيكولاته KROCCO MILK وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم شيكولاته KROCCO MILK وزن",
"Product_EN": "Zaher Ice Cream KROCCO Chocolate - Scalable ",
"Product_Id": "00014892 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6022,
"name": "زاهر ايس كريم حليب KROCCO MILK وزن",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم حليب KROCCO MILK وزن",
"Product_EN": "Zaher Ice Cream KROCCO MILK - Scalable ",
"Product_Id": "00014893 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6023,
"name": "كريستال زيت ذره 2.2 لتر + خل 1 لتر",
"price": 91,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذره 2.2 لتر + خل 1 لتر",
"Product_EN": "Crystal Corn Oil 2.2 L + Vinegar 1 L",
"Product_Id": "00014894 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6024,
"name": "الساعه مكرونة اسباجيتى 400 جم",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الساعه مكرونة اسباجيتى 400 جم",
"Product_EN": "Al SA'A Spaghetti Pasta 400 g",
"Product_Id": "00014896 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6025,
"name": "موكاتا كابتشينو جولد كراميل 18 جم ",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتا كابتشينو جولد كراميل 18 جم ",
"Product_EN": null,
"Product_Id": "00014897 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6026,
"name": "موكاتا كابتشينو جولد كراميل 18 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتا كابتشينو جولد كراميل 18 جم",
"Product_EN": null,
"Product_Id": "00014898 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6027,
"name": "موكاتا كابتشينو قليل السكر 18 جم ظرف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتا كابتشينو قليل السكر 18 جم ظرف",
"Product_EN": null,
"Product_Id": "00014899 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6028,
"name": "موكاتا كابتشينو قليل السكر 18 جم علبه *10",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتا كابتشينو قليل السكر 18 جم علبه *10",
"Product_EN": null,
"Product_Id": "00014900 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6029,
"name": "موكاتا كابتشينو كلاسيك 18 جم ظرف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتا كابتشينو كلاسيك 18 جم ظرف",
"Product_EN": null,
"Product_Id": "00014902 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6030,
"name": "موكاتا كابتشينو كلاسيك 18 جم علبه *10",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتا كابتشينو كلاسيك 18 جم علبه *10",
"Product_EN": null,
"Product_Id": "00014903 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6031,
"name": "موكاتا كابتشينو لاتيه 18 جم ظرف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتا كابتشينو لاتيه 18 جم ظرف",
"Product_EN": null,
"Product_Id": "00014904 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6032,
"name": "موكاتا كابتشينو لاتيه 18 جم علبه *10",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتا كابتشينو لاتيه 18 جم علبه *10",
"Product_EN": null,
"Product_Id": "00014905 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6033,
"name": "موكاتا كابتشينو شيكولاته 18 جم ظرف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتا كابتشينو شيكولاته 18 جم ظرف",
"Product_EN": null,
"Product_Id": "00014906 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6034,
"name": "موكاتا كابتشينو شيكولاته 18 جم علبه *10",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موكاتا كابتشينو شيكولاته 18 جم علبه *10",
"Product_EN": null,
"Product_Id": "00014907 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6035,
"name": "كتف ضانى وزن - بوم استلام",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كتف ضانى وزن - بوم استلام",
"Product_EN": "Lamb Shoulder - Scalable ",
"Product_Id": "00014908 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6036,
"name": "تشويس صويا صوص فاتح 250 مل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس صويا صوص فاتح 250 مل",
"Product_EN": null,
"Product_Id": "00014909 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6037,
"name": "تشويس ماء زهر 250 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس ماء زهر 250 مل",
"Product_EN": null,
"Product_Id": "00014911 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6038,
"name": "مهمت افندى قهوه اسبريسو 250 جم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مهمت افندى قهوه اسبريسو 250 جم",
"Product_EN": null,
"Product_Id": "00014912 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6039,
"name": "مهمت افندى قهوه برازيلى 250 جم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مهمت افندى قهوه برازيلى 250 جم",
"Product_EN": null,
"Product_Id": "00014913 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6040,
"name": "مهمت افندى قهوه كولمبى 250 جم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مهمت افندى قهوه كولمبى 250 جم",
"Product_EN": null,
"Product_Id": "00014914 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6041,
"name": "داونى مركز منعم ملابس ضد البكتريا 1 لتر",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز منعم ملابس ضد البكتريا 1 لتر",
"Product_EN": null,
"Product_Id": "00014915 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6042,
"name": "داونى مركز نسيم الوادى 1 لتر",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز نسيم الوادى 1 لتر",
"Product_EN": null,
"Product_Id": "00014916 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6043,
"name": "داونى مركز منعم ملابس احساس الرفاهيه 880 مل",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز منعم ملابس احساس الرفاهيه 880 مل",
"Product_EN": null,
"Product_Id": "00014917 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6044,
"name": "فينوس ماكينه حلاقه حريمى 2 ق",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فينوس ماكينه حلاقه حريمى 2 ق",
"Product_EN": null,
"Product_Id": "00014918 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6045,
"name": "بلو ثرى ماكينه حلاقه 2 ق",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بلو ثرى ماكينه حلاقه 2 ق",
"Product_EN": null,
"Product_Id": "00014919 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6046,
"name": "هيربل بلسم للشعر بالبن العربى 400 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل بلسم للشعر بالبن العربى 400 مل",
"Product_EN": null,
"Product_Id": "00014921 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6047,
"name": "هيربل بلسم بالصبار الفعال والبامبو 400 مل",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل بلسم بالصبار الفعال والبامبو 400 مل",
"Product_EN": null,
"Product_Id": "00014922 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6048,
"name": "صنى زيت خليط 750 مل + معلقة سيليكون",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صنى زيت خليط 750 مل + معلقة سيليكون",
"Product_EN": "Sunny Mixed Oil 750 ml + Silicone spatula",
"Product_Id": "00014923 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6049,
"name": "هيربال شامبو للشعر بالفحم 400 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال شامبو للشعر بالفحم 400 مل",
"Product_EN": null,
"Product_Id": "00014926 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6050,
"name": "نومور كريمة شيكولاتة بالبندق 1 كجم",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نومور كريمة شيكولاتة بالبندق 1 كجم",
"Product_EN": null,
"Product_Id": "00014927 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6051,
"name": "نومور كريمة شيكولاتة بالبندق 200 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نومور كريمة شيكولاتة بالبندق 200 جم",
"Product_EN": null,
"Product_Id": "00014928 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6052,
"name": "نومور كريمة شيكولاتة بالبندق 500 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نومور كريمة شيكولاتة بالبندق 500 جم",
"Product_EN": null,
"Product_Id": "00014929 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6053,
"name": "نومور كريمة شيكولاتة بالبندق زجاج 200 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نومور كريمة شيكولاتة بالبندق زجاج 200 جم",
"Product_EN": null,
"Product_Id": "00014930 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6054,
"name": "نومور كريمة شيكولاتة بالبندق زجاج 350 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نومور كريمة شيكولاتة بالبندق زجاج 350 جم",
"Product_EN": null,
"Product_Id": "00014931 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6055,
"name": "كوكاكولا مشروب مياه غازيه 950 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا مشروب مياه غازيه 950 مل",
"Product_EN": "Coca-Cola Soft Drink 950 ml",
"Product_Id": "00014932 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6056,
"name": "فانتا برتقال مشروب مياه غازيه 950 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا برتقال مشروب مياه غازيه 950 مل",
"Product_EN": "Fanta Orange Soft Drink 950 ml",
"Product_Id": "00014933 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6057,
"name": "سبرايت مشروب مياه غازيه 950 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت مشروب مياه غازيه 950 مل",
"Product_EN": "Sprite Soft Drink 950 ml",
"Product_Id": "00014934 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6058,
"name": "البوادى طحينه 480 جم + هارفست خل 1لتر",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى طحينه 480 جم + هارفست خل 1لتر",
"Product_EN": null,
"Product_Id": "00014935 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6059,
"name": "اشهى سجق شرقى 1 كجم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهى سجق شرقى 1 كجم",
"Product_EN": "Ashha Oriental Saugage 1 Kg ",
"Product_Id": "00014936 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6060,
"name": "اشهى كفته بقرى 1 كجم",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهى كفته بقرى 1 كجم",
"Product_EN": "Ashha Beef Kofta 1 kg",
"Product_Id": "00014937 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6061,
"name": "اشهى هوت دوج لحم بقرى 1 كجم",
"price": 63,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهى هوت دوج لحم بقرى 1 كجم",
"Product_EN": "Ashha Hot Dog Beef 1 kg",
"Product_Id": "00014938 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6062,
"name": "اشهى برجر بقرى 1 كجم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهى برجر بقرى 1 كجم",
"Product_EN": "Ashha Beef Burger 1 kg",
"Product_Id": "00014940 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6063,
"name": "اشهى سجق شرقى 350 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهى سجق شرقى 350 جم",
"Product_EN": "Ashha Oriental Saugage 350 gm",
"Product_Id": "00014941 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6064,
"name": "اشهي سجق شرقي 700 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهي سجق شرقي 700 جم",
"Product_EN": "Ashha Oriental Saugage 700 gm",
"Product_Id": "00014942 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6065,
"name": "اشهى فرانك بقرى 1 كجم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهى فرانك بقرى 1 كجم",
"Product_EN": "Ashha Frank Beef 1 kg",
"Product_Id": "00014943 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6066,
"name": "اشهي فرانك بقري 400 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهي فرانك بقري 400 جم",
"Product_EN": "Ashha Frank Beef 400 gm",
"Product_Id": "00014944 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6067,
"name": "اشهي كفتة بقري 350 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهي كفتة بقري 350 جم",
"Product_EN": "Ashha Beef Kofta 350 gm",
"Product_Id": "00014945 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6068,
"name": "اشهي كفتة بقري 900 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهي كفتة بقري 900 جم",
"Product_EN": "Ashha Beef Kofta 900 gm",
"Product_Id": "00014946 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6069,
"name": "اشهي كوكتيل بقري 1 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهي كوكتيل بقري 1 كجم",
"Product_EN": "Ashha Beef Cocktail 1 kg",
"Product_Id": "00014947 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6070,
"name": "اشهي لحم مفروم بقري 1 كجم",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهي لحم مفروم بقري 1 كجم",
"Product_EN": "Ashha Minced Beef 1 kg",
"Product_Id": "00014948 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6071,
"name": "اشهي لحم مفروم بقري 350 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهي لحم مفروم بقري 350 جم",
"Product_EN": "Ashha Minced Beef 350 gm",
"Product_Id": "00014949 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6072,
"name": "اشهي لحم مفروم بقري 700 جم ",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهي لحم مفروم بقري 700 جم ",
"Product_EN": "Ashha Minced Beef 700 gm",
"Product_Id": "00014950 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6073,
"name": "اشهى ستربس الدجاج 900 جم ",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهى ستربس الدجاج 900 جم ",
"Product_EN": "Ashha Chicken Strips 900 gm",
"Product_Id": "00014952 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6074,
"name": "اشهى بانية الدجاج 900 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اشهى بانية الدجاج 900 جم",
"Product_EN": "Ashha Chicken Pane 900 gm",
"Product_Id": "00014953 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6075,
"name": "باب الشام كمون كيس 45 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باب الشام كمون كيس 45 جم",
"Product_EN": null,
"Product_Id": "00014954 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6076,
"name": "باب الشام بهارت كبسه 45 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باب الشام بهارت كبسه 45 جم",
"Product_EN": null,
"Product_Id": "00014955 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6077,
"name": "عبوه سيكيور اند فريش 16 اونز",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "عبوه سيكيور اند فريش 16 اونز",
"Product_EN": null,
"Product_Id": "00014956 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6078,
"name": "ديلي عصير تفاح 1 لتر",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير تفاح 1 لتر",
"Product_EN": "Dili Apple Juice 1 L ",
"Product_Id": "00014957 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6079,
"name": "ديلي عصير تفاح 290 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي عصير تفاح 290 مل",
"Product_EN": "Dili Apple Juice 290 ml ",
"Product_Id": "00014958 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6080,
"name": "نسكافيه جولد كابتشينو غير محلى 12.5 جم ظرف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه جولد كابتشينو غير محلى 12.5 جم ظرف",
"Product_EN": null,
"Product_Id": "00014959 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6081,
"name": "بريد واى خبز التورتيلا 5 قطع كبير",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريد واى خبز التورتيلا 5 قطع كبير",
"Product_EN": null,
"Product_Id": "00014962 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6082,
"name": "بسكريم ديو",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكريم ديو",
"Product_EN": null,
"Product_Id": "00014963 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6083,
"name": "بسكريم محشو بكريمه الكاكاو",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكريم محشو بكريمه الكاكاو",
"Product_EN": null,
"Product_Id": "00014964 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6084,
"name": "اريال مسحوق اوتوماتيك لافندر 2.5 كجم",
"price": 76,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اوتوماتيك لافندر 2.5 كجم",
"Product_EN": null,
"Product_Id": "00014965 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6085,
"name": "تايد جل اوتوماتيك اصلى 1.8 لتر",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد جل اوتوماتيك اصلى 1.8 لتر",
"Product_EN": null,
"Product_Id": "00014966 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6086,
"name": "اولويز يومى فوط صحيه طويل 26 فوطه",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز يومى فوط صحيه طويل 26 فوطه",
"Product_EN": null,
"Product_Id": "00014967 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6087,
"name": "اولويز الترا فوط صحيه طويل 8 فوطه",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز الترا فوط صحيه طويل 8 فوطه",
"Product_EN": null,
"Product_Id": "00014968 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6088,
"name": "توداى بار كيك كراميل - موقوف",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توداى بار كيك كراميل - موقوف",
"Product_EN": null,
"Product_Id": "00005457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6089,
"name": "توداى كيك جولدز - موقوف",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توداى كيك جولدز - موقوف",
"Product_EN": null,
"Product_Id": "00005458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6090,
"name": "بسكو تايم بالعجوه - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو تايم بالعجوه - موقوف",
"Product_EN": null,
"Product_Id": "00005459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6091,
"name": "توداى كيك جولدز شيكولاتة 100 جم - موقوف",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توداى كيك جولدز شيكولاتة 100 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6092,
"name": "قتيلو جبنه كريمى وزن",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنه كريمى وزن",
"Product_EN": null,
"Product_Id": "00005461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6093,
"name": "ايزى كير عرض 2ق 80 فريش",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير عرض 2ق 80 فريش",
"Product_EN": "Easy Care 2 Pieces Offer 80 Fresh ",
"Product_Id": "00005462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6094,
"name": "ايزى كير مناديل 2 +1 عرض",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل 2 +1 عرض",
"Product_EN": "Easy Care Wipes 2 + 1 Offer",
"Product_Id": "00005463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6095,
"name": "ايزى كير سويت 120 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايزى كير سويت 120 جم",
"Product_EN": "Easy Care Sweet 120 gm",
"Product_Id": "00005464 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6096,
"name": "ايزى كير سويت 200 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايزى كير سويت 200 جم",
"Product_EN": "Easy Care Sweet 200 gm",
"Product_Id": "00005465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6097,
"name": "البطريق جبنه فيتا 250 جم - موقوف",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "البطريق جبنه فيتا 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6098,
"name": "كمفورت منعم زهرة البرتقال والصبار 1 لتر",
"price": 27.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم زهرة البرتقال والصبار 1 لتر",
"Product_EN": "Comfort Fabric Softener Orange Blossom & Aloe 1 L",
"Product_Id": "00005467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6099,
"name": "توينجز شاى افطار انجليزى - موقوف",
"price": 39.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينجز شاى افطار انجليزى - موقوف",
"Product_EN": null,
"Product_Id": "00005468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6100,
"name": "حدائق كاليفورنيا تونا يلوفين قطعه واحده 185 جم ",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونا يلوفين قطعه واحده 185 جم ",
"Product_EN": null,
"Product_Id": "00005469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6101,
"name": "حدائق كاليفورنيا تونه قطع فاتحة بارد 185 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونه قطع فاتحة بارد 185 جم",
"Product_EN": "California Gardens Light Chunk Tuna Cold 185 gm",
"Product_Id": "00005470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6102,
"name": "اكسبريس فطير- موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اكسبريس فطير- موقوف",
"Product_EN": null,
"Product_Id": "00005471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6103,
"name": "اكسبريس عيش سن - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اكسبريس عيش سن - موقوف",
"Product_EN": null,
"Product_Id": "00005472 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6104,
"name": "ساديا فراخ 1100 جم - موقوف",
"price": 46.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ساديا فراخ 1100 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6105,
"name": "ليبتون شاى اخضرعادى 25 فتلة - موقوف",
"price": 11.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضرعادى 25 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00005474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6106,
"name": "هاربيك منظف حمام 190 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك منظف حمام 190 مل",
"Product_EN": null,
"Product_Id": "00005476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6107,
"name": "هاربيك منظف حمام اصلى 450 مل - موقوف ",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك منظف حمام اصلى 450 مل - موقوف ",
"Product_EN": null,
"Product_Id": "00005477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6108,
"name": "كوكس كاستر فانليا 300جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس كاستر فانليا 300جم",
"Product_EN": null,
"Product_Id": "00005478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6109,
"name": "دانو حليب بودره 250 جم - موقوف",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دانو حليب بودره 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6110,
"name": "جهينة حليب ميكس شيكولاتة 500 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة حليب ميكس شيكولاتة 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6111,
"name": "الدلتا نشا 250 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا نشا 250 جم",
"Product_EN": "Al Delta Corn Flour 250 gm ",
"Product_Id": "00005481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6112,
"name": "شاهبندر سحلب 250 جم",
"price": 8.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاهبندر سحلب 250 جم",
"Product_EN": null,
"Product_Id": "00005482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6113,
"name": "فلو مياه الكالين 1.25 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلو مياه الكالين 1.25 لتر",
"Product_EN": null,
"Product_Id": "00005483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6114,
"name": "حلاوه شعر 300 جم علبه",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلاوه شعر 300 جم علبه",
"Product_EN": null,
"Product_Id": "00005484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6115,
"name": "فيتراك مربى فراوله 900 جم _ موقوف",
"price": 21.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 900 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00005485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6116,
"name": "فيتراك مربى كريمى مشمش 420 جم",
"price": 10.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى كريمى مشمش 420 جم",
"Product_EN": null,
"Product_Id": "00005486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6117,
"name": "العلا ملح ليمون",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا ملح ليمون",
"Product_EN": null,
"Product_Id": "00005488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6118,
"name": "العلا كربونات صوديوم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا كربونات صوديوم",
"Product_EN": null,
"Product_Id": "00005489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6119,
"name": "افانتى جبنه جوده وزن",
"price": 134.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى جبنه جوده وزن",
"Product_EN": null,
"Product_Id": "00005490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6120,
"name": "كلوريل كلور ابيض 2 كجم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل كلور ابيض 2 كجم",
"Product_EN": null,
"Product_Id": "00005491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6121,
"name": "فيبا سائل تنظيف اطباق 2 كجم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق 2 كجم",
"Product_EN": null,
"Product_Id": "00005492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6122,
"name": "كلوريل 4 كجم عادى",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل 4 كجم عادى",
"Product_EN": null,
"Product_Id": "00005493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6123,
"name": "ديفاتول مطهر 250 مل 2*1 - موقوف",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديفاتول مطهر 250 مل 2*1 - موقوف",
"Product_EN": null,
"Product_Id": "00005494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6124,
"name": "فيبا صابون 4 لتر +كلوريل 1050 - موقوف",
"price": 34.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا صابون 4 لتر +كلوريل 1050 - موقوف",
"Product_EN": null,
"Product_Id": "00005495 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6125,
"name": "ديتول صابون جددى نشاطك 175 جم",
"price": 10.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون جددى نشاطك 175 جم",
"Product_EN": null,
"Product_Id": "00005496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6126,
"name": "فانيش مزيل بقع ساشيت 30 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانيش مزيل بقع ساشيت 30 جم",
"Product_EN": null,
"Product_Id": "00005497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6127,
"name": "ديتول صابون كول 125 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون كول 125 جم",
"Product_EN": null,
"Product_Id": "00005499 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6128,
"name": "ديتول مناديل مبلله اصلى 10 منديل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مناديل مبلله اصلى 10 منديل",
"Product_EN": null,
"Product_Id": "00005500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6129,
"name": "بيفى لانشون دجاج 200 جم - موقوف",
"price": 12.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيفى لانشون دجاج 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6130,
"name": "بيفى سوسيس لحم 200 جم - موقوف",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيفى سوسيس لحم 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6131,
"name": "بيفى فول لاند ساده 400 جم - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيفى فول لاند ساده 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005503 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6132,
"name": "هاربيك منظف حمام اصلى 450 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك منظف حمام اصلى 450 مل",
"Product_EN": null,
"Product_Id": "00005504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6133,
"name": "هاربيك باور بلاس منظف حمامات 450 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك باور بلاس منظف حمامات 450 مل",
"Product_EN": null,
"Product_Id": "00005505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6134,
"name": "فانيش اقراص عاديه 13 قرص",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانيش اقراص عاديه 13 قرص",
"Product_EN": null,
"Product_Id": "00005507 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6135,
"name": "الضحى سكر ابيض 500 جم",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى سكر ابيض 500 جم",
"Product_EN": "Al Doha White Sugar 1 Kg",
"Product_Id": "00005508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6136,
"name": "فاين فودز مرقة خضار 12 مكعب",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فاين فودز مرقة خضار 12 مكعب",
"Product_EN": " KnorrFine Foods Vegetable Stock 12 Cubes",
"Product_Id": "00005509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6137,
"name": "زاهر ارز باللبن بالكنافة كبير - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ارز باللبن بالكنافة كبير - موقوف",
"Product_EN": null,
"Product_Id": "00005510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6138,
"name": "زاهر ارز باللبن بالكنافة وسط - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ارز باللبن بالكنافة وسط - موقوف",
"Product_EN": null,
"Product_Id": "00005511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6139,
"name": "داونى منعم ملابس نسيم الوادى 2 لتر - موقوف",
"price": 64.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم ملابس نسيم الوادى 2 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005512 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6140,
"name": "دونى كمبوت خوخ 850 جم",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دونى كمبوت خوخ 850 جم",
"Product_EN": null,
"Product_Id": "00005513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6141,
"name": "احمد تي لندن بليند شاى ناعم 250 جم",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تي لندن بليند شاى ناعم 250 جم",
"Product_EN": "Ahmad Tea London Blend Loose 250 gm",
"Product_Id": "00005514 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6142,
"name": "شويبس رمان بلاستيك 800 مل",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس رمان بلاستيك 800 مل",
"Product_EN": "Schweppes Pomegranate Plastic 800 ml",
"Product_Id": "00005515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6143,
"name": "تودو كيك شيكولاتة",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تودو كيك شيكولاتة",
"Product_EN": null,
"Product_Id": "00005516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6144,
"name": "غطاء علبه ارز باللبن كبير",
"price": 1.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "غطاء علبه ارز باللبن كبير",
"Product_EN": null,
"Product_Id": "00005518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6145,
"name": "حلوانى حلاوة سادة وزن - موقوف",
"price": 31.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى حلاوة سادة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6146,
"name": "دانجو زبادى فراولة 105جم 5ق+1 - موقوف",
"price": 14.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو زبادى فراولة 105جم 5ق+1 - موقوف",
"Product_EN": null,
"Product_Id": "00005521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6147,
"name": "زاهر زيتون اخضر شرائح مخلل طبيعى وزن",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اخضر شرائح مخلل طبيعى وزن",
"Product_EN": "Zaher Natural Pickled Sliced Green Olive -Scalable",
"Product_Id": "00005522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6148,
"name": "زاهر زيتون اسود شرائح وزن - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اسود شرائح وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6149,
"name": "زاهر تشيز كيك نوتيلا - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تشيز كيك نوتيلا - موقوف",
"Product_EN": null,
"Product_Id": "00005524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6150,
"name": "سويت ان سابلية شيكولاتة سادة - موقوف",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت ان سابلية شيكولاتة سادة - موقوف",
"Product_EN": null,
"Product_Id": "00005525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6151,
"name": "سويت ان سابلية شيكولاته بيضاء - موقوف",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت ان سابلية شيكولاته بيضاء - موقوف",
"Product_EN": null,
"Product_Id": "00005526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6152,
"name": "سويت ان بيتى فور مشكل - موقوف",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت ان بيتى فور مشكل - موقوف",
"Product_EN": null,
"Product_Id": "00005527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6153,
"name": "سويت ان بيتى فور شيكولاتة - موقوف",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت ان بيتى فور شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00005528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6154,
"name": "سويت ان بيتى فور فانليا - موقوف",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت ان بيتى فور فانليا - موقوف",
"Product_EN": null,
"Product_Id": "00005529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6155,
"name": "سويت ان لانك شير - موقوف",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت ان لانك شير - موقوف",
"Product_EN": null,
"Product_Id": "00005530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6156,
"name": "سويت ان شوكو بول - موقوف",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت ان شوكو بول - موقوف",
"Product_EN": null,
"Product_Id": "00005531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6157,
"name": "سويت ان بسكويت نشادر - موقوف",
"price": 25.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت ان بسكويت نشادر - موقوف",
"Product_EN": null,
"Product_Id": "00005532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6158,
"name": "حلوانى بانيه دجاج حار 1 كجم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى بانيه دجاج حار 1 كجم",
"Product_EN": "Halwani Spicy Chicken Pane 1 kg",
"Product_Id": "00005533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6159,
"name": "سفن اب سلايز 355 مل - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب سلايز 355 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6160,
"name": "فطير بلدى كبير - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فطير بلدى كبير - موقوف",
"Product_EN": null,
"Product_Id": "00005535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6161,
"name": "نيدو حليب مجفف 100 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نيدو حليب مجفف 100 جم",
"Product_EN": null,
"Product_Id": "00005536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6162,
"name": "الشروق بلح باللوز 250 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق بلح باللوز 250 جم",
"Product_EN": "Al Shorouk Dates Almonds 250 gm",
"Product_Id": "00005537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6163,
"name": "الشروق بلح باللوز 400 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق بلح باللوز 400 جم",
"Product_EN": "Al Shorouk Dates Almonds 400 gm",
"Product_Id": "00005538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6164,
"name": "فلفل مكسيكى ممتاز وزن",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فلفل مكسيكى ممتاز وزن",
"Product_EN": null,
"Product_Id": "00005539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6165,
"name": "بصل بكلز وزن",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بصل بكلز وزن",
"Product_EN": null,
"Product_Id": "00005540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6166,
"name": "نور رول قمامه - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "نور رول قمامه - موقوف",
"Product_EN": null,
"Product_Id": "00005541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6167,
"name": "بونى قشطه 170 جم",
"price": 21.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونى قشطه 170 جم",
"Product_EN": "Bonny Cream 170 gm",
"Product_Id": "00005542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6168,
"name": "بونى حليب مكثف كامل الدسم 395 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونى حليب مكثف كامل الدسم 395 جم",
"Product_EN": "Bonny Sweetened Condensed Milk 395 gm ",
"Product_Id": "00005543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6169,
"name": "كوكى نقانق الدجاج 10 ق - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى نقانق الدجاج 10 ق - موقوف",
"Product_EN": null,
"Product_Id": "00005544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6170,
"name": "امريكانا كفته بقرى 900 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا كفته بقرى 900 جم",
"Product_EN": "Americana Beef Kofta 900 gm",
"Product_Id": "00005545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6171,
"name": "برطمان بلاستيك 1 كجم",
"price": 1.35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "برطمان بلاستيك 1 كجم",
"Product_EN": null,
"Product_Id": "00005546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6172,
"name": "زاهر حلويات مهلبيه ساده وسط",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات مهلبيه ساده وسط",
"Product_EN": "Zaher Muhallabia - Medium Size",
"Product_Id": "00005547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6173,
"name": "اولكر ديلوكس ويفر شيكولاتة",
"price": 20.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر ديلوكس ويفر شيكولاتة",
"Product_EN": null,
"Product_Id": "00005548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6174,
"name": "اولكر هيلى بسكويت مارشيمللو 110 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر هيلى بسكويت مارشيمللو 110 جم",
"Product_EN": null,
"Product_Id": "00005549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6175,
"name": "لاكتيل دويتو مشروب زبادى بالفراولة 330 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو مشروب زبادى بالفراولة 330 مل",
"Product_EN": "Lactel Duetto Strawberry Yogurt Drink 330 ml",
"Product_Id": "00005550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6176,
"name": "لاكتيل رايب بى اكتيف 220 مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل رايب بى اكتيف 220 مل",
"Product_EN": "Lactel Rayeb B Active 220 ml",
"Product_Id": "00005551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6177,
"name": "بنجورنو كوفى ميكس خمسينة 2*1",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بنجورنو كوفى ميكس خمسينة 2*1",
"Product_EN": "Bonjorno Coffee Mix Khamsina 1 * 2",
"Product_Id": "00005552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6178,
"name": "ريتش بيك كيك بقطع التوت والفراولة 225 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك كيك بقطع التوت والفراولة 225 جم",
"Product_EN": null,
"Product_Id": "00005553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6179,
"name": "ريتش بيك مافنزكيك بقطع التوت والفراولة 225 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك مافنزكيك بقطع التوت والفراولة 225 جم",
"Product_EN": null,
"Product_Id": "00005554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6180,
"name": "شويبس يوسفى بلاستيك 800 مل",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس يوسفى بلاستيك 800 مل",
"Product_EN": "Schweppes Tangerine Plastic 800 ml",
"Product_Id": "00005555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6181,
"name": "بوك جبنه فيتا 500 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بوك جبنه فيتا 500 جم",
"Product_EN": "Puck Feta Cheese 500 gm",
"Product_Id": "00005556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6182,
"name": "بوك جبنه فيتا 250 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بوك جبنه فيتا 250 جم",
"Product_EN": "Puck Feta Cheese 250 gm",
"Product_Id": "00005557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6183,
"name": "سيجنال معجون اسنان مكافح التسوس 50 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان مكافح التسوس 50 مل",
"Product_EN": "Signal Cavity Fighter Toothpaste 50 ml ",
"Product_Id": "00005558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6184,
"name": "ليمون معصفر ممتاز وزن",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ليمون معصفر ممتاز وزن",
"Product_EN": null,
"Product_Id": "00005559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6185,
"name": "زيتون اخضر محشى جزر ممتاز وزن",
"price": 50.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زيتون اخضر محشى جزر ممتاز وزن",
"Product_EN": null,
"Product_Id": "00005560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6186,
"name": "اريال مسحوق يدوى 40 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 40 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6187,
"name": "اريال مسحوق البركة 120 جم - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق البركة 120 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6188,
"name": "فيرى صابون 450 جم - موقوف",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى صابون 450 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6189,
"name": "تايد مسحوق يدوى 140 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى 140 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6190,
"name": "تايد مسحوق يدوى 500 جم - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6191,
"name": "علاء الدين سكر 1 كجم - موقوف",
"price": 9.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "علاء الدين سكر 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6192,
"name": "شنط وسط ( سوداء) - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شنط وسط ( سوداء) - موقوف",
"Product_EN": null,
"Product_Id": "00005567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6193,
"name": "بوريو بسكويت 6 ق 48 جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بوريو بسكويت 6 ق 48 جم",
"Product_EN": "BORIO Biscuits 6 Pieces 48 gm",
"Product_Id": "00005569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6194,
"name": "عدس اصفر وزن",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عدس اصفر وزن",
"Product_EN": "Lentils yellow - Scalable ",
"Product_Id": "00005570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6195,
"name": "قشطه سحلب 250 جم - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قشطه سحلب 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6196,
"name": "رويال شاى اخضر بالنعناع 20 فتلة - موقوف",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى اخضر بالنعناع 20 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00005572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6197,
"name": "رول قمامه اتش باك 90*70",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رول قمامه اتش باك 90*70",
"Product_EN": null,
"Product_Id": "00005573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6198,
"name": "لاكتيل دويتو ميلك شيك شوكولاتة 220 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو ميلك شيك شوكولاتة 220 مل",
"Product_EN": "Lactel Duetto Milk Shake Chocolate 220 ml",
"Product_Id": "00005575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6199,
"name": "لاكتيل ميلك شيك كابتشينو 220 مل",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل ميلك شيك كابتشينو 220 مل",
"Product_EN": "Lactel Milk Shake Cappuccino 220 ml",
"Product_Id": "00005576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6200,
"name": "كنور خلطة بشاميل 70 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطة بشاميل 70 جم",
"Product_EN": "Knorr Bechamel Mix 70 gm ",
"Product_Id": "00005577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6201,
"name": "عبد المعبود بن ساده وسط 200 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن ساده وسط 200 جم",
"Product_EN": "Abd El Maabud Mid Plain Coffee 200 gm",
"Product_Id": "00005578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6202,
"name": "عبد المعبود بن محوج دوبل فاتح 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج دوبل فاتح 100 جم",
"Product_EN": "Abd El Maabud Coffee Light Double 100 gm",
"Product_Id": "00005579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6203,
"name": "عبد المعبود بن محوج دوبل وسط 100 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج دوبل وسط 100 جم",
"Product_EN": "Abd El Maabud Coffee Medium Double 100 gm",
"Product_Id": "00005580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6204,
"name": "عبد المعبود بن محوج دوبل غامق 100 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج دوبل غامق 100 جم",
"Product_EN": "Abd El Maabud Coffee Medium 100 gm",
"Product_Id": "00005581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6205,
"name": "عبد المعبود بن محوج دوبل فاتح 200 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج دوبل فاتح 200 جم",
"Product_EN": "Abd El Maabud Coffee Light Double 200 gm",
"Product_Id": "00005582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6206,
"name": "عبد المعبود بن محوج دوبل وسط 200 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج دوبل وسط 200 جم",
"Product_EN": "Abd El Maabud Coffee Medium Double 200 gm",
"Product_Id": "00005583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6207,
"name": "عبد المعبود بن محوج دوبل غامق 200 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج دوبل غامق 200 جم",
"Product_EN": "Abd El Maabud Coffee Medium 200 gm",
"Product_Id": "00005584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6208,
"name": "عبد المعبود بن محوج سوبر فاتح 100 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج سوبر فاتح 100 جم",
"Product_EN": "Abd El Maaboud coffee mahoj super light 100 gm",
"Product_Id": "00005585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6209,
"name": "عبد المعبود بن محوج سوبر وسط 100 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج سوبر وسط 100 جم",
"Product_EN": "Abd El Maaboud Coffee Mahoj super medium 100 gm",
"Product_Id": "00005586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6210,
"name": "عبد المعبود بن محوج سوبر غامق 100 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج سوبر غامق 100 جم",
"Product_EN": "Abd El Maaboud Coffee Mahoj Super Dark 100 gm",
"Product_Id": "00005587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6211,
"name": "عبد المعبود بن محوج سوبر فاتح 200 جم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج سوبر فاتح 200 جم",
"Product_EN": "Abd El Maaboud Coffee Mahoj Super light 200 gm",
"Product_Id": "00005588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6212,
"name": "عبد المعبود بن محوج سوبر وسط 200 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج سوبر وسط 200 جم",
"Product_EN": "Abd El Maaboud Coffee Mahoj super medium 200 gm",
"Product_Id": "00005589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6213,
"name": "عبد المعبود بن محوج سوبر غامق 200 جم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن محوج سوبر غامق 200 جم",
"Product_EN": "Abd El Maaboud Coffee Mahoj Super Dark 200 gm",
"Product_Id": "00005590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6214,
"name": "هاينز صلصه طماطم ظرف 50 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصه طماطم ظرف 50 جم",
"Product_EN": "Heinz Tomato Sauce Sachet 50 gm ",
"Product_Id": "00005591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6215,
"name": "شيبسى كباب 5 ج 82 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى كباب 5 ج 82 جم",
"Product_EN": null,
"Product_Id": "00005592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6216,
"name": "الشروق تمر بالمكسرات 50 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر بالمكسرات 50 جم",
"Product_EN": "Al Shorouk Dates Nuts 50 gm",
"Product_Id": "00005593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6217,
"name": "الشروق تمر باللوز 400 جم",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر باللوز 400 جم",
"Product_EN": "Al Shorouk Dates Almonds 400 gm",
"Product_Id": "00005594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6218,
"name": "زيتون اسود شرائح \/ حلقات ممتاز وزن",
"price": 48.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زيتون اسود شرائح \/ حلقات ممتاز وزن",
"Product_EN": null,
"Product_Id": "00005595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6219,
"name": "مصر اسبانيا زيتون كالاماتا جامبو وزن - موقوف",
"price": 68.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مصر اسبانيا زيتون كالاماتا جامبو وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6220,
"name": "رومبى ويفر محشو كريمه الفراوله 40 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رومبى ويفر محشو كريمه الفراوله 40 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6221,
"name": "رومبى ويفر محشو بكريمة الشيكولاتة 40 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رومبى ويفر محشو بكريمة الشيكولاتة 40 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6222,
"name": "لاكتيل زبادى طبيعى 9+3 خصم 20%",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى طبيعى 9+3 خصم 20%",
"Product_EN": "Lactel Natural Yogurt ( 9 + 3 ) 20% Discount",
"Product_Id": "00005600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6223,
"name": "اولكر بسكويت بالتمر اكسترا",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت بالتمر اكسترا",
"Product_EN": null,
"Product_Id": "00005601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6224,
"name": "بيتى عصير عنب احمر 235 مل - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير عنب احمر 235 مل - موقوف",
"Product_EN": "Beyti Red Grapes Juice 235 ml",
"Product_Id": "00005602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6225,
"name": "المراعى كفته 900 جم+ بطاطس عرض - موقوف",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى كفته 900 جم+ بطاطس عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005603 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6226,
"name": "لامدي موزاريلا 350 جم - موقوف",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدي موزاريلا 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6227,
"name": "لامدى موزاريلا 1 كيلو - موقوف",
"price": 42.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامدى موزاريلا 1 كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00005605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6228,
"name": "طيبات الوادى عجوة 400 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:47",
"updated_at": "2021-11-01 19:45:47",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى عجوة 400 جم",
"Product_EN": null,
"Product_Id": "00005606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6229,
"name": "ريتش صدور رومى مدخن وزن",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش صدور رومى مدخن وزن",
"Product_EN": "Rich Smoked Turkey Breasts - Scalable ",
"Product_Id": "00005607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6230,
"name": "ريتش صدور فراخ مدخن وزن",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش صدور فراخ مدخن وزن",
"Product_EN": "Rich Smoked Chicken Breasts - Scalable ",
"Product_Id": "00005608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6231,
"name": "اللحيمى لانشون لحم بقرى جاهز وزن - موقوف",
"price": 129.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى لانشون لحم بقرى جاهز وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6232,
"name": "ريتش لانشون ساده\/ زيتون\/ بهار\/ دجاج وزن",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش لانشون ساده\/ زيتون\/ بهار\/ دجاج وزن",
"Product_EN": "Rich luncheon&Plain &Olive &Spice&Chicken",
"Product_Id": "00005611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6233,
"name": "اللحيمى لانشون دجاج وزن - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى لانشون دجاج وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005612 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6234,
"name": "اللحيمى لانشون زيتون وزن - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى لانشون زيتون وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6235,
"name": "اللحيمى لانشون بهار وزن - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى لانشون بهار وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6236,
"name": "ريتش برجر بقرى مجمد 300 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش برجر بقرى مجمد 300 جم",
"Product_EN": "Rich Frozen Beef Burger 300 gm",
"Product_Id": "00005615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6237,
"name": "ريتش كفته بقرى مجمد 300 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش كفته بقرى مجمد 300 جم",
"Product_EN": "Rich Frozen Beef kofta 300 gm",
"Product_Id": "00005616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6238,
"name": "ريتش فرانك بقرى مجمد 300 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش فرانك بقرى مجمد 300 جم",
"Product_EN": "Rich Frank Frozen Beef 300 gm",
"Product_Id": "00005617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6239,
"name": "اللحيمى برجر بقرى مجمد 1 كجم",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى برجر بقرى مجمد 1 كجم",
"Product_EN": "Elleheimy Frozen Beef Burger 1 kg",
"Product_Id": "00005618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6240,
"name": "اللحيمى كفته متبله بقرى مجمد 850 جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى كفته متبله بقرى مجمد 850 جم",
"Product_EN": "Elleheimy Frozen Spiced Kofta 850 gm ",
"Product_Id": "00005619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6241,
"name": "اللحيمى فرانك بقرى مجمد 1 كجم",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى فرانك بقرى مجمد 1 كجم",
"Product_EN": "Elleheimy Frozen Frank Beef 1 kg",
"Product_Id": "00005620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6242,
"name": "اللحيمى هوت دوج بقرى مجمد 850 جم",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى هوت دوج بقرى مجمد 850 جم",
"Product_EN": "Elleheimy Frozen Beef Hot Dog 850 gm",
"Product_Id": "00005621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6243,
"name": "دونى بسكويت بالتمر جامبو",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دونى بسكويت بالتمر جامبو",
"Product_EN": "Donnie Biscuits Date Jumbo ",
"Product_Id": "00005622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6244,
"name": "ليبتون شاى اثقل 100 فتلة + سكر الضحى - موقوف",
"price": 45.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اثقل 100 فتلة + سكر الضحى - موقوف",
"Product_EN": null,
"Product_Id": "00005623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6245,
"name": "لافاش اورجينال جبنة مثلثات 32 ق",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش اورجينال جبنة مثلثات 32 ق",
"Product_EN": "LaVash Original Cheese Triangles 32 Pieces",
"Product_Id": "00005625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6246,
"name": "لافاش كيرى لبنه 500 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش كيرى لبنه 500 جم",
"Product_EN": "LaVache Kiri Labenah 500 gm",
"Product_Id": "00005626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6247,
"name": "تكه بيضه شيكولاتة 15 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تكه بيضه شيكولاتة 15 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6248,
"name": "الشمعدان ويفر كاكاو 4 ق - موقوف",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان ويفر كاكاو 4 ق - موقوف",
"Product_EN": null,
"Product_Id": "00005628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6249,
"name": "بوني حليب مبخر كامل الدسم 395 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بوني حليب مبخر كامل الدسم 395 جم",
"Product_EN": "Bonny Sweetened Condensed Milk 395 gm ",
"Product_Id": "00005629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6250,
"name": "زورونا ليفه مواعين - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "زورونا ليفه مواعين - موقوف",
"Product_EN": null,
"Product_Id": "00005630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6251,
"name": "نستله زبادى طبيعى 105 جم 9 +3 ق",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى طبيعى 105 جم 9 +3 ق",
"Product_EN": "Nestle Natural Yogurt 105 gm 9 + 3 ",
"Product_Id": "00005631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6252,
"name": "البوادى حلاوه طحينيه فسدق 315 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه طحينيه فسدق 315 جم",
"Product_EN": null,
"Product_Id": "00005632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6253,
"name": "البوادى حلاوه طحينيه بندق 315 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه طحينيه بندق 315 جم",
"Product_EN": null,
"Product_Id": "00005633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6254,
"name": "البوادى حلاوه طحينيه باللوز 315 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه طحينيه باللوز 315 جم",
"Product_EN": null,
"Product_Id": "00005634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6255,
"name": "البوادى حلاوه طحينيه بالسودانى 315 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه طحينيه بالسودانى 315 جم",
"Product_EN": null,
"Product_Id": "00005635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6256,
"name": "البوادى حلاوه طحينيه شيكولاته 315 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه طحينيه شيكولاته 315 جم",
"Product_EN": null,
"Product_Id": "00005636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6257,
"name": "لواكر تورتينا ويفر شيكولاته بيضاء 21 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر تورتينا ويفر شيكولاته بيضاء 21 جم",
"Product_EN": "Loacker Tortina Wafer White Chocolate 21 gm",
"Product_Id": "00005637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6258,
"name": "مارشيميلو بطيخ 1 ق - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مارشيميلو بطيخ 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00005638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6259,
"name": "فيرن سمنه طبيعى 1.8 كجم",
"price": 278,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيرن سمنه طبيعى 1.8 كجم",
"Product_EN": "Fern Pure Butter Ghee 1.8 Kg",
"Product_Id": "00005639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6260,
"name": "نسكافيه كلاسيك قهوة سريعه التحضير باوتش 18 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه كلاسيك قهوة سريعه التحضير باوتش 18 جم",
"Product_EN": null,
"Product_Id": "00005640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6261,
"name": "فيتراك مربى تين 245 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 245 جم",
"Product_EN": null,
"Product_Id": "00005641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6262,
"name": "فيتراك مربى فراوله 245 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 245 جم",
"Product_EN": null,
"Product_Id": "00005642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6263,
"name": "ارز بلدى سايب شيكارة ق - موقوف",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ارز بلدى سايب شيكارة ق - موقوف",
"Product_EN": null,
"Product_Id": "00005643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6264,
"name": "بريل منظف اطباق ليمون كيس 400 جم",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق ليمون كيس 400 جم",
"Product_EN": null,
"Product_Id": "00005644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6265,
"name": "بريل منظف اطباق 1.25 لتر - موقوف",
"price": 18.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق 1.25 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6266,
"name": "برسيل يدوى 650 جم - موقوف",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل يدوى 650 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6267,
"name": "برسيل مسحوق يدوى 220 جم - موقوف",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى 220 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6268,
"name": "علبه ارز باللبن كبير",
"price": 1.4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علبه ارز باللبن كبير",
"Product_EN": null,
"Product_Id": "00005648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6269,
"name": "غطاء علبه زبادى صغير",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "غطاء علبه زبادى صغير",
"Product_EN": null,
"Product_Id": "00005649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6270,
"name": "غطاء علبه زبادى كبير",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "غطاء علبه زبادى كبير",
"Product_EN": null,
"Product_Id": "00005650 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6271,
"name": "غطاء علبه زبادى 400 جم",
"price": 0.3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "غطاء علبه زبادى 400 جم",
"Product_EN": null,
"Product_Id": "00005651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6272,
"name": "حلوانى فرنك دجاج 200 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى فرنك دجاج 200 جم",
"Product_EN": "Halwani Chicken Frankfurter 200 gm",
"Product_Id": "00005652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6273,
"name": "لافاش اورجينال جبنة مثلثات 48 ق _ موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش اورجينال جبنة مثلثات 48 ق _ موقوف",
"Product_EN": "",
"Product_Id": "00005653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6274,
"name": "رول استريتش 30 سم كورى - موقوف",
"price": 260.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "رول استريتش 30 سم كورى - موقوف",
"Product_EN": null,
"Product_Id": "00005654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6275,
"name": "فودينا لانشون زيتون وزن - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فودينا لانشون زيتون وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6276,
"name": "عطاره . فول تدميس بلدى وزن",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فول تدميس بلدى وزن",
"Product_EN": "Foul Beans Baladi - Scalable ",
"Product_Id": "00005657 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6277,
"name": "الزهار جلاش الى 350 جم - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الزهار جلاش الى 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6278,
"name": "كل يوم عصير مانجو 200 مل - موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كل يوم عصير مانجو 200 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005659 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6279,
"name": "ليبتون اعشاب ينسون 20 فتله",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون اعشاب ينسون 20 فتله",
"Product_EN": "Lipton Herbal Anise 20 Bags",
"Product_Id": "00005660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6280,
"name": "ليبتون اعشاب بابونج 20 فتله _ موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون اعشاب بابونج 20 فتله _ موقوف",
"Product_EN": null,
"Product_Id": "00005661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6281,
"name": "ليبتون اعشاب كركديه 20 فتله",
"price": 11.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون اعشاب كركديه 20 فتله",
"Product_EN": "Lipton Herbal Hibiscus 20 Bags",
"Product_Id": "00005662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6282,
"name": "ليبتون اعشاب ليمون وجنزبيل 20 فتله",
"price": 15.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون اعشاب ليمون وجنزبيل 20 فتله",
"Product_EN": null,
"Product_Id": "00005663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6283,
"name": "ليبتون اعشاب نعناع 20 فتله",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون اعشاب نعناع 20 فتله",
"Product_EN": "Lipton Herbal Lemon & Ginger 20 Bags",
"Product_Id": "00005664 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6284,
"name": "الشروق تمر الوادى بالعسل والسمسم 450 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر الوادى بالعسل والسمسم 450 جم",
"Product_EN": "Al-Shorouk Dates Al Wadi Honey & Sesame 450 gm",
"Product_Id": "00005665 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6285,
"name": "الشروق تمر سعودى سكرى 1 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر سعودى سكرى 1 كجم",
"Product_EN": "Al Shorouk Dates Saudi Sugar 1 kg",
"Product_Id": "00005666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6286,
"name": "الشروق تمر سعودى سكرى 500 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر سعودى سكرى 500 جم",
"Product_EN": "Al Shorouk Dates Saudi Sugar 500 gm",
"Product_Id": "00005667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6287,
"name": "الطاهيه سردين فى زيت دوار الشمس 125 جم",
"price": 12.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهيه سردين فى زيت دوار الشمس 125 جم",
"Product_EN": "Al Tahya Sardines In Sunflower Oil 125 gm",
"Product_Id": "00005668 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6288,
"name": "التحية سردين بزيت دوار الشمس بالفلفل الحار 125 جم",
"price": 12.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "التحية سردين بزيت دوار الشمس بالفلفل الحار 125 جم",
"Product_EN": "Al Tahya Sardines Sunflower Oil Hot Pepper 125 gm",
"Product_Id": "00005669 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6289,
"name": "افرو زيت 800 مل - موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "افرو زيت 800 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6290,
"name": "جوانتى طبى - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "جوانتى طبى - موقوف",
"Product_EN": null,
"Product_Id": "00005671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6291,
"name": "كلوريل كلور الوان ليمون 1 لتر",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل كلور الوان ليمون 1 لتر",
"Product_EN": null,
"Product_Id": "00005672 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6292,
"name": "كلوريل كلور الوان زهور 1 لتر",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل كلور الوان زهور 1 لتر",
"Product_EN": null,
"Product_Id": "00005673 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6293,
"name": "فيبا سائل تنظيف اطباق بالليمون 2 لتر",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق بالليمون 2 لتر",
"Product_EN": null,
"Product_Id": "00005674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6294,
"name": "اتش بى رول قمامه 70*90 - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "اتش بى رول قمامه 70*90 - موقوف",
"Product_EN": null,
"Product_Id": "00005675 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6295,
"name": "ماريو تونه قطع بارد 140 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماريو تونه قطع بارد 140 جم",
"Product_EN": "Mario Tuna Cold Pieces 140 gm",
"Product_Id": "00005676 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6296,
"name": "فيريرو روشيه شوكولاته 3 قطع",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيريرو روشيه شوكولاته 3 قطع",
"Product_EN": "Ferrero Rocher Chocolate 3 Pieces",
"Product_Id": "00005677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6297,
"name": "كيندر شوكولاته كانترى 23 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيندر شوكولاته كانترى 23 جم",
"Product_EN": "Kinder Chocolate Country 23 gm",
"Product_Id": "00005678 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6298,
"name": "دوريتوس ميكس توابل 40 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس ميكس توابل 40 جم",
"Product_EN": null,
"Product_Id": "00005680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6299,
"name": "زاهر حليب بالمانجو صغير 300 مل - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب بالمانجو صغير 300 مل - موقوف",
"Product_EN": "Zaher Milk w Mango 300 ml",
"Product_Id": "00005682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6300,
"name": "زاهر حليب بالتمر صغير 250 مل - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب بالتمر صغير 250 مل - موقوف",
"Product_EN": "Zaher Milk w Dates 300 ml",
"Product_Id": "00005683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6301,
"name": "نستله نسكافيه شيكولاتة 3*1 ظرف 18 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه شيكولاتة 3*1 ظرف 18 جم",
"Product_EN": null,
"Product_Id": "00005685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6302,
"name": "نستله نسكافيه بندق 3*1 ظرف 18 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه بندق 3*1 ظرف 18 جم",
"Product_EN": null,
"Product_Id": "00005686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6303,
"name": "اريال مسحوق يدوى400 جم - موقوف",
"price": 10.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6304,
"name": "اريال مسحوق ياسمين 2.5 كيلو + جيل 1 لتر - موقوف",
"price": 118.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق ياسمين 2.5 كيلو + جيل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005688 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6305,
"name": "الوريز الترا فردى 8 قطع - موقوف",
"price": 12.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الوريز الترا فردى 8 قطع - موقوف",
"Product_EN": null,
"Product_Id": "00005689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6306,
"name": "الويز سوبر الترا 16*10 فوطه",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز سوبر الترا 16*10 فوطه",
"Product_EN": null,
"Product_Id": "00005690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6307,
"name": "الويز ليلى 16 فوطه",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ليلى 16 فوطه",
"Product_EN": null,
"Product_Id": "00005691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6308,
"name": "تايد مسحوق اتوماتيك ليمون 2.5 كجم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق اتوماتيك ليمون 2.5 كجم",
"Product_EN": null,
"Product_Id": "00005692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6309,
"name": "كيندر شوكولاته بوينو 43 جم ",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيندر شوكولاته بوينو 43 جم ",
"Product_EN": "Kinder Chocolate Bueno 43 gm ",
"Product_Id": "00005693 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6310,
"name": "كيندر شوكولاته حليب كاكاو ميكس 21 جم",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيندر شوكولاته حليب كاكاو ميكس 21 جم",
"Product_EN": "Kinder Chocolate Milk Cocoa Mix 21 gm",
"Product_Id": "00005694 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6311,
"name": "علاء الدين دقيق 1 ك - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "علاء الدين دقيق 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00005695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6312,
"name": "الساعة ارز مصرى 1 كجم ",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الساعة ارز مصرى 1 كجم ",
"Product_EN": "Al SA'A Egyptian Rice 1 Kg",
"Product_Id": "00005696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6313,
"name": "الساعة ارز مصرى 5 كجم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الساعة ارز مصرى 5 كجم",
"Product_EN": "Al SA'A Eguptian Rice 5 Kg",
"Product_Id": "00005697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6314,
"name": "ياهوو عصير جوافة 250 مل - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ياهوو عصير جوافة 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005698 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6315,
"name": "زاهر بسكويت ايس كريم ( شيكولاته ) - موقوف",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسكويت ايس كريم ( شيكولاته ) - موقوف",
"Product_EN": null,
"Product_Id": "00005699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6316,
"name": "زاهر بسكويت ايس كريم ( فانليا - ورده )",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسكويت ايس كريم ( فانليا - ورده )",
"Product_EN": null,
"Product_Id": "00005700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6317,
"name": "دانو حليب بودره 20جم - موقوف",
"price": 2.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دانو حليب بودره 20جم - موقوف",
"Product_EN": null,
"Product_Id": "00005702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6318,
"name": "فاين فودز مرقة لحمه 8 مكعب - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فاين فودز مرقة لحمه 8 مكعب - موقوف",
"Product_EN": null,
"Product_Id": "00005703 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6319,
"name": "كمفورت منعم ملابس ندى الربيع 2 لتر",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس ندى الربيع 2 لتر",
"Product_EN": "Comfort Fabric Softener Spring 2 L ",
"Product_Id": "00005704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6320,
"name": "سلايت زيت عباد الشمس 750 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سلايت زيت عباد الشمس 750 مل",
"Product_EN": "Slite Sunflower Oil 750 ml",
"Product_Id": "00005705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6321,
"name": "جهينة طماطم بورية 250 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينة طماطم بورية 250 جم",
"Product_EN": "Juhayna Tomato Puree 250 gm",
"Product_Id": "00005706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6322,
"name": "كوكى دجاجه كامله مجمده 1100 جم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى دجاجه كامله مجمده 1100 جم",
"Product_EN": "Koki frozen whole chicken 1100 gm",
"Product_Id": "00005707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6323,
"name": "اريال مسحوق داونى 2.5 ك + جيل 1 لتر - موقوف",
"price": 117.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق داونى 2.5 ك + جيل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005708 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6324,
"name": "تايد يدوى ياسمين 50 جم ",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد يدوى ياسمين 50 جم ",
"Product_EN": null,
"Product_Id": "00005709 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6325,
"name": "تايد يدوى ياسمين 100 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد يدوى ياسمين 100 جم",
"Product_EN": null,
"Product_Id": "00005710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6326,
"name": "الدلتا دقيق ابيض 1 ك",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا دقيق ابيض 1 ك",
"Product_EN": "Al Delta White Flour 1 kg",
"Product_Id": "00005711 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6327,
"name": "نوتيلا كريمه شوكولاته بالبندق 200 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوتيلا كريمه شوكولاته بالبندق 200 جم",
"Product_EN": "Nutella Chocolate Spread With Hazelnut 200 gm",
"Product_Id": "00005712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6328,
"name": "نوتيلا كريمه شوكولاته بالبندق 750 جم",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوتيلا كريمه شوكولاته بالبندق 750 جم",
"Product_EN": "Nutella Chocolate Spread With Hazelnut 750 gm",
"Product_Id": "00005713 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6329,
"name": "كيندر شوكولاته بينو 122 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيندر شوكولاته بينو 122 جم",
"Product_EN": "Kinder Chocolate Bueno 122 gm",
"Product_Id": "00005714 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6330,
"name": "جولدن ارو اكياس محكمه الغلق 50 ق",
"price": 39.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "جولدن ارو اكياس محكمه الغلق 50 ق",
"Product_EN": null,
"Product_Id": "00005715 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6331,
"name": "بسطرمة بلدى بالثوم وزن - موقوف",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسطرمة بلدى بالثوم وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6332,
"name": "بسطرمه بلدى مقشر وزن - موقوف",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسطرمه بلدى مقشر وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005717 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6333,
"name": "بسطرمة فاكيوم وزن",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسطرمة فاكيوم وزن",
"Product_EN": null,
"Product_Id": "00005718 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6334,
"name": "احمد تى شاى فواكة بطعم خوخ 20 فتلة فويل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى فواكة بطعم خوخ 20 فتلة فويل",
"Product_EN": "Ahmad Tea Peach & Passion Fruit 20 Bags",
"Product_Id": "00005719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6335,
"name": "احمد تى شاى فواكة بنكهة القرفة 20 فتله فويل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى فواكة بنكهة القرفة 20 فتله فويل",
"Product_EN": "Ahmad Tea Fruits Cinnamon Flavored 20 Bags",
"Product_Id": "00005720 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6336,
"name": "ياهوو عصير مانجو جولد 350 مل - موقوف",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ياهوو عصير مانجو جولد 350 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005721 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6337,
"name": "ياهوو عصير جوافة جولد 350 مل",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ياهوو عصير جوافة جولد 350 مل",
"Product_EN": null,
"Product_Id": "00005722 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6338,
"name": "زاهر بلح سكرى 500 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر بلح سكرى 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6339,
"name": "كلوركس مزيل بقع بودر 30 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس مزيل بقع بودر 30 جم",
"Product_EN": null,
"Product_Id": "00005724 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6340,
"name": "دانون زبادى طبيعى 170 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى 170 جم",
"Product_EN": "Danone Natural Yogurt 170 gm",
"Product_Id": "00005725 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6341,
"name": "دانون زبادى لايت 170 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى لايت 170 جم",
"Product_EN": "Danone Yogurt Light 170 gm ",
"Product_Id": "00005726 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6342,
"name": "دانون زبادى طبيعى 380 جم",
"price": 8.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى 380 جم",
"Product_EN": "Danone Natural Yogurt 380 gm",
"Product_Id": "00005727 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6343,
"name": "اورال بى فرشاه وايت 1+1 - موقوف",
"price": 26.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى فرشاه وايت 1+1 - موقوف",
"Product_EN": null,
"Product_Id": "00005728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6344,
"name": "ايزيس صلصه طماطم 380 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس صلصه طماطم 380 جم",
"Product_EN": "ISIS tomato sauce 380 gm",
"Product_Id": "00005729 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6345,
"name": "ايزيس اعشاب نعناع كاموميل 25 فلتر ",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب نعناع كاموميل 25 فلتر ",
"Product_EN": "ISIS Chamomile Mint 25 Bags",
"Product_Id": "00005730 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6346,
"name": "ايزيس اعشاب كاموميل 20 فلتر ",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب كاموميل 20 فلتر ",
"Product_EN": "ISIS Chamomile Herbs 20 Bags",
"Product_Id": "00005731 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6347,
"name": "ايزيس شاى اخضر ساده 20 فلتر ",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس شاى اخضر ساده 20 فلتر ",
"Product_EN": "ISIS Green Tea Plain 20 Bags",
"Product_Id": "00005732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6348,
"name": "جليد معطر جو هدوء البحر 300 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد معطر جو هدوء البحر 300 مل",
"Product_EN": null,
"Product_Id": "00005734 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6349,
"name": "جليد معطر جو نسيم الصباح 300 مل",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جليد معطر جو نسيم الصباح 300 مل",
"Product_EN": null,
"Product_Id": "00005735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6350,
"name": "مستر ماسل منظف مطبخ 440 مل",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسل منظف مطبخ 440 مل",
"Product_EN": null,
"Product_Id": "00005736 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6351,
"name": "مستر ماسل بطه تواليت 5*1 500 مل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسل بطه تواليت 5*1 500 مل",
"Product_EN": null,
"Product_Id": "00005737 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6352,
"name": "فيتراك مربى مشمش 900 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 900 جم",
"Product_EN": null,
"Product_Id": "00005738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6353,
"name": "فيتراك مربى فراوله 880 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 880 جم",
"Product_EN": null,
"Product_Id": "00005739 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6354,
"name": "فيتراك مربى فراوله 450 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 450 جم",
"Product_EN": null,
"Product_Id": "00005740 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6355,
"name": "هيرو مربى كريز احمر340 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى كريز احمر340 جم",
"Product_EN": null,
"Product_Id": "00005741 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6356,
"name": "هاريبو مارشميلو 70 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو مارشميلو 70 جم",
"Product_EN": "Haribo Marshmallow 70 gm",
"Product_Id": "00005742 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6357,
"name": "روشيه شوكولاته بندق 16 ق 200 جم",
"price": 93,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روشيه شوكولاته بندق 16 ق 200 جم",
"Product_EN": "Rocher Chocolate Hazelnut 16 Pieces 200 gm",
"Product_Id": "00005744 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6358,
"name": "المراعى رومى مدخن وزن - موقوف",
"price": 128,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى رومى مدخن وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005745 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6359,
"name": "كوكى كبد وقوانص 500 جم - موقوف",
"price": 17.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى كبد وقوانص 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005746 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6360,
"name": "لايف بوى صابون 175 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى صابون 175 جم",
"Product_EN": "Lifebuoy Soap 175 gm",
"Product_Id": "00005747 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6361,
"name": "ديمه بسكويت نيو بكريمه الفانليا 90جم",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت نيو بكريمه الفانليا 90جم",
"Product_EN": null,
"Product_Id": "00005748 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6362,
"name": "المثالى كمبوت شرائح اناناس 825 جم - موقوف",
"price": 28.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المثالى كمبوت شرائح اناناس 825 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005749 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6363,
"name": "ريتش سلامى جاف وزن",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش سلامى جاف وزن",
"Product_EN": "Rich Salami Dry - Scalable ",
"Product_Id": "00005750 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6364,
"name": "اللحيمى سلامى جاف وزن - موقوف",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى سلامى جاف وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005751 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6365,
"name": "معلقه ايس كريم صغيره الوان",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "معلقه ايس كريم صغيره الوان",
"Product_EN": null,
"Product_Id": "00005752 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6366,
"name": "زاهر اكياس اسبتة مقاس (70cm*90cm)",
"price": 32.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر اكياس اسبتة مقاس (70cm*90cm)",
"Product_EN": null,
"Product_Id": "00005753 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6367,
"name": "بليدج سائل رخام وسيراميك منعش 750 مل",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بليدج سائل رخام وسيراميك منعش 750 مل",
"Product_EN": null,
"Product_Id": "00005754 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6368,
"name": "زاهر كنافة فراولة - كب - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة فراولة - كب - موقوف",
"Product_EN": null,
"Product_Id": "00005755 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6369,
"name": "حلاوة مكسرات وزن - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلاوة مكسرات وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005756 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6370,
"name": "حلوه زيت للقلى 2.25 لتر",
"price": 63,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوه زيت للقلى 2.25 لتر",
"Product_EN": "Helwa Oil For Frying 2.25 L",
"Product_Id": "00005757 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6371,
"name": "بيبسى كانز 3ق +1ق 350مل عرض - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى كانز 3ق +1ق 350مل عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005758 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6372,
"name": "لمبادا دبل اكسترا بالفراولة - موقوف",
"price": 1.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا دبل اكسترا بالفراولة - موقوف",
"Product_EN": null,
"Product_Id": "00005760 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6373,
"name": "لمبادا دبل اكسترا شيكولاتة - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا دبل اكسترا شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00005761 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6374,
"name": "لمبادا بسكويت هرم ويفر شيكولاتة - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا بسكويت هرم ويفر شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00005762 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6375,
"name": "لمبادا دبل اكستر ا ويفر مغطى شيكولاتة - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا دبل اكستر ا ويفر مغطى شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00005763 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6376,
"name": "لمبادا بسكويت شوجر جوز هند - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا بسكويت شوجر جوز هند - موقوف",
"Product_EN": null,
"Product_Id": "00005764 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6377,
"name": "لمبادا شوجر بسكويت زبدة - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمبادا شوجر بسكويت زبدة - موقوف",
"Product_EN": null,
"Product_Id": "00005765 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6378,
"name": "دريم مسحوق سحلب 100جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق سحلب 100جم",
"Product_EN": "Dreem Sahlab Powder 100 gm",
"Product_Id": "00005766 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6379,
"name": "اولكر بسكويت ديلوكس 10ق فراوله",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت ديلوكس 10ق فراوله",
"Product_EN": null,
"Product_Id": "00005767 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6380,
"name": "اولكر بسكويت ديلوكس 10ق بار جوزهند",
"price": 16.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت ديلوكس 10ق بار جوزهند",
"Product_EN": null,
"Product_Id": "00005768 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6381,
"name": "اولكر بسكويت بالتمر 4 ق - موقوف",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت بالتمر 4 ق - موقوف",
"Product_EN": null,
"Product_Id": "00005769 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6382,
"name": "نيدو حليب بالموز 180 جم - موقوف",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نيدو حليب بالموز 180 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005771 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6383,
"name": "نيدو لبن بالفراولة 180 جم - موقوف",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نيدو لبن بالفراولة 180 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005772 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6384,
"name": "مارس ايس كريم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مارس ايس كريم",
"Product_EN": "Mars Ice Cream",
"Product_Id": "00005773 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6385,
"name": "سنيكرز بار ايس كريم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سنيكرز بار ايس كريم",
"Product_EN": "Snickers Ice Cream Bar",
"Product_Id": "00005774 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6386,
"name": "مارس كونو سادة",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مارس كونو سادة",
"Product_EN": null,
"Product_Id": "00005775 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6387,
"name": "مارس كونو ام اند ام",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مارس كونو ام اند ام",
"Product_EN": "Mars Corn M&M ",
"Product_Id": "00005776 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6388,
"name": "كونو ايس كريم بندق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كونو ايس كريم بندق",
"Product_EN": "Kono Hazelnut Ice Cream",
"Product_Id": "00005777 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6389,
"name": "الشروق تمر بالمكسرات 400 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر بالمكسرات 400 جم",
"Product_EN": "Al Shorouk Dates Nuts 400 gm",
"Product_Id": "00005778 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6390,
"name": "الشروق تمر الوادى 850 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر الوادى 850 جم",
"Product_EN": "Al Shorouk Dry Dates 850 gm",
"Product_Id": "00005779 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6391,
"name": "ابل لانشون جملى وزن",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابل لانشون جملى وزن",
"Product_EN": null,
"Product_Id": "00005781 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6392,
"name": "بريل صابون سائل 2.5 لتر عرض - موقوف",
"price": 31.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل صابون سائل 2.5 لتر عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005782 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6393,
"name": "فاين مناديل سمارت 6 بكرة مضغوط",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:48",
"updated_at": "2021-11-01 19:45:48",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين مناديل سمارت 6 بكرة مضغوط",
"Product_EN": null,
"Product_Id": "00005783 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6394,
"name": "امانة شنط صيدلية 20*35 مطبوع 2 لون وزن",
"price": 34.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "امانة شنط صيدلية 20*35 مطبوع 2 لون وزن",
"Product_EN": null,
"Product_Id": "00005785 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6395,
"name": "امانة شنط وسط 26*45 مطبوع 2 لون وزن",
"price": 35.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "امانة شنط وسط 26*45 مطبوع 2 لون وزن",
"Product_EN": null,
"Product_Id": "00005787 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6396,
"name": "شنط كبيرة 35*60 مطبوع 2 لون وزن",
"price": 34.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شنط كبيرة 35*60 مطبوع 2 لون وزن",
"Product_EN": null,
"Product_Id": "00005788 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6397,
"name": "امانة اكياس لبن 20*35 مطبوع 2 لون وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "امانة اكياس لبن 20*35 مطبوع 2 لون وزن",
"Product_EN": null,
"Product_Id": "00005789 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6398,
"name": "بسكو مصر داتو كينج بسكويت بالتمر 4 ق",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو مصر داتو كينج بسكويت بالتمر 4 ق",
"Product_EN": null,
"Product_Id": "00005790 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6399,
"name": "البوادى طحينة ظرف 34 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى طحينة ظرف 34 جم",
"Product_EN": null,
"Product_Id": "00005791 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6400,
"name": "المراعى زبادى لايت 170 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى لايت 170 جم",
"Product_EN": "Almarai Yogurt Light 170 gm",
"Product_Id": "00005792 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6401,
"name": "كورونا مشروب كاكاو230 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا مشروب كاكاو230 جم",
"Product_EN": null,
"Product_Id": "00005793 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6402,
"name": "كورونا ويفر شوكولاتة 4 ق",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا ويفر شوكولاتة 4 ق",
"Product_EN": null,
"Product_Id": "00005794 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6403,
"name": "كورونا شيكولاتة ساندو نعناع 37 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة ساندو نعناع 37 جم",
"Product_EN": null,
"Product_Id": "00005795 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6404,
"name": "كورونا بسكويت مغطى شيكولاتة",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا بسكويت مغطى شيكولاتة",
"Product_EN": null,
"Product_Id": "00005796 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6405,
"name": "كورونا فالدر نعناع 17جم 1ق",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا فالدر نعناع 17جم 1ق",
"Product_EN": null,
"Product_Id": "00005797 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6406,
"name": "فاين فودز مرقة لحم بقرى 8 مكعب - موقوف",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فاين فودز مرقة لحم بقرى 8 مكعب - موقوف",
"Product_EN": null,
"Product_Id": "00005798 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6407,
"name": "كنور فاين فودز مرقة دجاج 8 مكعب",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فاين فودز مرقة دجاج 8 مكعب",
"Product_EN": "Knorr Fine Foods Chicken Stock 8 Cubes",
"Product_Id": "00005799 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6408,
"name": "ليبتون شاى اسود مع نعناع 25 فتلة - موقوف",
"price": 13.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اسود مع نعناع 25 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00005800 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6409,
"name": "كمفورت منعم ملابس ندى الربيع 3 لتر",
"price": 75.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس ندى الربيع 3 لتر",
"Product_EN": "Comfort Fabric Softener Spring 3 L ",
"Product_Id": "00005801 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6410,
"name": "كمفورت منعم ملابس برائحة زهور 3 لتر",
"price": 75.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس برائحة زهور 3 لتر",
"Product_EN": "Comfort Floral Fabric Softener 3 L",
"Product_Id": "00005802 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6411,
"name": "كلوز اب معجون اسنان اخضر 100 مل",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوز اب معجون اسنان اخضر 100 مل",
"Product_EN": "Close Up Toothpaste Green 100 ml",
"Product_Id": "00005803 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6412,
"name": "كلوز اب معجون اسنان احمر 100 مل",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوز اب معجون اسنان احمر 100 مل",
"Product_EN": "Close Up Toothpaste Red 100 ml",
"Product_Id": "00005804 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6413,
"name": "كامى صابون وجه 80 جم - موقوف",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامى صابون وجه 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005805 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6414,
"name": "كادبورى اوريو مغطى شيكولاتة 2ق 34 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى اوريو مغطى شيكولاتة 2ق 34 جم",
"Product_EN": "Cadbury OREO Coated Chocolate 2 Pieces 34 gm",
"Product_Id": "00005806 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6415,
"name": "هولز ليمون اخضر 9 ق",
"price": 94,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولز ليمون اخضر 9 ق",
"Product_EN": "Halls lemon green 9 Pieces",
"Product_Id": "00005807 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6416,
"name": "هولز نعناع كبير 9 ق ",
"price": 4.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولز نعناع كبير 9 ق ",
"Product_EN": "Halls MInt Large 9 Pieces ",
"Product_Id": "00005808 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6417,
"name": "هولز كريز كبير 9 ق ",
"price": 4.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولز كريز كبير 9 ق ",
"Product_EN": "Halls Craze Large 9 Pieces ",
"Product_Id": "00005809 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6418,
"name": "بكر ميزان حرارى م58*40 ابيض 500 تيكت - موقوف",
"price": 12.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بكر ميزان حرارى م58*40 ابيض 500 تيكت - موقوف",
"Product_EN": null,
"Product_Id": "00005811 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6419,
"name": "روز تونه قطعه واحده دايت 200 جم",
"price": 23.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روز تونه قطعه واحده دايت 200 جم",
"Product_EN": null,
"Product_Id": "00005812 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6420,
"name": "كوكى لانشون بقرى سادة وزن - موقوف",
"price": 61.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى لانشون بقرى سادة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005813 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6421,
"name": "عافيه زيت عباد الشمس 900 مل",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت عباد الشمس 900 مل",
"Product_EN": "Afia Sunflower Oil 900 ml ",
"Product_Id": "00005814 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6422,
"name": "سلايت زيت عباد الشمس 2.25 لتر",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سلايت زيت عباد الشمس 2.25 لتر",
"Product_EN": "Slite Sunflower Oil 2.25 L",
"Product_Id": "00005815 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6423,
"name": "هنادى زيت للقلى 750 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنادى زيت للقلى 750 مل",
"Product_EN": "Hanady Oil For Frying 750 ml ",
"Product_Id": "00005816 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6424,
"name": "بريزيدون جبنه شيدر برجر شرائح 48 ق",
"price": 133,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه شيدر برجر شرائح 48 ق",
"Product_EN": "President Cheddar Cheese Burger Slices 48 Pieces",
"Product_Id": "00005817 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6425,
"name": "بريزيدون جبنه مثلثات 80 ق + 8 ق مجانا",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه مثلثات 80 ق + 8 ق مجانا",
"Product_EN": "President Triangle Cheese 80 Pieces + 8 Pieces",
"Product_Id": "00005818 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6426,
"name": "بريزيدون جبنه سبريد شيدر كوب 240 جم - موقوف",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد شيدر كوب 240 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005819 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6427,
"name": "بريزيدون جبنه سبريد بلو تشيز كوب 240 جم - موقوف",
"price": 54.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد بلو تشيز كوب 240 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005820 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6428,
"name": "بريزيدون جبنه دوبل كريم تابس 500 جم",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه دوبل كريم تابس 500 جم",
"Product_EN": "President Double Cream Cheese Taps 500 gm",
"Product_Id": "00005821 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6429,
"name": "اريال جيل 3 لتر + جل 1 لتر - موقوف",
"price": 104.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال جيل 3 لتر + جل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005823 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6430,
"name": "عبورلاند جبنه فيتا شطه 250 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبورلاند جبنه فيتا شطه 250 جم",
"Product_EN": "Obour Land Chili Feta Cheese 250 gm",
"Product_Id": "00005824 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6431,
"name": "مزارع دينا حليب كامل الدسم 400 مل",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا حليب كامل الدسم 400 مل",
"Product_EN": "Dina Farms Full Cream Milk 400 ml",
"Product_Id": "00005825 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6432,
"name": "زاهر - ورق طباعة 80 مل",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر - ورق طباعة 80 مل",
"Product_EN": null,
"Product_Id": "00005826 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6433,
"name": "زيتون اخضر شرائح \/ حلقات ممتاز وزن",
"price": 48.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زيتون اخضر شرائح \/ حلقات ممتاز وزن",
"Product_EN": null,
"Product_Id": "00005827 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6434,
"name": "بونو ملح طعام 450 جم",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونو ملح طعام 450 جم",
"Product_EN": null,
"Product_Id": "00005828 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6435,
"name": "فيتراك شربات لوز 850 م",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات لوز 850 م",
"Product_EN": null,
"Product_Id": "00005829 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6436,
"name": "فيتراك شربات ورد 850 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات ورد 850 مل",
"Product_EN": null,
"Product_Id": "00005830 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6437,
"name": "فيتراك مربى فراوله وتوت 450 جم - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله وتوت 450 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005831 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6438,
"name": "فيتراك مربى تين 450 جم - موقوف",
"price": 12.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 450 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005832 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6439,
"name": "جهينة زبادى9+3 ق عرض",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى9+3 ق عرض",
"Product_EN": null,
"Product_Id": "00005833 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6440,
"name": "جهينة زبادى مكس3 ق+1 ق عرض",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى مكس3 ق+1 ق عرض",
"Product_EN": null,
"Product_Id": "00005834 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6441,
"name": "دريم مسحوق مولتن كيك 400 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق مولتن كيك 400 جم",
"Product_EN": "Dreem Molten Cake Powder 400 gm",
"Product_Id": "00005835 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6442,
"name": "ايزيس شاى اخضر نعناع 12 فلتر",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس شاى اخضر نعناع 12 فلتر",
"Product_EN": "ISIS Green Tea Plain 12 Bags",
"Product_Id": "00005836 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6443,
"name": "دايجستيف بسكويت عرض",
"price": 38.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستيف بسكويت عرض",
"Product_EN": null,
"Product_Id": "00005837 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6444,
"name": "دايجستيف بسكويت كراميل 300 جم",
"price": 32.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستيف بسكويت كراميل 300 جم",
"Product_EN": null,
"Product_Id": "00005838 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6445,
"name": "كيندر شوكولاته دوبلو 26 جم ",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيندر شوكولاته دوبلو 26 جم ",
"Product_EN": "Kinder Chocolate Duplo 26 gm ",
"Product_Id": "00005839 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6446,
"name": "كنور خلطه فجيتار إكسترا كريسبي 55 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطه فجيتار إكسترا كريسبي 55 جم",
"Product_EN": "Knorr Extra Crispy Vegetar Mix 55 gm",
"Product_Id": "00011617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6447,
"name": "عطاره . مولانا عسل جلوكوز 700 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مولانا عسل جلوكوز 700 جم",
"Product_EN": "Maulana Honey Glucose 700 gm",
"Product_Id": "00011618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6448,
"name": "احمد تى شاى أخضر فواكة توت ورمان 20 فتلة",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى أخضر فواكة توت ورمان 20 فتلة",
"Product_EN": "Ahmed Tea Green Fruit Berry & Pomegranate 20 Bags",
"Product_Id": "00011619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6449,
"name": "ريد ليبل شاى اسود ناعم 40 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريد ليبل شاى اسود ناعم 40 جم",
"Product_EN": "Brooke Bond Red Label Dust Tea 40 gm",
"Product_Id": "00011620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6450,
"name": "زاهر بيتزا 6 ق 320 جم - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتزا 6 ق 320 جم - موقوف",
"Product_EN": "Zaher Mini Pizze 6 pieces 320 g ",
"Product_Id": "00011621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6451,
"name": "الراية عسل اسود 750 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الراية عسل اسود 750 جم",
"Product_EN": null,
"Product_Id": "00011622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6452,
"name": "بيور ارز مصرى 1 كجم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور ارز مصرى 1 كجم",
"Product_EN": "Pure Egyptian Rice 1 Kg ",
"Product_Id": "00011623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6453,
"name": "مصراوى ارز مصرى 1 كجم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصراوى ارز مصرى 1 كجم",
"Product_EN": "Masrawy Egyptian Rice 1 Kg",
"Product_Id": "00011624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6454,
"name": "البطريق جبنة فيتا سادة + 1ق فلفل عرض",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "البطريق جبنة فيتا سادة + 1ق فلفل عرض",
"Product_EN": null,
"Product_Id": "00011625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6455,
"name": "اكوا فينا مياه معدنية 650 مل",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكوا فينا مياه معدنية 650 مل",
"Product_EN": null,
"Product_Id": "00011626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6456,
"name": "لفيدا مياه معدنية 600 مل",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لفيدا مياه معدنية 600 مل",
"Product_EN": null,
"Product_Id": "00011627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6457,
"name": "داش مشروب شعير 275 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "داش مشروب شعير 275 مل",
"Product_EN": null,
"Product_Id": "00011628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6458,
"name": "الطباخ ارز وزن - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطباخ ارز وزن - موقوف",
"Product_EN": "Al Tabaakh Rice - Scalable ",
"Product_Id": "00011629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6459,
"name": "باندورة بيورية صلصة طبيعى زجاج300 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باندورة بيورية صلصة طبيعى زجاج300 جم",
"Product_EN": null,
"Product_Id": "00011630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6460,
"name": "باندورة بيورية صلصة طبيعى صفيح 380جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باندورة بيورية صلصة طبيعى صفيح 380جم",
"Product_EN": null,
"Product_Id": "00011631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6461,
"name": "هوم بيورية صلصة طماطم مركز 380جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هوم بيورية صلصة طماطم مركز 380جم",
"Product_EN": null,
"Product_Id": "00011632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6462,
"name": "بلاستا كاتشب ميكسيكى",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلاستا كاتشب ميكسيكى",
"Product_EN": null,
"Product_Id": "00011633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6463,
"name": "بلاستا مسطردة بالعسل",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلاستا مسطردة بالعسل",
"Product_EN": null,
"Product_Id": "00011634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6464,
"name": "بلاستا سويت شيلى",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بلاستا سويت شيلى",
"Product_EN": null,
"Product_Id": "00011635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6465,
"name": "ابشر عصير جوافة 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابشر عصير جوافة 300 مل",
"Product_EN": null,
"Product_Id": "00011636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6466,
"name": "هيرو مربى برتقال 350 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى برتقال 350 جم",
"Product_EN": null,
"Product_Id": "00011637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6467,
"name": "هيرو مربى البرتقال المر 350 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى البرتقال المر 350 جم",
"Product_EN": "Hero Bitter Orange Marmalade Jam 350 gm ",
"Product_Id": "00011638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6468,
"name": "رودس جبنه قشطه 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه قشطه 500 جم",
"Product_EN": "Rhodes Creamy Cheese 500 gm",
"Product_Id": "00011639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6469,
"name": "رودس جبنه قشطه 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه قشطه 250 جم",
"Product_EN": "Rhodes Creamy Cheese 250 gm",
"Product_Id": "00011640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6470,
"name": "جوز حمام جامبو فريش 1 ق",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوز حمام جامبو فريش 1 ق",
"Product_EN": null,
"Product_Id": "00011641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6471,
"name": "صانسيلك شامبو للشعر التالف 350 مل ",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو للشعر التالف 350 مل ",
"Product_EN": "Sunsilk Shampoo For Damaged Hair 350 ml",
"Product_Id": "00011642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6472,
"name": "دوبيلا سكر ابيض 120 ظرف علبة",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوبيلا سكر ابيض 120 ظرف علبة",
"Product_EN": null,
"Product_Id": "00011643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6473,
"name": "دوبيلا سكر بنى 120 ظرف علبة",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوبيلا سكر بنى 120 ظرف علبة",
"Product_EN": null,
"Product_Id": "00011644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6474,
"name": "ديتول مناديل معطره اصلى 40 منديل 1+1 ق",
"price": 89,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مناديل معطره اصلى 40 منديل 1+1 ق",
"Product_EN": null,
"Product_Id": "00011645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6475,
"name": "ديتول جيل معقم لليدين 50 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول جيل معقم لليدين 50 مل",
"Product_EN": null,
"Product_Id": "00011646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6476,
"name": "ديتول جيل معقم لليدين 50 مل - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول جيل معقم لليدين 50 مل - موقوف",
"Product_EN": null,
"Product_Id": "00011647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6477,
"name": "ماندولين شوكولاته 50 جم 4+1 ق",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماندولين شوكولاته 50 جم 4+1 ق",
"Product_EN": "Mandolin Chocolate 50 gm 4+1 Pieces",
"Product_Id": "00011648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6478,
"name": "جهينه زبادى طبيعى 180 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى طبيعى 180 جم",
"Product_EN": "Juhayna Natural Yogurt 180 gm",
"Product_Id": "00011649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6479,
"name": "لوتس بسكويت 250 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت 250 جم",
"Product_EN": "LOTUS Biscuits 250 gm",
"Product_Id": "00011650 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6480,
"name": "لوتس توبينج 1 كجم",
"price": 250,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس توبينج 1 كجم",
"Product_EN": "LOTUS Topping 1 kg",
"Product_Id": "00011652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6481,
"name": "لوتس بسكويت 300 جم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت 300 جم",
"Product_EN": "LOTUS Biscuits 300 gm",
"Product_Id": "00011653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6482,
"name": "لوتس بسكويت 150 جم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت 150 جم",
"Product_EN": "LOTUS Biscuits 150 gm",
"Product_Id": "00011654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6483,
"name": "ميلكا كيك 175جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا كيك 175جم",
"Product_EN": "Milka Cake 175 gm",
"Product_Id": "00011655 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6484,
"name": "جلاكسي بسكوت كوكيز",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسي بسكوت كوكيز",
"Product_EN": "Galaxy Biscuit Cookies",
"Product_Id": "00011656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6485,
"name": "ميلكا شيكولاته ستيشن 156 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شيكولاته ستيشن 156 جم",
"Product_EN": "Milka Chocolate Station 156 gm",
"Product_Id": "00011657 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6486,
"name": "ميلكا كيك جاف 147 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا كيك جاف 147 جم",
"Product_EN": "Milka Dry Cake 147 gm",
"Product_Id": "00011658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6487,
"name": "ميلكا كوكيز 135 جم 24 ق",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا كوكيز 135 جم 24 ق",
"Product_EN": "Milka Cookies 135 gm 24 Pieces",
"Product_Id": "00011659 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6488,
"name": "ميلكا بسكويت شوكو ويفر كاكاو 30 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بسكويت شوكو ويفر كاكاو 30 جم",
"Product_EN": "Milka Choco Biscuits Wafer Cocoa 30 gm",
"Product_Id": "00011660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6489,
"name": "ميلكا بسكويت شوكو كاو 40 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بسكويت شوكو كاو 40 جم",
"Product_EN": "Milka Choco Cow Biscuits 40 gm",
"Product_Id": "00011661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6490,
"name": "عبور لاند جبنه اسبريد بلوتشيز 140 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه اسبريد بلوتشيز 140 جم",
"Product_EN": null,
"Product_Id": "00011662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6491,
"name": "عبور لاند جينه اسبريد رومى 140 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جينه اسبريد رومى 140 جم",
"Product_EN": null,
"Product_Id": "00011663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6492,
"name": "عبور لاند جبنه اسبريد شيدر 140 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه اسبريد شيدر 140 جم",
"Product_EN": null,
"Product_Id": "00011664 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6493,
"name": "كلمنتينا وزن",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كلمنتينا وزن",
"Product_EN": null,
"Product_Id": "00011666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6494,
"name": "مندرين وزن",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مندرين وزن",
"Product_EN": null,
"Product_Id": "00011667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6495,
"name": "قشطه فاكهة بلدى وزن - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قشطه فاكهة بلدى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00011668 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6496,
"name": "ميلكا بسكويت بقطع الشوكولاته والزبيب",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بسكويت بقطع الشوكولاته والزبيب",
"Product_EN": "Milka Biscuits with Chocolate Chunks & Raisins",
"Product_Id": "00011669 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6497,
"name": "ميلكا بسكويت بالشوكولاتة بالتوت",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بسكويت بالشوكولاتة بالتوت",
"Product_EN": "Milka Chocolate Biscuits with Raspberry",
"Product_Id": "00011670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6498,
"name": "ميلكا بسكويت بقطع الشوكولاتة والبندق",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بسكويت بقطع الشوكولاتة والبندق",
"Product_EN": "Milka Chocolate & Hazelnut Biscuits",
"Product_Id": "00011671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6499,
"name": "ام اند ام كيكه البسكويت بالشوكولاته",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ام اند ام كيكه البسكويت بالشوكولاته",
"Product_EN": "M&M Chocolate Biscuits Cake",
"Product_Id": "00011672 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6500,
"name": "كورونا شيكولاته بالحليب اكسترا 27 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاته بالحليب اكسترا 27 جم",
"Product_EN": null,
"Product_Id": "00011673 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6501,
"name": "كورونا شيكولاتة اكسترا لبن 27 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة اكسترا لبن 27 جم",
"Product_EN": null,
"Product_Id": "00011674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6502,
"name": "كعكه البسكويت بالشوكولاته بجوز الهند",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كعكه البسكويت بالشوكولاته بجوز الهند",
"Product_EN": "Coconut Chocolate Biscuit Cake",
"Product_Id": "00011675 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6503,
"name": "كورونا بيمبو مينى شيكولاته دبل 1 ق",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا بيمبو مينى شيكولاته دبل 1 ق",
"Product_EN": null,
"Product_Id": "00011676 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6504,
"name": "تويكس كيكه البسكويت بحشوه الكراميل",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تويكس كيكه البسكويت بحشوه الكراميل",
"Product_EN": "Twix Biscuit Cake with Caramel ",
"Product_Id": "00011677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6505,
"name": "كورنو فلات كوب 4 اونز قهوة",
"price": 0.2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات كوب 4 اونز قهوة",
"Product_EN": null,
"Product_Id": "00011678 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6506,
"name": "كورنو فلات كوب 9 اونز باليد",
"price": 0.28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات كوب 9 اونز باليد",
"Product_EN": null,
"Product_Id": "00011679 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6507,
"name": "لمار مشروب اناناس 200 مل ",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب اناناس 200 مل ",
"Product_EN": "LAMAR Pineapple Drink - 200 ml",
"Product_Id": "00011680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6508,
"name": "لمار مشروب ليمون نعناع 200 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب ليمون نعناع 200 مل",
"Product_EN": "Lamar Lemon Mint Drink - 200 ml",
"Product_Id": "00011681 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6509,
"name": "لمار مشروب برتقال 200 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب برتقال 200 مل",
"Product_EN": "LAMAR Orange Drink - 200 ml",
"Product_Id": "00011682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6510,
"name": "لمار مشروب كوكتيل 200 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب كوكتيل 200 مل",
"Product_EN": "LAMAR Red Cocktail Drink - 200 ml",
"Product_Id": "00011683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6511,
"name": "لمار مشروب جوافة 200 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب جوافة 200 مل",
"Product_EN": "Lamar Guava Drink - 200 ml",
"Product_Id": "00011684 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6512,
"name": "لمار مشروب مانجو 200 مل _ موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب مانجو 200 مل _ موقوف",
"Product_EN": "Lamar Mango Drink - 200 ml",
"Product_Id": "00011685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6513,
"name": "لمار مشروب تفاح 200 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب تفاح 200 مل",
"Product_EN": "Lamar Apple Drink 200 ml",
"Product_Id": "00011686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6514,
"name": "ستيفيا سكر دايت 40 ظرف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستيفيا سكر دايت 40 ظرف",
"Product_EN": "Stevia Diet Sugar 40 Bags",
"Product_Id": "00011688 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6515,
"name": "عطاره . سينا لايف شاي ريجيم 50 ظرف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . سينا لايف شاي ريجيم 50 ظرف",
"Product_EN": "Attara Sina Life Diet Tea 50 Bags",
"Product_Id": "00011689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6516,
"name": "عطاره . السويسى فحم خشب سريع الاشتعال",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . السويسى فحم خشب سريع الاشتعال",
"Product_EN": "Attara - El Sewisy Fast Flammable Wood Charcoal",
"Product_Id": "00011690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6517,
"name": "فلفل حامى اخضر وزن",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فلفل حامى اخضر وزن",
"Product_EN": null,
"Product_Id": "00011691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6518,
"name": "فلفل حامى احمر وزن",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فلفل حامى احمر وزن",
"Product_EN": null,
"Product_Id": "00011692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6519,
"name": "دريم بودنج فانيليا 100 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم بودنج فانيليا 100 جم",
"Product_EN": "Dreem Pudding Vanilla 100 gm",
"Product_Id": "00011694 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6520,
"name": "ميلكا شوكولاتة بقطع اوريو 92 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بقطع اوريو 92 جم",
"Product_EN": "Milka Chocolate OREO Chunks 92 gm",
"Product_Id": "00011695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6521,
"name": "رودس جبنه رومى 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه رومى 250 جم",
"Product_EN": "Rhodes Roumi Cheese 500 gm",
"Product_Id": "00011696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6522,
"name": "رودس جبنه رومى 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه رومى 500 جم",
"Product_EN": "Rhodes Roumi Cheese 500 gm",
"Product_Id": "00011697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6523,
"name": "كلوس اب معجون اسنان بالليمون والملح البحرى 75 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوس اب معجون اسنان بالليمون والملح البحرى 75 جم",
"Product_EN": "Close Up Toothpaste Lemon Essence + Sea Salt 75 ml",
"Product_Id": "00011698 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6524,
"name": "فازلين اصلى رجالى 50 مل - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فازلين اصلى رجالى 50 مل - موقوف",
"Product_EN": null,
"Product_Id": "00011699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6525,
"name": "لوكس صابون بار كريمى 170 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون بار كريمى 170 جم",
"Product_EN": "Lux Creamy Bar Soap 170 gm",
"Product_Id": "00011700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6526,
"name": "كنور شوربه دجاج 2*1 60 جم",
"price": 9.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور شوربه دجاج 2*1 60 جم",
"Product_EN": "Knorr Chicken Soup 2 in 1 60 gm",
"Product_Id": "00011701 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6527,
"name": "ليبتون شاى اثقل توليفه مميزه 100 تله",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اثقل توليفه مميزه 100 تله",
"Product_EN": "Lipton Tea Tesla Sup Extra 100 Bags",
"Product_Id": "00011702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6528,
"name": "صن لايت مسحوق اوتوماتيك انتعاش زهور الربيع 2.5 كجم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "صن لايت مسحوق اوتوماتيك انتعاش زهور الربيع 2.5 كجم",
"Product_EN": "Sunlight Powder Detergent Spring Flowers 2.5 kg",
"Product_Id": "00011703 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6529,
"name": "اكس اسبراى مزيل عرق ايس تشيل 150 مل",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس اسبراى مزيل عرق ايس تشيل 150 مل",
"Product_EN": null,
"Product_Id": "00011704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6530,
"name": "ريكسونا مزيل عرق رجالى حمايه 50 مل",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق رجالى حمايه 50 مل",
"Product_EN": "Rexona men deodorant protect 50 ml",
"Product_Id": "00011705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6531,
"name": "جهينة كريمة طهى اورجينال 1 لتر",
"price": 89,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة كريمة طهى اورجينال 1 لتر",
"Product_EN": "Juhayna Cooking Cream Original 1 L",
"Product_Id": "00011706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6532,
"name": "كلير شامبو الاسطوره رجالى 600 مل",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلير شامبو الاسطوره رجالى 600 مل",
"Product_EN": "Clear Shampoo Legend For Men 600 ml",
"Product_Id": "00011707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6533,
"name": "دوف شامبو للشعر ضد التساقط 400 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو للشعر ضد التساقط 400 مل",
"Product_EN": "Dove Hair Shampoo Anti Hair Fall 400 ml",
"Product_Id": "00011708 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6534,
"name": "صانسيلك زيت 2*1 بالافوكادو 250 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك زيت 2*1 بالافوكادو 250 مل",
"Product_EN": "Sunsilk Oil 2 in 1 Avocado 250 ml ",
"Product_Id": "00011709 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6535,
"name": "تريسمي شامبو قوه البلاتين 500 مل + بلسم 500",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسمي شامبو قوه البلاتين 500 مل + بلسم 500",
"Product_EN": "Tresemme Platinum Shampoo 500 ml + Conditioner 500",
"Product_Id": "00011710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6536,
"name": "كلوس اب معجون اسنان باور وايت 75 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوس اب معجون اسنان باور وايت 75 مل",
"Product_EN": "Close Up Toothpaste Power White 75 ml",
"Product_Id": "00011711 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6537,
"name": "كلوس اب معجون اسنان بخلاصه جوز الهند 75 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوس اب معجون اسنان بخلاصه جوز الهند 75 مل",
"Product_EN": "Close Up Toothpaste Coconut Extract 75 ml",
"Product_Id": "00011712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6538,
"name": "رويال اعشاب ليمون وجنزبيل 12 فلتر + 3 فلتر",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب ليمون وجنزبيل 12 فلتر + 3 فلتر",
"Product_EN": "Royal Ginger & Lemon Herbs 12 Bags + 3 Bags",
"Product_Id": "00011713 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6539,
"name": "رويال قرفه 20 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال قرفه 20 فلتر",
"Product_EN": "Royal Cinnamon Herbs 20 Bags",
"Product_Id": "00011715 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6540,
"name": "زاهر سلطة قريش بالرمان وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطة قريش بالرمان وزن",
"Product_EN": null,
"Product_Id": "00011716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6541,
"name": "زاهر تمور القصيم سكرى 1 ك",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر تمور القصيم سكرى 1 ك",
"Product_EN": "Zaher Qassim Sukkari Dates1 Kg ",
"Product_Id": "00011717 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6542,
"name": "دانو حليب مجفف كامل الدسم 1.5 كجم",
"price": 135.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دانو حليب مجفف كامل الدسم 1.5 كجم",
"Product_EN": "Dano Full Cream Milk Powder 1.5 Kg",
"Product_Id": "00011718 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6543,
"name": "دريم وندر بسكويت سبريد 330جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم وندر بسكويت سبريد 330جم",
"Product_EN": "Dreem Wonder Biscuits Spread 330 gm",
"Product_Id": "00011719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6544,
"name": "دريم وندر حلاوه سبريد بالشيكولاته 330 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم وندر حلاوه سبريد بالشيكولاته 330 جم",
"Product_EN": "Dreem Wonder Halawa Spread Chocolate 330 gm",
"Product_Id": "00011720 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6545,
"name": "اناناس شجر وزن",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اناناس شجر وزن",
"Product_EN": null,
"Product_Id": "00011721 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6546,
"name": "جوز الهند منزوع الدسم وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوز الهند منزوع الدسم وزن",
"Product_EN": null,
"Product_Id": "00011722 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6547,
"name": "تاج السلطانة خبز لبنانى كبير 7 ق",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تاج السلطانة خبز لبنانى كبير 7 ق",
"Product_EN": null,
"Product_Id": "00011723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6548,
"name": "الويز تريو 12*30 فوطه",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز تريو 12*30 فوطه",
"Product_EN": null,
"Product_Id": "00011724 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6549,
"name": "الويز استخدام يومى 10*40 فوطه",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز استخدام يومى 10*40 فوطه",
"Product_EN": null,
"Product_Id": "00011725 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6550,
"name": "الويز الترا رفيع ملمس قطنى 16*14",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز الترا رفيع ملمس قطنى 16*14",
"Product_EN": null,
"Product_Id": "00011726 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6551,
"name": "الويز ماكس دوبل 16*18 فوطه - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ماكس دوبل 16*18 فوطه - موقوف",
"Product_EN": null,
"Product_Id": "00011727 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6552,
"name": "تايد مسحوق يدوى داونى 1.2 كجم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى داونى 1.2 كجم",
"Product_EN": null,
"Product_Id": "00011728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6553,
"name": "فيرى ليمون اخضر 1 لتر _ موقوف ",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى ليمون اخضر 1 لتر _ موقوف ",
"Product_EN": null,
"Product_Id": "00011729 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6554,
"name": "هيد اند شولدرز شامبو عنايه متكامله 600 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدرز شامبو عنايه متكامله 600 مل",
"Product_EN": null,
"Product_Id": "00011730 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6555,
"name": "هاي جين مناديل مبلله لافندر 80 منديل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاي جين مناديل مبلله لافندر 80 منديل",
"Product_EN": null,
"Product_Id": "00011731 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6556,
"name": "هاي جين مناديل مبلله شمس 20 منديل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاي جين مناديل مبلله شمس 20 منديل",
"Product_EN": null,
"Product_Id": "00011732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6557,
"name": "صن شاين اكسبريس تونه قطعه واحده 160 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين اكسبريس تونه قطعه واحده 160 جم",
"Product_EN": "Sunshine Express Solid Tuna Easy Open 160 gm",
"Product_Id": "00011733 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6558,
"name": "اوكسى مسحوق اتوماتيك الوان 4 كجم + 1 كجم عرض",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق اتوماتيك الوان 4 كجم + 1 كجم عرض",
"Product_EN": null,
"Product_Id": "00011734 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6559,
"name": "اوكسى مسحوق يدوى 170 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق يدوى 170 جم",
"Product_EN": null,
"Product_Id": "00011735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6560,
"name": "هاينز تونه قطعه واحده 185 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز تونه قطعه واحده 185 جم",
"Product_EN": null,
"Product_Id": "00011736 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6561,
"name": "زاهر كيس فرنساوى 13.5×62.5سم وزن",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر كيس فرنساوى 13.5×62.5سم وزن",
"Product_EN": null,
"Product_Id": "00011737 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6562,
"name": "عطاره . لبن بودرة كامل الدسم وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لبن بودرة كامل الدسم وزن",
"Product_EN": "Attara Full Cream Milk Powder - Scalable ",
"Product_Id": "00011738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6563,
"name": "عطاره . شيكوبون ديسباسيتو وزن",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شيكوبون ديسباسيتو وزن",
"Product_EN": "Attara Chicobon Despacito - Scalable ",
"Product_Id": "00011739 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6564,
"name": "عطاره . بن بالشيكولاتة وزن",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بن بالشيكولاتة وزن",
"Product_EN": "Attara Chocolate Coffee - Scalable",
"Product_Id": "00011740 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6565,
"name": "عطاره. كاجو بالشوكولاته وزن",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره. كاجو بالشوكولاته وزن",
"Product_EN": "Attar. Chocolate Cashew - Scalable",
"Product_Id": "00011741 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6566,
"name": "ستاربكس كوفى فرابتشينو 250 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس كوفى فرابتشينو 250 مل",
"Product_EN": "Starbucks Coffee Frappuccino 250 ml",
"Product_Id": "00011742 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6567,
"name": "ستاربكس كوفي مشروب قهوه بالحليب كان 200 مل",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس كوفي مشروب قهوه بالحليب كان 200 مل",
"Product_EN": "Starbucks Coffee Milk Coffee Drink Can 200 ml",
"Product_Id": "00011743 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6568,
"name": "جهينه زبادى يونانى لايت 105 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى يونانى لايت 105 جم",
"Product_EN": "Juhayna Greek Yogurt Light 105 gm",
"Product_Id": "00011744 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6569,
"name": "جهنيه زبادى يونانى 105 جم 5 %",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهنيه زبادى يونانى 105 جم 5 %",
"Product_EN": "Juhayna Greek Yogurt 5 % 180 gm",
"Product_Id": "00011745 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6570,
"name": "جهنيه زبادي يونانى 105 جم 2 %",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهنيه زبادي يونانى 105 جم 2 %",
"Product_EN": "Juhayna Greek Yogurt 2 % 180 gm",
"Product_Id": "00011746 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6571,
"name": "ستاربكس كوفى مشروب موكا كان 200 مل",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس كوفى مشروب موكا كان 200 مل",
"Product_EN": "Starbucks Coffee Mocha Can 200ml",
"Product_Id": "00011748 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6572,
"name": "ستاربكس كوفى مشروب كراميل كان 200 مل",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس كوفى مشروب كراميل كان 200 مل",
"Product_EN": "Starbucks Coffee Caramel Can 200 ml",
"Product_Id": "00011749 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6573,
"name": "عطاره . النارجيل زيت علبة صفيح 580 مل",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . النارجيل زيت علبة صفيح 580 مل",
"Product_EN": "Attara Narguile Oil Canister 580 ml",
"Product_Id": "00011751 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6574,
"name": "المشرق شنط كبيرة 35*60 مطبوع بيور جوده عاليه",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "المشرق شنط كبيرة 35*60 مطبوع بيور جوده عاليه",
"Product_EN": null,
"Product_Id": "00011752 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6575,
"name": "كلوركس منظف للمطابخ بخاخ 500 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف للمطابخ بخاخ 500 مل",
"Product_EN": null,
"Product_Id": "00011753 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6576,
"name": "كلوركس منظف 5*1 لافندر 700 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف 5*1 لافندر 700 مل",
"Product_EN": null,
"Product_Id": "00011754 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6577,
"name": "كلوركس جيل مكثف + منظف بالنعناع و الليمون450 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس جيل مكثف + منظف بالنعناع و الليمون450 مل",
"Product_EN": null,
"Product_Id": "00011755 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6578,
"name": "عطاره . اسنس جوز هند وزن",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . اسنس جوز هند وزن",
"Product_EN": "Attara Essence Coconut - Scalable",
"Product_Id": "00011756 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6579,
"name": "ميلكا شوكولاتة بندق 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بندق 100 جم",
"Product_EN": "Milka Chocolate Hazelnut 100 gm",
"Product_Id": "00011757 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6580,
"name": "ميلكا شوكولاتة فراولة 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة فراولة 100 جم",
"Product_EN": "Milka Strawberry Chocolate 100 gm ",
"Product_Id": "00011758 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6581,
"name": "زاهر سلطة تونة وزن",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطة تونة وزن",
"Product_EN": null,
"Product_Id": "00011759 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6582,
"name": "زاهر سلطة قريش شوفان وزن",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطة قريش شوفان وزن",
"Product_EN": null,
"Product_Id": "00011760 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6583,
"name": "كيت كات شوكولاتة لوتس شانكى 41.50 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة لوتس شانكى 41.50 جم",
"Product_EN": "Kit Kat Lotus Chunky Chocolate 41.50 gm",
"Product_Id": "00011761 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6584,
"name": "اوراك رومى فريش وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اوراك رومى فريش وزن",
"Product_EN": null,
"Product_Id": "00011762 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6585,
"name": "صدور رومى فريش وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صدور رومى فريش وزن",
"Product_EN": null,
"Product_Id": "00011763 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6586,
"name": "زاهر ديزيرت - مثلث تشيز بلوبيرى - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - مثلث تشيز بلوبيرى - موقوف",
"Product_EN": null,
"Product_Id": "00011764 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6587,
"name": "شيبسى كاتشاب هلابينو 3 ج 48 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى كاتشاب هلابينو 3 ج 48 جم",
"Product_EN": null,
"Product_Id": "00011766 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6588,
"name": "شيبسى بطاطس توابل 82 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى بطاطس توابل 82 جم",
"Product_EN": null,
"Product_Id": "00011767 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6589,
"name": "كرانشى بطاطس طعم البرجر 82 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى بطاطس طعم البرجر 82 جم",
"Product_EN": null,
"Product_Id": "00011768 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6590,
"name": "دوريتوس جبن بالناتشو 82 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس جبن بالناتشو 82 جم",
"Product_EN": null,
"Product_Id": "00011770 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6591,
"name": "كرانشى كباب 82 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى كباب 82 جم",
"Product_EN": null,
"Product_Id": "00011771 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6592,
"name": "عطاره . سحلب مكسرات وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . سحلب مكسرات وزن",
"Product_EN": "Attara Sahlab Nuts - Scalable",
"Product_Id": "00011772 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6593,
"name": "كورنو فلات عبوه سيفتى 1000 pet",
"price": 2.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات عبوه سيفتى 1000 pet",
"Product_EN": null,
"Product_Id": "00011773 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6594,
"name": "الضحى رقائق شوفان 500 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى رقائق شوفان 500 جم",
"Product_EN": "Al Doha Premium Oat Flakes 500 gm",
"Product_Id": "00011774 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6595,
"name": "احمد تى اعشاب بابونج وعشب اليمون 20 فتله",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى اعشاب بابونج وعشب اليمون 20 فتله",
"Product_EN": "Ahmad Tea Camomile & Lemongrass 20 Bags ",
"Product_Id": "00011775 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6596,
"name": "احمد تى اعشاب توت ممزوج 20 فتله",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى اعشاب توت ممزوج 20 فتله",
"Product_EN": "Ahmad Tea Mixed Berries Hibiscus 20 Bags",
"Product_Id": "00011776 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6597,
"name": "احمد تى اعشاب حامض ممزوج 20 فتله",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى اعشاب حامض ممزوج 20 فتله",
"Product_EN": "Ahmad Tea Herbs With Flavor Citrus 20 Bags",
"Product_Id": "00011777 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6598,
"name": "احمد تى اعشاب نعناع فلفلى وليمون20 فتله",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى اعشاب نعناع فلفلى وليمون20 فتله",
"Product_EN": "Ahmad Tea Peppermint & Lemon 20 Bags ",
"Product_Id": "00011778 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6599,
"name": "أحمد تي اعشاب ريبسوس وقرفه 20 فتله فويل",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "أحمد تي اعشاب ريبسوس وقرفه 20 فتله فويل",
"Product_EN": "Ahmad Tea Rooibos & Cinnamon 20 Bags",
"Product_Id": "00011779 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6600,
"name": " احمد تى اعشاب الفراولة البرية 20 فتله",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": " احمد تى اعشاب الفراولة البرية 20 فتله",
"Product_EN": "Ahmed Tea Wild Strawberry Flavor 20 Bags",
"Product_Id": "00011780 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6601,
"name": "احمد تى اعشاب توت برى 20 فتله",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى اعشاب توت برى 20 فتله",
"Product_EN": "Ahmad Tea Blackcurrant Infusion 20 Bags ",
"Product_Id": "00011781 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6602,
"name": "احمد تى اعشاب سحر الشتاء 20 فتله",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى اعشاب سحر الشتاء 20 فتله",
"Product_EN": "Ahmad Tea Winter Charm 20 Bags ",
"Product_Id": "00011782 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6603,
"name": "احمد تى اعشاب وردى و كرز 20 فتله",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى اعشاب وردى و كرز 20 فتله",
"Product_EN": "Ahmad Tea Rosehip Hibiscus & Cherry 20 Bags ",
"Product_Id": "00011783 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6604,
"name": "أحمد تي اعشاب ديتوكس 20 فتله",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "أحمد تي اعشاب ديتوكس 20 فتله",
"Product_EN": "Ahmad Tea Detox 20 Bags",
"Product_Id": "00011784 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6605,
"name": "احمد تى اعشاب ليمون وجنزبيل 20 فتله",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى اعشاب ليمون وجنزبيل 20 فتله",
"Product_EN": "Ahmad Tea Lemon & Ginger herbs 20 Bags",
"Product_Id": "00011785 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6606,
"name": "احمد تى شاى اخضر بالنعناع 250 جم",
"price": 47.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر بالنعناع 250 جم",
"Product_EN": "Ahmad Tea Green Tea & Mint 250 gm",
"Product_Id": "00011786 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6607,
"name": "دايجستيف شوكو ساندوتش 20 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستيف شوكو ساندوتش 20 جم",
"Product_EN": null,
"Product_Id": "00011787 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6608,
"name": "القرشى تمر باللوز والشوكولاته 125 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر باللوز والشوكولاته 125 جم",
"Product_EN": "Al Qurashi Dates Almonds & Chocolate 125 gm",
"Product_Id": "00011788 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6609,
"name": "عطاره . لب سورى وزن",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لب سورى وزن",
"Product_EN": "Attara Syrian Pulp - Scalable ",
"Product_Id": "00011789 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6610,
"name": "عطاره . لب سوبر وزن",
"price": 92,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لب سوبر وزن",
"Product_EN": "Attara Super Pulp - Scalable ",
"Product_Id": "00011790 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6611,
"name": "الراية دبس رومان 2 ق عرض",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الراية دبس رومان 2 ق عرض",
"Product_EN": null,
"Product_Id": "00011791 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6612,
"name": "ريتش دجاج بانيه بارد 400 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش دجاج بانيه بارد 400 جم",
"Product_EN": "Rich Chicken Pane Cold 400 gm",
"Product_Id": "00011792 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6613,
"name": "ريتش دجاج بانيه حار 400 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش دجاج بانيه حار 400 جم",
"Product_EN": "Rich Chicken Pane Spicy 400 gm",
"Product_Id": "00011793 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6614,
"name": "ريتش دجاج ناجتس 400 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش دجاج ناجتس 400 جم",
"Product_EN": "Rich Chicken Nuggets 400 gm",
"Product_Id": "00011794 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6615,
"name": "ريتش دجاج ستربس بارد 400 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش دجاج ستربس بارد 400 جم",
"Product_EN": "Rich Chicken Strips Cold 400 gm",
"Product_Id": "00011795 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6616,
"name": "ريتش دجاج ستربس حار 400 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش دجاج ستربس حار 400 جم",
"Product_EN": "Rich Chicken Strips Spicy 400 gm",
"Product_Id": "00011796 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6617,
"name": "كورونا شيكولاته دارك 25 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاته دارك 25 جم",
"Product_EN": null,
"Product_Id": "00011797 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6618,
"name": "كورونا شيكولاته لايت 25 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاته لايت 25 جم",
"Product_EN": null,
"Product_Id": "00011798 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6619,
"name": "دريم مسحوق بودنج فانيليا 100 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق بودنج فانيليا 100 جم",
"Product_EN": "Dreem Vanilla Pudding Powder 100gm",
"Product_Id": "00011799 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6620,
"name": "هنرى ويلج جبنه جودة سادة وزن",
"price": 145,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هنرى ويلج جبنه جودة سادة وزن",
"Product_EN": null,
"Product_Id": "00011800 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6621,
"name": "هنري ويلج جبنه جودة ثوم وزن",
"price": 198,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هنري ويلج جبنه جودة ثوم وزن",
"Product_EN": null,
"Product_Id": "00011801 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6622,
"name": "هنري ويلج جبنه جودة بلاك وزن",
"price": 200,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هنري ويلج جبنه جودة بلاك وزن",
"Product_EN": null,
"Product_Id": "00011802 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6623,
"name": "هنري ويلج جبنه جودة ماعز وزن",
"price": 320,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هنري ويلج جبنه جودة ماعز وزن",
"Product_EN": null,
"Product_Id": "00011803 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6624,
"name": "هنري ويلج جبنه ماسدام وزن",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هنري ويلج جبنه ماسدام وزن",
"Product_EN": null,
"Product_Id": "00011804 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6625,
"name": "هنري ويلج جبنه جوده ترافل وزن",
"price": 280,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هنري ويلج جبنه جوده ترافل وزن",
"Product_EN": null,
"Product_Id": "00011805 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6626,
"name": "عطاره . فول سودانى بقشره وزن - موقوف",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فول سودانى بقشره وزن - موقوف",
"Product_EN": "Attara Peanut by Shell - Scalable ",
"Product_Id": "00011806 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6627,
"name": "عطاره . لب ابيض وزن",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لب ابيض وزن",
"Product_EN": "Attara White Pulp - Scalable ",
"Product_Id": "00011807 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6628,
"name": "عطاره . لب خشب وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لب خشب وزن",
"Product_EN": "Attara Wood Plup - Scalable ",
"Product_Id": "00011808 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6629,
"name": "امنتال جبنه هولندي وزن",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امنتال جبنه هولندي وزن",
"Product_EN": null,
"Product_Id": "00011809 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6630,
"name": "فنش اقراص لغسيل الاطباق كلاسيك 13ق",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فنش اقراص لغسيل الاطباق كلاسيك 13ق",
"Product_EN": null,
"Product_Id": "00011810 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6631,
"name": "هاربيك منظف تواليت برائحة الخوخ والياسمين 450 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك منظف تواليت برائحة الخوخ والياسمين 450 مل",
"Product_EN": null,
"Product_Id": "00011811 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6632,
"name": "صن لايت صابون برائحه الليمون 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صن لايت صابون برائحه الليمون 125 جم",
"Product_EN": "Sunlight Soap Lemon 125 gm",
"Product_Id": "00011812 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6633,
"name": "كلوز اب معجون اسنان احمر 50 مل",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوز اب معجون اسنان احمر 50 مل",
"Product_EN": "Close Up Toothpaste Red 50 ml",
"Product_Id": "00011813 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6634,
"name": "صانسيلك شامبو للشعر الاسود 350 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو للشعر الاسود 350 مل",
"Product_EN": "Sunsilk Shampoo Hair Black 350 ml",
"Product_Id": "00011814 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6635,
"name": "سيجنال معجون اسنان حساسه تبييض 75 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان حساسه تبييض 75 مل",
"Product_EN": "Signal Toothpaste Sensitive Whitening 75 ml",
"Product_Id": "00011815 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6636,
"name": "ليبتون شاى اخضر نعناع 100 فتله",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر نعناع 100 فتله",
"Product_EN": "Lipton Green Tea Mint 100 Bags",
"Product_Id": "00011816 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6637,
"name": "دوف شامبو بروتين 600 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو بروتين 600 مل",
"Product_EN": "Dove Shampoo Protein 600 ml",
"Product_Id": "00011817 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6638,
"name": "سيجنال معجون اسنان كومبليت بخلاصه القرنفل 100 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت بخلاصه القرنفل 100 مل",
"Product_EN": "Signal Toothpaste Complete Clove Extract 100 ml",
"Product_Id": "00011818 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6639,
"name": "كمفورت منعم ملابس روز 1 لتر",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس روز 1 لتر",
"Product_EN": "Comfort Fabric Softener Rose 1 L",
"Product_Id": "00011819 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6640,
"name": "صانسيلك شامبو للتساقط 180 مل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك شامبو للتساقط 180 مل",
"Product_EN": "Sunsilk Shampoo For Hair Fall 180 ml",
"Product_Id": "00011822 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6641,
"name": "لايف بوى سائل غسيل ايدى عنايه متكامله 200 مل ",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى سائل غسيل ايدى عنايه متكامله 200 مل ",
"Product_EN": "Lifebuoy Hand Wash Liquid Complete Care 200 ml",
"Product_Id": "00011824 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6642,
"name": "لوكس شاور جيل سحر الجمال 250 مل + لوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس شاور جيل سحر الجمال 250 مل + لوف",
"Product_EN": "LUX Magical Beauty Shower Gel 250 ml + Loofah ",
"Product_Id": "00011825 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6643,
"name": "زاهر كوب فواكه مشكل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كوب فواكه مشكل",
"Product_EN": null,
"Product_Id": "00011827 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6644,
"name": "القرشى تمر بالمكسرات 500 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر بالمكسرات 500 جم",
"Product_EN": "Al Qurashi Dates With Nuts 500 gm",
"Product_Id": "00011828 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6645,
"name": "عطاره . بيكان محمص وزن",
"price": 600,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بيكان محمص وزن",
"Product_EN": "Attara Roasted Pecans - Scalable ",
"Product_Id": "00011829 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6646,
"name": "عطاره . لب مقشر نكهات وزن",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لب مقشر نكهات وزن",
"Product_EN": "Attara Peeled Pulp Flavors - Scalable ",
"Product_Id": "00011830 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6647,
"name": "عطاره . بندق ابيض محمص وزن",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بندق ابيض محمص وزن",
"Product_EN": "Attara White Roasted Hazelnut - Scalable ",
"Product_Id": "00011831 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6648,
"name": "نسكويك حبوب افطار 25 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك حبوب افطار 25 جم",
"Product_EN": null,
"Product_Id": "00011833 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6649,
"name": "نسكويك ليون حبوب افطار 25 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك ليون حبوب افطار 25 جم",
"Product_EN": null,
"Product_Id": "00011834 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6650,
"name": "القرشى روشية تمر بالشوكولاتة وجوز الهند واللوز",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى روشية تمر بالشوكولاتة وجوز الهند واللوز",
"Product_EN": "Al Qurashi Roshi Dates Chocolate Coconut & Almonds",
"Product_Id": "00011835 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6651,
"name": "زاهر شنطة 2020 = 105 جنيها",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة 2020 = 105 جنيها",
"Product_EN": null,
"Product_Id": "00011836 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6652,
"name": "القرشى تمر الوادى 700 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر الوادى 700 جم",
"Product_EN": "Al Qurashi Al Wadi Dates 700 gm",
"Product_Id": "00011837 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6653,
"name": "القرشى تمر الوادى مميز 400 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر الوادى مميز 400 جم",
"Product_EN": "Al Qurashi Premium Al Wadi Dates 400 gm",
"Product_Id": "00011838 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6654,
"name": "القرشى تمر فاكيوم 800 جم - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر فاكيوم 800 جم - موقوف",
"Product_EN": null,
"Product_Id": "00011839 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6655,
"name": "عطاره . زاهر مكسرات مشكلة وزن - موقوف",
"price": 250,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زاهر مكسرات مشكلة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00011840 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6656,
"name": "القرشى تمر باللوز 100جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر باللوز 100جم",
"Product_EN": "Al Qurashi Dates With Almonds 100 gm",
"Product_Id": "00011841 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6657,
"name": "مهمت افندي قهوة بن تركى 250 جم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مهمت افندي قهوة بن تركى 250 جم",
"Product_EN": null,
"Product_Id": "00011844 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6658,
"name": "قهوجي مهمت افندي بن تركي100جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قهوجي مهمت افندي بن تركي100جم",
"Product_EN": null,
"Product_Id": "00011845 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6659,
"name": "مهمت افندي بن تركي 500 جم",
"price": 215,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مهمت افندي بن تركي 500 جم",
"Product_EN": null,
"Product_Id": "00011846 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6660,
"name": "جراند كافيه كلاسيك قهوه سريعة التحضير 100 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراند كافيه كلاسيك قهوه سريعة التحضير 100 جم",
"Product_EN": null,
"Product_Id": "00011847 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6661,
"name": "جراند كافيه كلاسيك قهوه سريعة التحضير 50 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراند كافيه كلاسيك قهوه سريعة التحضير 50 جم",
"Product_EN": null,
"Product_Id": "00011848 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6662,
"name": "جراند كافيه قهوة كلاسيك 200جم",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراند كافيه قهوة كلاسيك 200جم",
"Product_EN": null,
"Product_Id": "00011849 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6663,
"name": "جراند كافيه جولد قهوه سريعة التحضير 100 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراند كافيه جولد قهوه سريعة التحضير 100 جم",
"Product_EN": null,
"Product_Id": "00011850 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6664,
"name": "جراند كافيه جولد قهوه سريعة التحضير 50 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراند كافيه جولد قهوه سريعة التحضير 50 جم",
"Product_EN": null,
"Product_Id": "00011851 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6665,
"name": "هنز مسحوق كاكاو خام200جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنز مسحوق كاكاو خام200جم",
"Product_EN": null,
"Product_Id": "00011852 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6666,
"name": "هنز كاكاو خام 454جم صفيح",
"price": 205,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنز كاكاو خام 454جم صفيح",
"Product_EN": null,
"Product_Id": "00011853 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6667,
"name": "هنز مسحوق كاكاو خام 100 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنز مسحوق كاكاو خام 100 جم",
"Product_EN": null,
"Product_Id": "00011854 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6668,
"name": "هنز مبيض قهوه 400 جم",
"price": 30.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنز مبيض قهوه 400 جم",
"Product_EN": null,
"Product_Id": "00011855 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6669,
"name": "هنز مبيض قهوة 250جم",
"price": 20.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنز مبيض قهوة 250جم",
"Product_EN": null,
"Product_Id": "00011856 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6670,
"name": "هنز جولد قهوه سريعة التحضير 100 جم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنز جولد قهوه سريعة التحضير 100 جم",
"Product_EN": null,
"Product_Id": "00011857 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6671,
"name": "هنز قهوه سريعة التحضير 200 جم",
"price": 108,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنز قهوه سريعة التحضير 200 جم",
"Product_EN": null,
"Product_Id": "00011858 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6672,
"name": "هنز سريع الذوبان 100جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنز سريع الذوبان 100جم",
"Product_EN": null,
"Product_Id": "00011859 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6673,
"name": "هنز قهوه سريعة التحضير 50 جم",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنز قهوه سريعة التحضير 50 جم",
"Product_EN": null,
"Product_Id": "00011860 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6674,
"name": "فينو عسل 455 جم - ايزى اوبن",
"price": 216,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فينو عسل 455 جم - ايزى اوبن",
"Product_EN": null,
"Product_Id": "00011861 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6675,
"name": "اتيكى عسل 470 جم سكويز كبير",
"price": 231,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اتيكى عسل 470 جم سكويز كبير",
"Product_EN": null,
"Product_Id": "00011862 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6676,
"name": "زيت اسبانى 500 + مياه ورد 400 مل",
"price": 74,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زيت اسبانى 500 + مياه ورد 400 مل",
"Product_EN": "Spanish Oil 500 + Rose water 400 ml",
"Product_Id": "00011863 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6677,
"name": "تشويس خيار 2500 كجم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس خيار 2500 كجم",
"Product_EN": null,
"Product_Id": "00011864 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6678,
"name": "تشويس اكسترا فيرجن 500مل",
"price": 86,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس اكسترا فيرجن 500مل",
"Product_EN": null,
"Product_Id": "00011865 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6679,
"name": "تشويس اكسترا فيرجن 750مل",
"price": 126,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس اكسترا فيرجن 750مل",
"Product_EN": null,
"Product_Id": "00011866 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6680,
"name": " تشويس زيت زيتون اكسترا فيرجن 250مل",
"price": 48.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": " تشويس زيت زيتون اكسترا فيرجن 250مل",
"Product_EN": "Choice Extra Virgin Olive Oil 250 ml",
"Product_Id": "00011867 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6681,
"name": "تشويس زيت زيتون 500مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس زيت زيتون 500مل",
"Product_EN": "Choice Olive Oil 500 ml",
"Product_Id": "00011868 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6682,
"name": "تشويس قرنبيط وجزر 2500 كجم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس قرنبيط وجزر 2500 كجم",
"Product_EN": null,
"Product_Id": "00011869 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6683,
"name": "فيريرو كولكشن 269 جم",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيريرو كولكشن 269 جم",
"Product_EN": "Ferrero Collection 269 gm",
"Product_Id": "00011871 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6684,
"name": "فيريرو روشيه شوكولاتة 300 جم",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيريرو روشيه شوكولاتة 300 جم",
"Product_EN": "Ferrero Rocher Chocolate 300 gm",
"Product_Id": "00011872 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6685,
"name": "عطاره . شعريه وزن",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شعريه وزن",
"Product_EN": "Attara Vermicelli - Scalable ",
"Product_Id": "00011873 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6686,
"name": "بيك رولز مقرمشات ملح 105جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز مقرمشات ملح 105جم",
"Product_EN": null,
"Product_Id": "00011874 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6687,
"name": "ديفا سائل غسيل ايدي الاصلى 500 مل",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديفا سائل غسيل ايدي الاصلى 500 مل",
"Product_EN": null,
"Product_Id": "00011875 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6688,
"name": "ديفا سائل غسيل ايدي كلين 500 مل",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديفا سائل غسيل ايدي كلين 500 مل",
"Product_EN": null,
"Product_Id": "00011876 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6689,
"name": "ديفا سائل غسيل ايدي فريش 500 مل",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديفا سائل غسيل ايدي فريش 500 مل",
"Product_EN": null,
"Product_Id": "00011877 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6690,
"name": "كلوريل مطهر 1050 كجم 3 ق 1 ق عرض",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل مطهر 1050 كجم 3 ق 1 ق عرض",
"Product_EN": null,
"Product_Id": "00011878 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6691,
"name": "ماكسيل معطر جو رفاهيه 475 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكسيل معطر جو رفاهيه 475 مل",
"Product_EN": null,
"Product_Id": "00011879 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6692,
"name": "ماكسيل معطر جو فواكه استوائيه 475 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكسيل معطر جو فواكه استوائيه 475 مل",
"Product_EN": null,
"Product_Id": "00011880 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6693,
"name": "كلوركس مطهر مركز 350 جم كيس",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس مطهر مركز 350 جم كيس",
"Product_EN": null,
"Product_Id": "00011881 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6694,
"name": "كلوركس منظف ومسلك للبلاعات 1 لتر",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف ومسلك للبلاعات 1 لتر",
"Product_EN": null,
"Product_Id": "00011882 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6695,
"name": "وزو برجر بسكويت ساندوتش بالحليب 40 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وزو برجر بسكويت ساندوتش بالحليب 40 جم",
"Product_EN": "WOZO Burger Sandwich Biscuits Milk 40 gm",
"Product_Id": "00011883 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6696,
"name": "كادبوري سناك شورت كيك 40 جم ",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبوري سناك شورت كيك 40 جم ",
"Product_EN": "Cadbury Snack Short Cake 40 gm ",
"Product_Id": "00011884 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6697,
"name": "كادبوري كرانشي 40 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبوري كرانشي 40 جم",
"Product_EN": "Cadbury Crunchy 40 gm",
"Product_Id": "00011885 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6698,
"name": "بيض ريتر سبورت",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيض ريتر سبورت",
"Product_EN": "Ritter Sport Egg",
"Product_Id": "00011886 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6699,
"name": "ميلكا رقائق اهوي 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا رقائق اهوي 100 جم",
"Product_EN": "Milka Chips Ahoy 100 gm",
"Product_Id": "00011887 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6700,
"name": "ميلكا ضوضاء 100جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا ضوضاء 100جم",
"Product_EN": "Milka Noise 100 g",
"Product_Id": "00011888 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6701,
"name": "ميلكا شوكولاتة بالحليب هابي كاو100جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالحليب هابي كاو100جم",
"Product_EN": "Milka Happy Cow Milk Chocolate 100 gm",
"Product_Id": "00011889 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6702,
"name": "ميلكا شوكولاتة بار كراميل 100 جم ",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بار كراميل 100 جم ",
"Product_EN": "Milka Caramel Chocolate 100 gm",
"Product_Id": "00011890 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6703,
"name": "ميلكا شوكولاتة بيضاء 100 جم ",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بيضاء 100 جم ",
"Product_EN": " Milka White Chocolate 100 gm",
"Product_Id": "00011891 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6704,
"name": "ميلكا شوكولاتة باللوز 90 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة باللوز 90 جم",
"Product_EN": "Milka Almond Chocolate 90 gm",
"Product_Id": "00011892 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6705,
"name": "لعبة عسكري للاطفال",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "لعبة عسكري للاطفال",
"Product_EN": "Military Game For Children",
"Product_Id": "00011893 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6706,
"name": "لعبة عربية للاطفال",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "لعبة عربية للاطفال",
"Product_EN": "Arabic Game For Children",
"Product_Id": "00011894 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6707,
"name": "لعبة طيارة للاطفال",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "لعبة طيارة للاطفال",
"Product_EN": "Airplane Game For Kids",
"Product_Id": "00011895 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6708,
"name": "اماندا رنجه زيت فلفل 190 جم ",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اماندا رنجه زيت فلفل 190 جم ",
"Product_EN": null,
"Product_Id": "00011896 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6709,
"name": "اماندا رنجه مدخنه دايت 190 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اماندا رنجه مدخنه دايت 190 جم",
"Product_EN": null,
"Product_Id": "00011897 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6710,
"name": "اماندا سالمون فيليه لايت 190 جم",
"price": 83,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اماندا سالمون فيليه لايت 190 جم",
"Product_EN": null,
"Product_Id": "00011898 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6711,
"name": "اماندا رنجه زيت فلفل 110 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اماندا رنجه زيت فلفل 110 جم",
"Product_EN": null,
"Product_Id": "00011899 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6712,
"name": "اماندا سردين صوص طماطم 190 جم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اماندا سردين صوص طماطم 190 جم",
"Product_EN": null,
"Product_Id": "00011900 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6713,
"name": "اماندا سردين زيت دوار الشمس 190 جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اماندا سردين زيت دوار الشمس 190 جم",
"Product_EN": null,
"Product_Id": "00011901 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6714,
"name": "اماندا سردين زيت رابسيلد 190 جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اماندا سردين زيت رابسيلد 190 جم",
"Product_EN": null,
"Product_Id": "00011902 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6715,
"name": "تشويس ماء ورد 200 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس ماء ورد 200 مل",
"Product_EN": null,
"Product_Id": "00011903 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6716,
"name": "تشويس دبس رمان 350 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس دبس رمان 350 جم",
"Product_EN": null,
"Product_Id": "00011904 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6717,
"name": "تشويس خل تفاح 250 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس خل تفاح 250 مل",
"Product_EN": null,
"Product_Id": "00011905 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6718,
"name": "تشويس ماء ورد 400مم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس ماء ورد 400مم",
"Product_EN": null,
"Product_Id": "00011906 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6719,
"name": "اماندا رنجه مدخنه زيت 190 جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اماندا رنجه مدخنه زيت 190 جم",
"Product_EN": null,
"Product_Id": "00011907 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6720,
"name": "ديلى فريش صويا صوص 200 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش صويا صوص 200 مل",
"Product_EN": null,
"Product_Id": "00011908 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6721,
"name": "تشويس صويا صوص غامق 500 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس صويا صوص غامق 500 مل",
"Product_EN": null,
"Product_Id": "00011909 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6722,
"name": "ديلى فريش اوريجنال مايونيز 500 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش اوريجنال مايونيز 500 مل",
"Product_EN": null,
"Product_Id": "00011910 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6723,
"name": "تشويس خل تفاح طبيعى 500 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس خل تفاح طبيعى 500 مل",
"Product_EN": null,
"Product_Id": "00011911 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6724,
"name": "تشويس خل بلسمك 250 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس خل بلسمك 250 مل",
"Product_EN": null,
"Product_Id": "00011912 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6725,
"name": "تشويس شوفان 500 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس شوفان 500 جم",
"Product_EN": null,
"Product_Id": "00011913 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6726,
"name": "تشويش فاصوليا حمراء 425 جم",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويش فاصوليا حمراء 425 جم",
"Product_EN": null,
"Product_Id": "00011914 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6727,
"name": "تشويس فاصوليا بيضاء بالصلصه 425 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس فاصوليا بيضاء بالصلصه 425 جم",
"Product_EN": null,
"Product_Id": "00011915 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6728,
"name": "تشويس مشروم حبه كامله 400 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس مشروم حبه كامله 400 جم",
"Product_EN": null,
"Product_Id": "00011916 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6729,
"name": "تشويس مشروم شرائح 800 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس مشروم شرائح 800 جم",
"Product_EN": null,
"Product_Id": "00011917 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6730,
"name": "تشويس فاصوليا سوداء 425 جم",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس فاصوليا سوداء 425 جم",
"Product_EN": null,
"Product_Id": "00011918 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6731,
"name": "تشويس فاصوليا بيضاء 425 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس فاصوليا بيضاء 425 جم",
"Product_EN": null,
"Product_Id": "00011919 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6732,
"name": "تشويس مشروم كامل 800 جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس مشروم كامل 800 جم",
"Product_EN": null,
"Product_Id": "00011920 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6733,
"name": "تشويس زيت حار 250 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس زيت حار 250 مل",
"Product_EN": "Choice Flaxseed Oil 250 ml",
"Product_Id": "00011921 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6734,
"name": "تشويس زيت سمسم 250 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس زيت سمسم 250 مل",
"Product_EN": "Choice Sesame Oil 250 ml ",
"Product_Id": "00011922 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6735,
"name": "فيروكس صابون سائل 4 كجم ( ليمون اصفر )",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل 4 كجم ( ليمون اصفر )",
"Product_EN": null,
"Product_Id": "00011923 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6736,
"name": "فيروكس صابون سائل 4 كجم ( ليمون اخضر )",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل 4 كجم ( ليمون اخضر )",
"Product_EN": null,
"Product_Id": "00011924 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6737,
"name": "فيروكس صابون سائل 3 كجم ( خوخ )",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل 3 كجم ( خوخ )",
"Product_EN": null,
"Product_Id": "00011925 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6738,
"name": "فيروكس صابون سائل 4 كجم ( رمان )",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل 4 كجم ( رمان )",
"Product_EN": null,
"Product_Id": "00011926 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6739,
"name": "فيروكس صابون سائل 4 كجم ( تفاح اخضر )",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل 4 كجم ( تفاح اخضر )",
"Product_EN": null,
"Product_Id": "00011927 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6740,
"name": "فيروكس صابون سائل 3 كجم ( ليمون اصفر )",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل 3 كجم ( ليمون اصفر )",
"Product_EN": null,
"Product_Id": "00011928 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6741,
"name": "فيروكس صابون سائل 3 كجم ( ليمون اخضر )",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل 3 كجم ( ليمون اخضر )",
"Product_EN": null,
"Product_Id": "00011929 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6742,
"name": "فيروكس صابون سائل 3 كجم ( رمان )",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل 3 كجم ( رمان )",
"Product_EN": null,
"Product_Id": "00011930 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6743,
"name": "فيروكس صابون سائل 3 كجم ( تفاح اخضر )",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل 3 كجم ( تفاح اخضر )",
"Product_EN": null,
"Product_Id": "00011931 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6744,
"name": "فيروكس صابون سائل750جم ( ليمون أصفر )",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل750جم ( ليمون أصفر )",
"Product_EN": null,
"Product_Id": "00011932 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6745,
"name": "فيروكس صابون سائل750جم ( ليمون أخضر )",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل750جم ( ليمون أخضر )",
"Product_EN": null,
"Product_Id": "00011933 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6746,
"name": "فيروكس صابون سائل750جم ( خوخ )",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل750جم ( خوخ )",
"Product_EN": null,
"Product_Id": "00011934 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6747,
"name": "فيروكس صابون سائل750جم ( رمان )",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل750جم ( رمان )",
"Product_EN": null,
"Product_Id": "00011935 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6748,
"name": "فيروكس صابون سائل 3 كجم ( خوخ ) - موقوف",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل 3 كجم ( خوخ ) - موقوف",
"Product_EN": null,
"Product_Id": "00011936 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6749,
"name": "فيروكس صابون سائل750جم ( تفاح اخضر )",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس صابون سائل750جم ( تفاح اخضر )",
"Product_EN": null,
"Product_Id": "00011937 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6750,
"name": "زهوة صابون سائل 4كجم لجميع الاغراض المنزلية",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زهوة صابون سائل 4كجم لجميع الاغراض المنزلية",
"Product_EN": null,
"Product_Id": "00011938 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6751,
"name": "فيروكس منظف ومطهر ارضيات750 مل (الصنوبر)",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس منظف ومطهر ارضيات750 مل (الصنوبر)",
"Product_EN": null,
"Product_Id": "00011939 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6752,
"name": "فيروكس منظف ومطهر ارضيات 750 مل (اللافاندر)",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس منظف ومطهر ارضيات 750 مل (اللافاندر)",
"Product_EN": null,
"Product_Id": "00011940 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6753,
"name": "فيروكس منظف ومطهر ارضيات 750 مل (استوائية)",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس منظف ومطهر ارضيات 750 مل (استوائية)",
"Product_EN": null,
"Product_Id": "00011941 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6754,
"name": "فيروكس منظف ومطهر ارضيات 750 مل (الزهور)",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس منظف ومطهر ارضيات 750 مل (الزهور)",
"Product_EN": null,
"Product_Id": "00011942 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6755,
"name": "فيروكس سائل منظف ارضيات ليمون 750 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس سائل منظف ارضيات ليمون 750 مل",
"Product_EN": null,
"Product_Id": "00011943 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6756,
"name": "فيروكس سائل منظف ارضيات عود 750 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس سائل منظف ارضيات عود 750 مل",
"Product_EN": null,
"Product_Id": "00011944 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6757,
"name": "فيروكس ملمع الاستانلس رشاش 600 مل",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس ملمع الاستانلس رشاش 600 مل",
"Product_EN": null,
"Product_Id": "00011945 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6758,
"name": "فيروكس متعدد الاغراض رشاش 600 مل ",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس متعدد الاغراض رشاش 600 مل ",
"Product_EN": null,
"Product_Id": "00011946 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6759,
"name": "فيروكس منظف ومطهر الحمامات رشاش 600 مل ",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس منظف ومطهر الحمامات رشاش 600 مل ",
"Product_EN": null,
"Product_Id": "00011947 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6760,
"name": "فيروكس منظف ومطهر المطابخ رشاش 600 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس منظف ومطهر المطابخ رشاش 600 مل",
"Product_EN": null,
"Product_Id": "00011948 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6761,
"name": "فيروكس منظف افران ومزيل للدهون رشاش 600مل",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس منظف افران ومزيل للدهون رشاش 600مل",
"Product_EN": null,
"Product_Id": "00011949 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6762,
"name": "فيروكس ملمع الاخشاب رشاش600مل",
"price": 45.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس ملمع الاخشاب رشاش600مل",
"Product_EN": null,
"Product_Id": "00011950 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6763,
"name": "بيــــــونا مزيل بقع الاقمشة بقوة الاكسجين رشاش600",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بيــــــونا مزيل بقع الاقمشة بقوة الاكسجين رشاش600",
"Product_EN": null,
"Product_Id": "00011951 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6764,
"name": "كلوروسيل مبيض ومطهر ابيض 950 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوروسيل مبيض ومطهر ابيض 950 مل",
"Product_EN": null,
"Product_Id": "00011952 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6765,
"name": "كلوروسيل مبيض ومطهر الوان 950 مل",
"price": 18.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوروسيل مبيض ومطهر الوان 950 مل",
"Product_EN": null,
"Product_Id": "00011953 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6766,
"name": "كلوروسيل مبيض ومطهر ابيض 3.5 لتر",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوروسيل مبيض ومطهر ابيض 3.5 لتر",
"Product_EN": null,
"Product_Id": "00011954 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6767,
"name": "فيروكس منظف للزجاج رشاش 600 مل ( الربيع )",
"price": 15.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس منظف للزجاج رشاش 600 مل ( الربيع )",
"Product_EN": null,
"Product_Id": "00011955 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6768,
"name": "فيروكس منظف زجاج رشاش 600 مل ( ليمون )",
"price": 15.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس منظف زجاج رشاش 600 مل ( ليمون )",
"Product_EN": null,
"Product_Id": "00011956 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6769,
"name": "فيروكس منظف زجاج رشاش 600 مل ( خوخ )",
"price": 15.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيروكس منظف زجاج رشاش 600 مل ( خوخ )",
"Product_EN": null,
"Product_Id": "00011957 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6770,
"name": "لامورينا سائل غسيل ايدى فانيليا 500 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "لامورينا سائل غسيل ايدى فانيليا 500 مل",
"Product_EN": "Lamorina Hand Wash Liquid Vanilla 500 ml",
"Product_Id": "00011958 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6771,
"name": "لامورينا سائل غسيل ايدى فانيليا 500 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "لامورينا سائل غسيل ايدى فانيليا 500 مل",
"Product_EN": "Lamorina Hand Wash Liquid Vanilla 500 ml",
"Product_Id": "00011959 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6772,
"name": "لامورينا هاند سوب 500مل (عود)",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا هاند سوب 500مل (عود)",
"Product_EN": null,
"Product_Id": "00011960 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6773,
"name": "لامورينا هاند سوب 500مل (خوخ)",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا هاند سوب 500مل (خوخ)",
"Product_EN": null,
"Product_Id": "00011961 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6774,
"name": "لامورينا هاند سوب 500مل (نعناع)",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا هاند سوب 500مل (نعناع)",
"Product_EN": null,
"Product_Id": "00011962 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6775,
"name": "لامورينا هاند سوب 500مل (بنفسج)",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا هاند سوب 500مل (بنفسج)",
"Product_EN": null,
"Product_Id": "00011963 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6776,
"name": "لامورينا هاند سوب 500مل (تروبيكال)",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا هاند سوب 500مل (تروبيكال)",
"Product_EN": null,
"Product_Id": "00011964 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6777,
"name": "لامورينا هاند سوب 1.5 لتر (فاين)",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا هاند سوب 1.5 لتر (فاين)",
"Product_EN": null,
"Product_Id": "00011965 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6778,
"name": "لامورينا هاند سوب 1.5 لتر (فانليا)",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا هاند سوب 1.5 لتر (فانليا)",
"Product_EN": null,
"Product_Id": "00011966 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6779,
"name": "لامورينا هاند سوب 1.5لتر (عود)",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا هاند سوب 1.5لتر (عود)",
"Product_EN": null,
"Product_Id": "00011967 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6780,
"name": "لامورينا هاند سوب 1.5 لتر (خوخ)",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا هاند سوب 1.5 لتر (خوخ)",
"Product_EN": null,
"Product_Id": "00011968 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6781,
"name": "لامورينا هاند سوب 1.5 لتر (تروبيكال)",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا هاند سوب 1.5 لتر (تروبيكال)",
"Product_EN": null,
"Product_Id": "00011969 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6782,
"name": "لامورينا شاور جيل 500 مل (العطر المميز)",
"price": 26.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل (العطر المميز)",
"Product_EN": null,
"Product_Id": "00011970 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6783,
"name": "لامورينا شاور جيل 500 مل (بطيخ)",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل (بطيخ)",
"Product_EN": null,
"Product_Id": "00011971 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6784,
"name": "لامورينا شاور جل بطيخ 500 مل",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جل بطيخ 500 مل",
"Product_EN": null,
"Product_Id": "00011972 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6785,
"name": "لامورينا شاور جيل 500 مل (رمان)",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل (رمان)",
"Product_EN": null,
"Product_Id": "00011973 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6786,
"name": "لامورينا شاور جيل 500 مل ( احساس الانتعاش)",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل ( احساس الانتعاش)",
"Product_EN": null,
"Product_Id": "00011974 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6787,
"name": "لامورينا شاور جيل 500 مل (المسك الابيض)",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل (المسك الابيض)",
"Product_EN": null,
"Product_Id": "00011975 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6788,
"name": "لامورينا شاور جيل 500 مل ( العود )",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل ( العود )",
"Product_EN": null,
"Product_Id": "00011976 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6789,
"name": "لامورينا شاور جيل 500 مل ( كاموميل )",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل ( كاموميل )",
"Product_EN": null,
"Product_Id": "00011977 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6790,
"name": "لامورينا شاور جيل 500 مل ( روز )",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل ( روز )",
"Product_EN": null,
"Product_Id": "00011978 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6791,
"name": "لامورينا شاور جيل 500 مل ( لافندر )",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل ( لافندر )",
"Product_EN": null,
"Product_Id": "00011979 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6792,
"name": "لامورينا شاور جيل 500 مل ( عسل ولبن )",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل ( عسل ولبن )",
"Product_EN": null,
"Product_Id": "00011980 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6793,
"name": "لامورينا شاور جيل 500 مل ( دوفانا )",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 500 مل ( دوفانا )",
"Product_EN": null,
"Product_Id": "00011981 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6794,
"name": "لامورينا شاور جيل 1لتر (العطر المميز)",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1لتر (العطر المميز)",
"Product_EN": null,
"Product_Id": "00011982 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6795,
"name": " لامورينا شاور جيل 1لتر (بطيخ)",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": " لامورينا شاور جيل 1لتر (بطيخ)",
"Product_EN": null,
"Product_Id": "00011983 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6796,
"name": "لامورينا شاور جيل 1لتر (خوخ)",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1لتر (خوخ)",
"Product_EN": null,
"Product_Id": "00011984 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6797,
"name": "لامورينا شاور جيل 1 لتر (رمان)",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1 لتر (رمان)",
"Product_EN": null,
"Product_Id": "00011985 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6798,
"name": "اولكر فينجر بسكويت ساده 55 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر فينجر بسكويت ساده 55 جم",
"Product_EN": null,
"Product_Id": "00001383 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6799,
"name": "مارى بسكويت",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مارى بسكويت",
"Product_EN": null,
"Product_Id": "00001386 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6800,
"name": "فيتراك مربى كريمى مشمش 380 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى كريمى مشمش 380 جم",
"Product_EN": null,
"Product_Id": "00001388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6801,
"name": "فيتراك مربى مشمش 430 جم",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 430 جم",
"Product_EN": null,
"Product_Id": "00001390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6802,
"name": "اولكر بسكويت ساندوتش علبه ",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت ساندوتش علبه ",
"Product_EN": null,
"Product_Id": "00001392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6803,
"name": "اولكربسكويت فينجر علبه ",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكربسكويت فينجر علبه ",
"Product_EN": null,
"Product_Id": "00001393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6804,
"name": "اوريو بسكويت 3 ق 28 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريو بسكويت 3 ق 28 جم",
"Product_EN": "OREO Biscuit 3 Piece 28 gm",
"Product_Id": "00001397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6805,
"name": "اوريو بسكويت علبه - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريو بسكويت علبه - موقوف",
"Product_EN": null,
"Product_Id": "00001398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6806,
"name": "فيتراك مربى تين 850 جم",
"price": 12.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 850 جم",
"Product_EN": null,
"Product_Id": "00001400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6807,
"name": "اندومى شعريه سريعه التحضير اللحم البقرى 75 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير اللحم البقرى 75 جم",
"Product_EN": null,
"Product_Id": "00001401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6808,
"name": "فيتراك مربى بلح 340 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى بلح 340 جم",
"Product_EN": null,
"Product_Id": "00001402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6809,
"name": "فيتراك مربى لارنج 340 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى لارنج 340 جم",
"Product_EN": null,
"Product_Id": "00001405 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6810,
"name": "اوريو بسكويت 6 ق 57 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريو بسكويت 6 ق 57 جم",
"Product_EN": "OREO Biscuit 6 Piece 57 gm",
"Product_Id": "00001414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6811,
"name": "بيتى عصير كوكتيل 1 لتر - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير كوكتيل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6812,
"name": "توك بسكويت جبنه 24 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توك بسكويت جبنه 24 جم",
"Product_EN": "TUC Biscuit Cheese 24 gm",
"Product_Id": "00001418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6813,
"name": "توك بسكويت كريمه متبله 24 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توك بسكويت كريمه متبله 24 جم",
"Product_EN": "TUC Biscuits Cream Spiced 24 gm",
"Product_Id": "00001425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6814,
"name": "فيتراك مربى تين 900 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 900 جم",
"Product_EN": null,
"Product_Id": "00001427 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6815,
"name": "توك بسكويت مملح 24 جم ",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توك بسكويت مملح 24 جم ",
"Product_EN": "TUC Biscuits Salted 24 gm",
"Product_Id": "00001429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6816,
"name": "فيتراك مربى فراوله لايت 220 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله لايت 220 جم",
"Product_EN": "Vitrac Strawberry light Jam 220 gm",
"Product_Id": "00001430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6817,
"name": "فيتراك مربى مشمش لايت 220 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش لايت 220 جم",
"Product_EN": null,
"Product_Id": "00001433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6818,
"name": "بوريو بسكويت جامبو 75 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بوريو بسكويت جامبو 75 جم",
"Product_EN": "BORIO Jumbo Biscuits 75 gm",
"Product_Id": "00001434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6819,
"name": "بيتى عصير عنب احمر1لتر - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير عنب احمر1لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6820,
"name": "اوريو بسكويت جولد 38 جم ",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريو بسكويت جولد 38 جم ",
"Product_EN": "OREO Biscuits Gold 38 gm",
"Product_Id": "00001438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6821,
"name": "بيتى عصير جوافة 250 مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير جوافة 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6822,
"name": "فيتراك مربى تين لايت 220 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين لايت 220 جم",
"Product_EN": "Vitrac Fig Jam Light 220 gm",
"Product_Id": "00001441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6823,
"name": "فيتراك مربى برتقال لايت 220 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى برتقال لايت 220 جم",
"Product_EN": "Vitrac Orange Jam Light 220 gm",
"Product_Id": "00001443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6824,
"name": "بيتى عصير كوكتيل250مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير كوكتيل250مل - موقوف",
"Product_EN": null,
"Product_Id": "00001444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6825,
"name": "بيتى عصير تفاح 250مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير تفاح 250مل - موقوف",
"Product_EN": null,
"Product_Id": "00001445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6826,
"name": "بيتى عصير برتقال250مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير برتقال250مل - موقوف",
"Product_EN": null,
"Product_Id": "00001448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6827,
"name": "هيرو مربى فراوله 340 جم - موقوف",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى فراوله 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6828,
"name": "بيتى عصير عنب 250مل - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير عنب 250مل - موقوف",
"Product_EN": null,
"Product_Id": "00001452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6829,
"name": "كوكس كاسترد 240 جم",
"price": 6.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس كاسترد 240 جم",
"Product_EN": null,
"Product_Id": "00001454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6830,
"name": "دريم جيلى فراوله 70 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم جيلى فراوله 70 جم",
"Product_EN": "Dream Jelly Strawberry 70 gm",
"Product_Id": "00001456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6831,
"name": "توك بسكويت بيتزا 24 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توك بسكويت بيتزا 24 جم",
"Product_EN": "TUC Biscuits Pizza 24 gm",
"Product_Id": "00001457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6832,
"name": "هيرو مربى مشمش 340 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى مشمش 340 جم",
"Product_EN": null,
"Product_Id": "00001458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6833,
"name": "طعمة عصير كوكتيل 1 لتر - موقوف",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طعمة عصير كوكتيل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6834,
"name": "بوريو بسكويت علبه - موقوف",
"price": 0.1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بوريو بسكويت علبه - موقوف",
"Product_EN": null,
"Product_Id": "00001473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6835,
"name": "طعمة عصير برتقال 225مل - موقوف",
"price": 2.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طعمة عصير برتقال 225مل - موقوف",
"Product_EN": null,
"Product_Id": "00001474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6836,
"name": "هيرو مربى فواكه مشكله 340 جم",
"price": 24.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى فواكه مشكله 340 جم",
"Product_EN": null,
"Product_Id": "00001475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6837,
"name": "هيرو مربى توت 340 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى توت 340 جم",
"Product_EN": null,
"Product_Id": "00001478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6838,
"name": "طعمة عصير تفاح 225 مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طعمة عصير تفاح 225 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6839,
"name": "هيرو مربى كريز اسود340 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى كريز اسود340 جم",
"Product_EN": null,
"Product_Id": "00001480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6840,
"name": "طعمة عصير كوكتيل 225 مل - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طعمة عصير كوكتيل 225 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6841,
"name": "طعمة عصير جوافة 225 مل - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طعمة عصير جوافة 225 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6842,
"name": "دريم جيلى مشمش 70 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم جيلى مشمش 70 جم",
"Product_EN": "Dreem Jelly Apricot 70 gm",
"Product_Id": "00001483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6843,
"name": "لواكر تورتينا ويفر بالشوكولاتة والبندق 21 جم 5+1",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر تورتينا ويفر بالشوكولاتة والبندق 21 جم 5+1",
"Product_EN": "Loacker Tortina Wafer Chocolate & Hazelnut 21g 5+1",
"Product_Id": "00001485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6844,
"name": "دريم جيلى اناناس 70 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم جيلى اناناس 70 جم",
"Product_EN": "Dreem Jelly Pineapple 70 gm",
"Product_Id": "00001486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6845,
"name": "طعمة عصير رمان 225 مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طعمة عصير رمان 225 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001487 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6846,
"name": "طعمة عصير عنب احمر1 لتر - موقوف",
"price": 12.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طعمة عصير عنب احمر1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6847,
"name": "دريم كريم كراميل 92 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كريم كراميل 92 جم",
"Product_EN": "Dreem Cream Caramel 92 gm",
"Product_Id": "00001491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6848,
"name": "دريم جيلى مانجو 70 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم جيلى مانجو 70 جم",
"Product_EN": "Dream Jelly Mango 70 gm",
"Product_Id": "00001493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6849,
"name": "لمار عصير برتقال طبيعى 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير برتقال طبيعى 1 لتر",
"Product_EN": "Lamar Orange Juice 1 L",
"Product_Id": "00001494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6850,
"name": "دريم جيلى كريز 70 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم جيلى كريز 70 جم",
"Product_EN": "Dreem Jelly Cherry 70 gm",
"Product_Id": "00001496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6851,
"name": "دريم جيلى توت 70 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم جيلى توت 70 جم",
"Product_EN": "Dreem Jelly berries 70 gm",
"Product_Id": "00001498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6852,
"name": "لمار عصير تفاح طبيعى 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير تفاح طبيعى 1 لتر",
"Product_EN": "Lamar Apple Juice 1 L",
"Product_Id": "00001500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6853,
"name": "لمار مشروب مانجو 1 لتر ",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب مانجو 1 لتر ",
"Product_EN": "Lamar Mango Drink 1 L",
"Product_Id": "00001501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6854,
"name": "لمار مشروب جوافة 1 لتر ",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب جوافة 1 لتر ",
"Product_EN": "Lamar Guava Drink 1 L",
"Product_Id": "00001504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6855,
"name": "هيرو مربى التوت البرى 340 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى التوت البرى 340 جم",
"Product_EN": null,
"Product_Id": "00001505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6856,
"name": "لمار عصير برتقال طبيعى 200 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير برتقال طبيعى 200 مل",
"Product_EN": "Lamar Orange Juice - 200 ml",
"Product_Id": "00001506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6857,
"name": "لمار مشروب مانجو 200 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب مانجو 200 مل",
"Product_EN": "Lamar Mango Drink - 200 ml",
"Product_Id": "00001509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6858,
"name": "لمار مشروب جوافه 230 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب جوافه 230 مل",
"Product_EN": "Lamar Guava Drink - 230 ml",
"Product_Id": "00001511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6859,
"name": "برسيل باور مسحوق 800 جم - موقوف",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل باور مسحوق 800 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6860,
"name": "برسيل مسحوق 210 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق 210 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6861,
"name": "لمارعصير تفاح500مل - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمارعصير تفاح500مل - موقوف",
"Product_EN": null,
"Product_Id": "00001527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6862,
"name": "ريتش بيك بسبوسة ميكس بجوز الهند",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتش بيك بسبوسة ميكس بجوز الهند",
"Product_EN": null,
"Product_Id": "00001528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6863,
"name": "فيتراك مربى فراوله 900 جم ( موقوف )",
"price": 21.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 900 جم ( موقوف )",
"Product_EN": null,
"Product_Id": "00001536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6864,
"name": "لمار عصير أناناس طبيعى 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير أناناس طبيعى 1 لتر",
"Product_EN": "Lamar Pineapple Juice 1 L",
"Product_Id": "00001538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6865,
"name": "الطحان ام على 200 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان ام على 200 جم",
"Product_EN": null,
"Product_Id": "00001545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6866,
"name": "فيتراك مربى تين 900 جم _ موقوف",
"price": 21.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 900 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00001546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6867,
"name": "لمار عصير عنب أحمر طبيعى 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير عنب أحمر طبيعى 1 لتر",
"Product_EN": "Lamar Red Grape Juice 1 L",
"Product_Id": "00001547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6868,
"name": "لمار عصير عنب احمر500مل - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير عنب احمر500مل - موقوف",
"Product_EN": null,
"Product_Id": "00001551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6869,
"name": "برسيل باور مسحوق 4 ك _ موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل باور مسحوق 4 ك _ موقوف",
"Product_EN": null,
"Product_Id": "00001554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6870,
"name": "لمار عصير رمان طبيعى 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير رمان طبيعى 1 لتر",
"Product_EN": "Lamar Pomegranate Juice 1 L",
"Product_Id": "00001556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6871,
"name": "هيرو مربى فراوله 340 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى فراوله 340 جم",
"Product_EN": null,
"Product_Id": "00001557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6872,
"name": "كيت كات شانكى شوكولاتة 40 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شانكى شوكولاتة 40 جم",
"Product_EN": "Kit Kat Chunky Chocolate 40 gm",
"Product_Id": "00001559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6873,
"name": "هيرو مربى التوت 340 جم",
"price": 17.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى التوت 340 جم",
"Product_EN": null,
"Product_Id": "00001560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6874,
"name": "لمار عصير رمان500مل - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير رمان500مل - موقوف",
"Product_EN": null,
"Product_Id": "00001561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6875,
"name": "هيرو مربى توت برى 340 جم",
"price": 23.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى توت برى 340 جم",
"Product_EN": null,
"Product_Id": "00001564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6876,
"name": "هيرو مربى كرز احمر 340 جم",
"price": 17.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى كرز احمر 340 جم",
"Product_EN": null,
"Product_Id": "00001567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6877,
"name": "هيرو مربى كريز اسود 340 جم",
"price": 17.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى كريز اسود 340 جم",
"Product_EN": null,
"Product_Id": "00001571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6878,
"name": "برسيل يدوى 125 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل يدوى 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6879,
"name": "الطحان كيك برتقال 400 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان كيك برتقال 400 جم",
"Product_EN": null,
"Product_Id": "00001573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6880,
"name": "لمار مشروب يوسفى 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب يوسفى 1 لتر",
"Product_EN": "Lamar Tangerine Mandarian Drink 1 L",
"Product_Id": "00001577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6881,
"name": "لمار عصير رمان طبيعى 200 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير رمان طبيعى 200 مل",
"Product_EN": "Lamar Pomegranate Juice - 200 ml",
"Product_Id": "00001580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6882,
"name": "فيتراك مربى مشمش 245 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 245 جم",
"Product_EN": null,
"Product_Id": "00001581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6883,
"name": "لمار مشروب يوسفى 230 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب يوسفى 230 مل",
"Product_EN": "Lamar Tangerine Mandarian Drink - 230 ml",
"Product_Id": "00001582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6884,
"name": "دريم مسحوق كيك اسفنجى فانيليا 400 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق كيك اسفنجى فانيليا 400 جم",
"Product_EN": "Dreem Sponge Cake Powder Vanilla 400 gm",
"Product_Id": "00001584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6885,
"name": "لمار عصير رمان وعنب 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير رمان وعنب 1 لتر",
"Product_EN": "Lamar Pomegranate w Grape Juice 1 L ",
"Product_Id": "00001586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6886,
"name": "برسيل مسحوق يدوى 120 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى 120 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6887,
"name": "لمارعصير رمان وعنب 230 مل",
"price": 6.65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمارعصير رمان وعنب 230 مل",
"Product_EN": "Lamar Pomegranate w Grape Juice 230 ml ",
"Product_Id": "00001589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6888,
"name": "دريم مسحوق كيك اسفنجى شوكولاتة 400 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق كيك اسفنجى شوكولاتة 400 جم",
"Product_EN": "Dreem Sponge Cake Powder Chocolate 400 gm",
"Product_Id": "00001590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6889,
"name": "برسيل مسحوق الوان 800 جم - موقوف",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق الوان 800 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6890,
"name": "لمارعصير رمان واناناس 1 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمارعصير رمان واناناس 1 لتر",
"Product_EN": "Lamar Pomegranate w Pineapple Juice 1 L",
"Product_Id": "00001593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6891,
"name": "دريم مسحوق كيك براونيز 400 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق كيك براونيز 400 جم",
"Product_EN": "Dreem Brownies Cake Powder 400 gm",
"Product_Id": "00001595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6892,
"name": "حلوانى مربى مشمش لارنج 380 جم - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى مشمش لارنج 380 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6893,
"name": "برسيل مسحوق الوان 2.50 كجم - موقوف",
"price": 86.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق الوان 2.50 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00001597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6894,
"name": "دريم مسحوق بان كيك 440 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق بان كيك 440 جم",
"Product_EN": "Dreem Pancake Powder 440 gm",
"Product_Id": "00001599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6895,
"name": "برسيل مسحوق عادى 80 جم - موقوف",
"price": 1.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق عادى 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6896,
"name": "حلوانى مربى مشمش 380 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى مشمش 380 جم",
"Product_EN": "Halwani Apricot Jam 380 gm",
"Product_Id": "00001601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6897,
"name": "برسيل مسحوق عادى 500 جم - موقوف",
"price": 9.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق عادى 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6898,
"name": "اريال مسحوق 125 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6899,
"name": "حلوانى مربى مشمش 750 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى مشمش 750 جم",
"Product_EN": "Halwani Apricot Jam 750 gm",
"Product_Id": "00001606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6900,
"name": "الضحى سكر ابيض 1 كجم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى سكر ابيض 1 كجم",
"Product_EN": "Al Doha White Sugar 1 Kg",
"Product_Id": "00001608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6901,
"name": "الضحى سكر بودرة 1 كجم",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى سكر بودرة 1 كجم",
"Product_EN": "El Doha Powdered Sugar 1 Kg",
"Product_Id": "00001612 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6902,
"name": "حلوانى مربى مشمش لايت 380 جم",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى مشمش لايت 380 جم",
"Product_EN": "Halwani Light Apricot Jam 380 gm",
"Product_Id": "00001614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6903,
"name": "لمار مشروب تفاح 230 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب تفاح 230 مل",
"Product_EN": "Lamar Apple Drink - 230 ml",
"Product_Id": "00001616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6904,
"name": "الدلتا سكر ابيض 1 كجم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا سكر ابيض 1 كجم",
"Product_EN": "Al Delta White Sugar 1 kg",
"Product_Id": "00001617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6905,
"name": "الميزان مربى فراوله 500جم - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الميزان مربى فراوله 500جم - موقوف",
"Product_EN": null,
"Product_Id": "00001618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6906,
"name": "لمار عصير كاكا 230مل - موقوف",
"price": 3.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير كاكا 230مل - موقوف",
"Product_EN": null,
"Product_Id": "00001619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6907,
"name": "لمار مشروب ليمون نعناع 230 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب ليمون نعناع 230 مل",
"Product_EN": "Lamar Lemon Mint Drink - 230 ml ",
"Product_Id": "00001621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6908,
"name": "تايد اتوماتيك داونى 2.50 ك - موقوف",
"price": 61.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد اتوماتيك داونى 2.50 ك - موقوف",
"Product_EN": null,
"Product_Id": "00001622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6909,
"name": "لمار مشروب تفاح 1 لتر ",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب تفاح 1 لتر ",
"Product_EN": "Lamar Apple Drink 1 L",
"Product_Id": "00001623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6910,
"name": "لمار عصير كاكا 1لتر - موقوف",
"price": 13.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير كاكا 1لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6911,
"name": "اريال مسحوق يدوى ياسمين 1ك - موقوف",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 1ك - موقوف",
"Product_EN": null,
"Product_Id": "00001628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6912,
"name": "لمار مشروب ليمون نعناع 1 لتر ",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب ليمون نعناع 1 لتر ",
"Product_EN": "Lamar Lemon Mint Drink 1 L",
"Product_Id": "00001630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6913,
"name": "لمار عصير أناناس طبيعى 200 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير أناناس طبيعى 200 مل",
"Product_EN": "Lamar Pineapple Juice - 220 ml",
"Product_Id": "00001635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6914,
"name": "اريال مسحوق يدوى ياسمين 42 جم - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 42 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6915,
"name": "كوكس بيكينج بودر 12 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس بيكينج بودر 12 جم",
"Product_EN": null,
"Product_Id": "00001637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6916,
"name": "فانيليا بالسكر علبه - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانيليا بالسكر علبه - موقوف",
"Product_EN": null,
"Product_Id": "00001641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6917,
"name": "اريال مسحوق يدوى داونى 125 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى داونى 125 جم",
"Product_EN": null,
"Product_Id": "00001642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6918,
"name": "دريم فانيليا 1 جم",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم فانيليا 1 جم",
"Product_EN": "Dreem Vanilla 1 gm",
"Product_Id": "00001643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6919,
"name": "هيلثى ماء ورد 250 مل",
"price": 11.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى ماء ورد 250 مل",
"Product_EN": null,
"Product_Id": "00001645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6920,
"name": "اريال مسحوق اتوماتيك ياسمين 2.5 ك - موقوف",
"price": 98.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك ياسمين 2.5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00001647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6921,
"name": "هيلثى عصير تفاح باودر750جم - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى عصير تفاح باودر750جم - موقوف",
"Product_EN": null,
"Product_Id": "00001648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6922,
"name": "كوكس كورن فلاور 240 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:49",
"updated_at": "2021-11-01 19:45:49",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس كورن فلاور 240 جم",
"Product_EN": null,
"Product_Id": "00001649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6923,
"name": "دريم كورن فلاور 240 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كورن فلاور 240 جم",
"Product_EN": "Dreem Corn Flour 240 gm",
"Product_Id": "00001651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6924,
"name": "تانج عصير بودر مانجو برطمان 450 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تانج عصير بودر مانجو برطمان 450 جم",
"Product_EN": "Tang Mango Powder Juice 450 gm",
"Product_Id": "00001652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6925,
"name": "تانج عصير بودر برتقال ظرف 25 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تانج عصير بودر برتقال ظرف 25 جم",
"Product_EN": "Tang Orange Sachet 25 gm",
"Product_Id": "00001653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6926,
"name": "موسى مشروب شعير ليمون نعناع 330 مل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موسى مشروب شعير ليمون نعناع 330 مل",
"Product_EN": "Moussy Malt Beverage Lemon Mint 330 ml ",
"Product_Id": "00001654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6927,
"name": "تانج عصير بودر برتقال برطمان 450 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تانج عصير بودر برتقال برطمان 450 جم",
"Product_EN": "Tang Orange Juice Powder 450 gm",
"Product_Id": "00001656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6928,
"name": "موسى مشروب شعير توت مثلج 330 مل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "موسى مشروب شعير توت مثلج 330 مل",
"Product_EN": "Moussy Iced Berry Malt Drink 330 ml",
"Product_Id": "00001657 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6929,
"name": "شويبس جولد رمان كان 330 مل",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس جولد رمان كان 330 مل",
"Product_EN": "Schweppes Gold Pomegranate Can 330 ml",
"Product_Id": "00001658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6930,
"name": "شويبس جولد خوخ كان 330 مل",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس جولد خوخ كان 330 مل",
"Product_EN": "Schweppes Gold Peach Can 330 ml",
"Product_Id": "00001660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6931,
"name": "شويبس جولد اناناس كان 330 مل",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس جولد اناناس كان 330 مل",
"Product_EN": "Schweppes Gold Pineapple Can 330 ml",
"Product_Id": "00001661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6932,
"name": "فيروز رمان 330 ملى",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز رمان 330 ملى",
"Product_EN": null,
"Product_Id": "00001662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6933,
"name": "فيروز اناناس 330 مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز اناناس 330 مل",
"Product_EN": "Fayrous Pineapple 330 ml",
"Product_Id": "00001663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6934,
"name": "فيروز تفاح 330 مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز تفاح 330 مل",
"Product_EN": null,
"Product_Id": "00001666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6935,
"name": "فيروز كوكتيل330مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز كوكتيل330مل",
"Product_EN": null,
"Product_Id": "00001667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6936,
"name": "فيروز خوخ330مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز خوخ330مل",
"Product_EN": null,
"Product_Id": "00001668 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6937,
"name": "فيروز مشروب تفاح 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز مشروب تفاح 1 لتر",
"Product_EN": "",
"Product_Id": "00001669 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6938,
"name": "فيروز اناناس 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز اناناس 1 لتر",
"Product_EN": "Fayrous Pineapple 1 L",
"Product_Id": "00001670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6939,
"name": "اريال مسحوق يدوى 550 جم - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى 550 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6940,
"name": "فيروز مشروب مانجو 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز مشروب مانجو 1 لتر",
"Product_EN": null,
"Product_Id": "00001672 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6941,
"name": "سبرايت بلاستيك 2 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت بلاستيك 2 لتر",
"Product_EN": "Sprite Plastic 2 L",
"Product_Id": "00001680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6942,
"name": "فانتا برتقال بلاستيك 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا برتقال بلاستيك 1 لتر",
"Product_EN": "Fanta Plastic Orange 1 L ",
"Product_Id": "00001681 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6943,
"name": "لافاش جبنه مثلثات لايت 8 ق",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنه مثلثات لايت 8 ق",
"Product_EN": "LaVache Triangle Cheese Light 8 Pieces",
"Product_Id": "00001683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6944,
"name": "مارس شيكولاته بار 51 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مارس شيكولاته بار 51 جم",
"Product_EN": "Mars Chocolate Bar 51 gm",
"Product_Id": "00001684 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6945,
"name": "كوكاكولا 1.25 لتر - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا 1.25 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6946,
"name": "لافاش جبنة كيرى 8 ق 120 جم",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كيرى 8 ق 120 جم",
"Product_EN": "La Vache QuiRi Cheese 8 Pieces 120 gm",
"Product_Id": "00001687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6947,
"name": "تمور الوادى 550جم",
"price": 13.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمور الوادى 550جم",
"Product_EN": null,
"Product_Id": "00001689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6948,
"name": "سبرايت 1.25 لترعرض - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت 1.25 لترعرض - موقوف",
"Product_EN": null,
"Product_Id": "00001690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6949,
"name": "اريال جل اتوماتيك عطر داونى 3 لتر",
"price": 72.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال جل اتوماتيك عطر داونى 3 لتر",
"Product_EN": null,
"Product_Id": "00001691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6950,
"name": "تويكس شيكولاته 2 صباع 50 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تويكس شيكولاته 2 صباع 50 جم",
"Product_EN": "Twix chocolate 2 Bars 50 gm",
"Product_Id": "00001692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6951,
"name": "لافاش جبنة كيرى 16 ق - موقوف",
"price": 16.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كيرى 16 ق - موقوف",
"Product_EN": null,
"Product_Id": "00001693 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6952,
"name": "اريال جل اتوماتيك عطر اصلى 1.8 لتر",
"price": 47.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال جل اتوماتيك عطر اصلى 1.8 لتر",
"Product_EN": null,
"Product_Id": "00001695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6953,
"name": "سنيكرز شيكولاته بار 50 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سنيكرز شيكولاته بار 50 جم",
"Product_EN": "Snickers Chocolate Bar 50 gm",
"Product_Id": "00001696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6954,
"name": "كوكاكولا لايت - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا لايت - موقوف",
"Product_EN": null,
"Product_Id": "00001697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6955,
"name": "فانتا برتقال 355 ملى - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا برتقال 355 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00001702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6956,
"name": "برسيل جل 3ك عرض - موقوف",
"price": 64.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل 3ك عرض - موقوف",
"Product_EN": null,
"Product_Id": "00001704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6957,
"name": "كيندر شيكولاتة البيضه",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيندر شيكولاتة البيضه",
"Product_EN": null,
"Product_Id": "00001705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6958,
"name": "سبرايت ليمون 355 ملى - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت ليمون 355 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00001707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6959,
"name": "سبرايت بلاستيك 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت بلاستيك 1 لتر",
"Product_EN": "Sprite Plastic 1 L",
"Product_Id": "00001710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6960,
"name": "لافاش جبنة كيرى 32 ق",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كيرى 32 ق",
"Product_EN": "La Vache QuiRi Cheese 32 Pieces",
"Product_Id": "00001714 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6961,
"name": "كوكا كولا بلاستيك 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكا كولا بلاستيك 1 لتر",
"Product_EN": "Coca-Cola Plastic 1 L",
"Product_Id": "00001715 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6962,
"name": "فانتا فراوله 355 ملى - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا فراوله 355 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00001716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6963,
"name": "جلاكسى شوكولاتة بالحليب 20جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة بالحليب 20جم",
"Product_EN": "Galaxy Chocolate Milk 20 gm",
"Product_Id": "00001719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6964,
"name": "كيرى الجره جبنه سبريد 230 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى الجره جبنه سبريد 230 جم",
"Product_EN": "Kerry Jar Cheese Spread 230 gm",
"Product_Id": "00001721 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6965,
"name": "الطحان تمر علبه شفاف 550 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان تمر علبه شفاف 550 جم",
"Product_EN": null,
"Product_Id": "00001723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6966,
"name": "فانتا تفاح اخضر355 مل - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا تفاح اخضر355 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6967,
"name": "برسيل جل 160جم + بريل35 مل - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل 160جم + بريل35 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001729 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6968,
"name": "كوكاكولا زيرو 355 ملى - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا زيرو 355 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00001730 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6969,
"name": "كوكاكولا زيرو بلاستيك 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا زيرو بلاستيك 1 لتر",
"Product_EN": "Coca-Cola Zero Plastic 1 L",
"Product_Id": "00001732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6970,
"name": "فانتا تفاح اخضر بلاستيك 1 لتر - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا تفاح اخضر بلاستيك 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001734 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6971,
"name": "كيرى لبنه كريمى 350 جم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى لبنه كريمى 350 جم",
"Product_EN": "Kiri Cream Labneh 350 gm",
"Product_Id": "00001735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6972,
"name": "برسيل جل اتوماتيك اخضر 1 كجم",
"price": 34.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك اخضر 1 كجم",
"Product_EN": null,
"Product_Id": "00001738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6973,
"name": "برسيل جل 3 لتر عرض - موقوف",
"price": 96.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل 3 لتر عرض - موقوف",
"Product_EN": null,
"Product_Id": "00001739 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6974,
"name": "بيبسى بلاستيك 2 لتر",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى بلاستيك 2 لتر",
"Product_EN": "Pepsi 2 L ",
"Product_Id": "00001742 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6975,
"name": "لافاش جبنه غمس وقرمش 35 جم ",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنه غمس وقرمش 35 جم ",
"Product_EN": "La Vache QuiRi Dip & Crunch Cheese 35 gm ",
"Product_Id": "00001743 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6976,
"name": "سفن اب بلاستيك 2 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب بلاستيك 2 لتر",
"Product_EN": "7 Up 2 L",
"Product_Id": "00001745 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6977,
"name": "الطحان تمر نبته على 500جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان تمر نبته على 500جم",
"Product_EN": null,
"Product_Id": "00001746 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6978,
"name": "برسيل جل اتوماتيك ازرق 1 كجم",
"price": 34.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك ازرق 1 كجم",
"Product_EN": null,
"Product_Id": "00001747 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6979,
"name": "كيرى جبنة كريمى سبريد 200 جم",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنة كريمى سبريد 200 جم",
"Product_EN": "Kiri Spraed Creamy Cheese 200 gm",
"Product_Id": "00001749 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6980,
"name": "ميراندا تفاح اخضر بلاستيك 0.97 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا تفاح اخضر بلاستيك 0.97 لتر",
"Product_EN": null,
"Product_Id": "00001750 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6981,
"name": "برسيل جل 3 لتر عرض _ موقوف",
"price": 92.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل 3 لتر عرض _ موقوف",
"Product_EN": null,
"Product_Id": "00001751 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6982,
"name": "سفن اب دايت بلاستيك 0.97 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب دايت بلاستيك 0.97 لتر",
"Product_EN": "7 Up Free 1 L",
"Product_Id": "00001754 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6983,
"name": "لافاش جبنة كيرى 24 ق - موقوف",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كيرى 24 ق - موقوف",
"Product_EN": null,
"Product_Id": "00001755 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6984,
"name": "الطحان تمر طبق فوم 400 جم",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان تمر طبق فوم 400 جم",
"Product_EN": null,
"Product_Id": "00001756 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6985,
"name": "بيبسى بلاستيك 0.97 لتر",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى بلاستيك 0.97 لتر",
"Product_EN": "Pepsi 1 L ",
"Product_Id": "00001757 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6986,
"name": "برسيل جيل للملابس السوداء 900مل - موقوف",
"price": 25.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جيل للملابس السوداء 900مل - موقوف",
"Product_EN": null,
"Product_Id": "00001758 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6987,
"name": "فلفليتا منعم ملابس 4 لتر",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفليتا منعم ملابس 4 لتر",
"Product_EN": null,
"Product_Id": "00001760 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6988,
"name": "بيبسى دايت بلاستيك 0.97 لتر",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى دايت بلاستيك 0.97 لتر",
"Product_EN": "Pepsi Diet 1 L ",
"Product_Id": "00001761 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6989,
"name": "الطحان تمر علبة 700 جم",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطحان تمر علبة 700 جم",
"Product_EN": null,
"Product_Id": "00001762 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6990,
"name": "كيرى جبنه مربعات بالقشطه 6 ق",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مربعات بالقشطه 6 ق",
"Product_EN": "Kiri Cheese Squares Cream 6 Pieces",
"Product_Id": "00001764 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6991,
"name": "سفن اب بلاستيك 0.97 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب بلاستيك 0.97 لتر",
"Product_EN": "7 Up 1 L",
"Product_Id": "00001766 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6992,
"name": "ديتول مطهر 125 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر 125 مل",
"Product_EN": null,
"Product_Id": "00001767 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6993,
"name": "بيبسى كان 250 مل",
"price": 92,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى كان 250 مل",
"Product_EN": "Pepsi Can 250 ml ",
"Product_Id": "00001768 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6994,
"name": "كيرى جبنه مربعات بالقشطه 8 ق - موقوف",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مربعات بالقشطه 8 ق - موقوف",
"Product_EN": null,
"Product_Id": "00001769 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6995,
"name": "ديتول مطهر 250مل",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر 250مل",
"Product_EN": null,
"Product_Id": "00001770 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6996,
"name": "سفن اب كان250 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب كان250 مل",
"Product_EN": "7 Up Can 250 ml",
"Product_Id": "00001771 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6997,
"name": "ديتول مطهر 500 مل",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر 500 مل",
"Product_EN": null,
"Product_Id": "00001772 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6998,
"name": "ميراندا برتقال كان 250 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا برتقال كان 250 مل",
"Product_EN": null,
"Product_Id": "00001773 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 6999,
"name": "كيرى جبنه مربعات بالقشطه 12 ق",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مربعات بالقشطه 12 ق",
"Product_EN": "Kiri Cheese Squares Cream 12 Pieces",
"Product_Id": "00001774 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7000,
"name": "ديتول ماك صنوبر 900 مل",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول ماك صنوبر 900 مل",
"Product_EN": null,
"Product_Id": "00001775 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7001,
"name": "بيبسى بلاستيك 400 مل",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى بلاستيك 400 مل",
"Product_EN": "Pepsi 300 ml",
"Product_Id": "00001776 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7002,
"name": "كيرى جبنه مربعات بالقشطه 24 ق",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مربعات بالقشطه 24 ق",
"Product_EN": "Kiri Cheese Squares Cream 24 Pieces",
"Product_Id": "00001777 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7003,
"name": "بيبسى دايت بلاستيك 400 مل",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى دايت بلاستيك 400 مل",
"Product_EN": null,
"Product_Id": "00001778 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7004,
"name": "ديتول 4*1 ليمون 900 مل ",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول 4*1 ليمون 900 مل ",
"Product_EN": null,
"Product_Id": "00001779 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7005,
"name": "ميراندا تفاح اخضر بلاستيك 400 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا تفاح اخضر بلاستيك 400 مل",
"Product_EN": null,
"Product_Id": "00001781 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7006,
"name": "لافاش اورجينال جبنه مثلثات 16 ق",
"price": 30.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش اورجينال جبنه مثلثات 16 ق",
"Product_EN": "Lavash Original Cheese Triangles 16 pieces",
"Product_Id": "00001782 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7007,
"name": "الوادى تمر مفروم 400جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الوادى تمر مفروم 400جم",
"Product_EN": null,
"Product_Id": "00001783 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7008,
"name": "ميرندا برتقال بلاستيك 400 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميرندا برتقال بلاستيك 400 مل",
"Product_EN": "Mirinda Orange 400 ml",
"Product_Id": "00001784 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7009,
"name": "سفن اب بلاستيك 400 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب بلاستيك 400 مل",
"Product_EN": "7 Up 400 ml ",
"Product_Id": "00001785 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7010,
"name": "القرشى تمر الوادى 800 جم",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر الوادى 800 جم",
"Product_EN": "Al Qurashi Dates 800 gm",
"Product_Id": "00001786 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7011,
"name": "ديتول ماك لافندر 900مل",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول ماك لافندر 900مل",
"Product_EN": null,
"Product_Id": "00001787 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7012,
"name": "ديتول مطهر 500مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر 500مل",
"Product_EN": null,
"Product_Id": "00001789 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7013,
"name": "سفن اب لايت - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب لايت - موقوف",
"Product_EN": null,
"Product_Id": "00001790 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7014,
"name": "القرشى تمر طبق فوم 300 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر طبق فوم 300 جم",
"Product_EN": "Al Qurashi Dates Foam Plate 300 gm",
"Product_Id": "00001791 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7015,
"name": "ميراندا برتقال 355 مل _ موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا برتقال 355 مل _ موقوف",
"Product_EN": null,
"Product_Id": "00001792 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7016,
"name": "لافاش جبنه كيرى 32 ق",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنه كيرى 32 ق",
"Product_EN": "LaVache QuiRi Cheese 32 Pieces",
"Product_Id": "00001794 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7017,
"name": "ميراندا تفاح 355 ملى - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا تفاح 355 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00001795 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7018,
"name": "باباريو معطر لا فندر 250مل - موقوف",
"price": 17.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "باباريو معطر لا فندر 250مل - موقوف",
"Product_EN": null,
"Product_Id": "00001799 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7019,
"name": "كيرى جبنه كريمى سبريد 350 جم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه كريمى سبريد 350 جم",
"Product_EN": "Lavash Cream Cheese Spread 350 gm",
"Product_Id": "00001800 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7020,
"name": "ميراندا تفاح كان 250 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا تفاح كان 250 مل",
"Product_EN": null,
"Product_Id": "00001801 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7021,
"name": "القرشى مفروم عجوه 400 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى مفروم عجوه 400 جم",
"Product_EN": "Al Qurashi Minced Aghwa 400 gm",
"Product_Id": "00001802 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7022,
"name": "بيبسى بلاستيك 2.5 لتر - موقوف",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى بلاستيك 2.5 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001803 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7023,
"name": "بريل صابون سائل 675 جم - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل صابون سائل 675 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001804 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7024,
"name": "بيبسى كان 250 مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى كان 250 مل - موقوف",
"Product_EN": "Pepsi Can 250 ml ",
"Product_Id": "00001806 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7025,
"name": "ميراندا برتقال كان 250 مل - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا برتقال كان 250 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001807 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7026,
"name": "الشروق تمر مفروم 400جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر مفروم 400جم",
"Product_EN": "Al Shorouk Minced Dates 400 gm",
"Product_Id": "00001808 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7027,
"name": "سفن اب كان 250 مل",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب كان 250 مل",
"Product_EN": null,
"Product_Id": "00001809 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7028,
"name": "بيبسى بلاستيك 2.5 لتر",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى بلاستيك 2.5 لتر",
"Product_EN": "Pepsi 2.5 L ",
"Product_Id": "00001811 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7029,
"name": "سفن اب بلاستيك 2 لتر - موقوف",
"price": 10.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب بلاستيك 2 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001813 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7030,
"name": "فيرى مركز سائل تنطيف اطباق ليمون 450 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى مركز سائل تنطيف اطباق ليمون 450 جم",
"Product_EN": null,
"Product_Id": "00001816 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7031,
"name": "فيرى صابون الترا مركز 450 جم",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى صابون الترا مركز 450 جم",
"Product_EN": null,
"Product_Id": "00001818 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7032,
"name": "ميراندا برتقال 355 مل - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا برتقال 355 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001823 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7033,
"name": "تمور الوادى مفروم 400جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمور الوادى مفروم 400جم",
"Product_EN": null,
"Product_Id": "00001825 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7034,
"name": "بريل مزيل الدهون تفاح 675 مل - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل مزيل الدهون تفاح 675 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001827 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7035,
"name": "طيبات الوادى تمر الوادى 850 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى تمر الوادى 850 جم",
"Product_EN": "Taybat Al Wadi Dates Al Wadi 850 gm",
"Product_Id": "00001828 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7036,
"name": "تمور الوادى 750جم",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمور الوادى 750جم",
"Product_EN": null,
"Product_Id": "00001835 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7037,
"name": "اكوافينا مياة طبيعيه 600 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكوافينا مياة طبيعيه 600 مل",
"Product_EN": "Aquafina Natural Water 600 ml",
"Product_Id": "00001838 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7038,
"name": "اكوافينا مياة طبيعيه 1.5 لتر",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اكوافينا مياة طبيعيه 1.5 لتر",
"Product_EN": "Aquafina Natural Water 1.5 L",
"Product_Id": "00001840 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7039,
"name": "دسانى مياه طبيعيه 1.5 لتر",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دسانى مياه طبيعيه 1.5 لتر",
"Product_EN": "Dasani Natural Drinking Water 1.5 L",
"Product_Id": "00001843 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7040,
"name": "كواليتى فستق مملح 90 جم",
"price": 33.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى فستق مملح 90 جم",
"Product_EN": null,
"Product_Id": "00001845 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7041,
"name": "بريل منظف سائل 1.250لتر - موقوف",
"price": 18.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف سائل 1.250لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001847 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7042,
"name": "رويال اعشاب نعناع 12 فلتر",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب نعناع 12 فلتر",
"Product_EN": "Royal Mint Herbs 12 Bags",
"Product_Id": "00001849 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7043,
"name": "بريل منظف ليمون 3 لتر - موقوف",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف ليمون 3 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001850 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7044,
"name": "رويال اعشاب كركديه 12 فلتر + 3 فلتر",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب كركديه 12 فلتر + 3 فلتر",
"Product_EN": "Royal Hibiscus Herbs 12 Bags + 3 Bags",
"Product_Id": "00001851 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7045,
"name": "كواليتى عين جمل 90 جم",
"price": 29.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى عين جمل 90 جم",
"Product_EN": null,
"Product_Id": "00001852 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7046,
"name": "بريل منظف 3 لتر - موقوف",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف 3 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001853 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7047,
"name": "رويال كركديه 50 فلتر - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال كركديه 50 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00001854 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7048,
"name": "كواليتى بندق محمص 90 جم",
"price": 30.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى بندق محمص 90 جم",
"Product_EN": null,
"Product_Id": "00001855 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7049,
"name": "رويال نعناع 50 فلتر - موقوف",
"price": 20.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال نعناع 50 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00001856 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7050,
"name": "كواليتى بندق نى 90 جم",
"price": 27.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى بندق نى 90 جم",
"Product_EN": null,
"Product_Id": "00001859 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7051,
"name": "بريل مزيل الدهون 675 مل - موقوف",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل مزيل الدهون 675 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001860 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7052,
"name": "بريل منظف سائل ليمون 675 جم - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف سائل ليمون 675 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001861 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7053,
"name": "كواليتى لوز محمص 90 جم",
"price": 29.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى لوز محمص 90 جم",
"Product_EN": null,
"Product_Id": "00001862 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7054,
"name": "كواليتى لوز نى 90 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى لوز نى 90 جم",
"Product_EN": null,
"Product_Id": "00001863 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7055,
"name": "كواليتى كاجو 90 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى كاجو 90 جم",
"Product_EN": null,
"Product_Id": "00001865 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7056,
"name": "ايزيس اعشاب بردقوش 25 فلتر",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب بردقوش 25 فلتر",
"Product_EN": "ISIS Herbs Oregano 25 Bags",
"Product_Id": "00001866 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7057,
"name": "ايزيس ينسون ليمون12فلتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس ينسون ليمون12فلتر",
"Product_EN": "ISIS Herbs Anise Lemon 12 Bags",
"Product_Id": "00001867 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7058,
"name": "لافاش جبنه شرائح شيدر 10 ق",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنه شرائح شيدر 10 ق",
"Product_EN": "LaVache Cheddar Slices Cheese 10 Pieces",
"Product_Id": "00001868 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7059,
"name": "لافاش جبنه شرائح برجر 10 ق",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنه شرائح برجر 10 ق",
"Product_EN": "LaVache Burger Slices Cheese 10 Pieces",
"Product_Id": "00001872 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7060,
"name": "كواليتى مقرمشات صينى 90 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى مقرمشات صينى 90 جم",
"Product_EN": null,
"Product_Id": "00001873 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7061,
"name": "كواليتى سودانى اسوانى 90 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى سودانى اسوانى 90 جم",
"Product_EN": null,
"Product_Id": "00001875 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7062,
"name": "لافاش جبنه شرائح ساندوتش 10 ق",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنه شرائح ساندوتش 10 ق",
"Product_EN": "LaVache Sandwich Slices Cheese 10 Pieces",
"Product_Id": "00001876 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7063,
"name": "كواليتى لب ابيض 90 جم",
"price": 11.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى لب ابيض 90 جم",
"Product_EN": null,
"Product_Id": "00001878 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7064,
"name": "لافاش جبنة كريمى سبريد 500 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كريمى سبريد 500 جم",
"Product_EN": "LaVash Cream Cheese Spread 500 gm",
"Product_Id": "00001879 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7065,
"name": "كواليتى لب سوبر 90 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى لب سوبر 90 جم",
"Product_EN": null,
"Product_Id": "00001880 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7066,
"name": "اندومى شعريه سريعه التحضير بالخضار 75 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير بالخضار 75 جم",
"Product_EN": null,
"Product_Id": "00001881 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7067,
"name": "كواليتى جوز هند 90 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى جوز هند 90 جم",
"Product_EN": null,
"Product_Id": "00001882 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7068,
"name": "بريل منظف سائل 675 مل - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف سائل 675 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001883 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7069,
"name": "داونى فالى ديو3لتر - موقوف",
"price": 89.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى فالى ديو3لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001884 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7070,
"name": "كواليتى زبيب 170 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى زبيب 170 جم",
"Product_EN": null,
"Product_Id": "00001885 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7071,
"name": "كوكاكولا 355 ملى - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا 355 ملى - موقوف",
"Product_EN": null,
"Product_Id": "00001886 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7072,
"name": "كواليتى ذره محمصه 90 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى ذره محمصه 90 جم",
"Product_EN": null,
"Product_Id": "00001888 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7073,
"name": "احمد تى شاى افطار 100 فتلة",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى افطار 100 فتلة",
"Product_EN": "Ahmad Tea English Breakfast Tea 100 Bags",
"Product_Id": "00001890 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7074,
"name": "كواليتى مكسرات مشكله 90 جم",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى مكسرات مشكله 90 جم",
"Product_EN": null,
"Product_Id": "00001891 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7075,
"name": "لافاش جبنة بالقشطة سبريد 200 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة بالقشطة سبريد 200 جم",
"Product_EN": "LaVash Cream Cheese Spread 200 gm",
"Product_Id": "00001893 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7076,
"name": "ليدى بيرد جبنه ريكفورد مثلث 100 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ليدى بيرد جبنه ريكفورد مثلث 100 جم",
"Product_EN": "Lady Bird Roquefort Cheese 100 gm",
"Product_Id": "00001895 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7077,
"name": "لافاش جبنة كريمى سبريد 350 جم - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كريمى سبريد 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001897 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7078,
"name": "نسكويك كرات الحبوب بطعم الشيكولاته 180 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك كرات الحبوب بطعم الشيكولاته 180 جم",
"Product_EN": null,
"Product_Id": "00001898 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7079,
"name": "فونتى سردين بارد 125 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فونتى سردين بارد 125 جم",
"Product_EN": null,
"Product_Id": "00001900 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7080,
"name": "لافاش جبنة شيدر سبريد 200 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة شيدر سبريد 200 جم",
"Product_EN": "LaVash Cheddar Cheese Spread 200 gm",
"Product_Id": "00001902 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7081,
"name": "فونتى سردين حار 125 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فونتى سردين حار 125 جم",
"Product_EN": null,
"Product_Id": "00001903 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7082,
"name": "لافاش جبنة شيدر سبريد 350 جم",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة شيدر سبريد 350 جم",
"Product_EN": "LaVash Cheddar Cheese Spread 350 gm",
"Product_Id": "00001905 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7083,
"name": "لافاش اورجينال جبنة مثلثات 40 ق",
"price": 70.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش اورجينال جبنة مثلثات 40 ق",
"Product_EN": "LaVash Original Cheese Triangles 40 pieces",
"Product_Id": "00001908 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7084,
"name": "جنرال منظف سائل اكتف 730 مل - موقوف",
"price": 15.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال منظف سائل اكتف 730 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001909 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7085,
"name": "جنرال منظف ارضيات لافندر 730 مل",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال منظف ارضيات لافندر 730 مل",
"Product_EN": null,
"Product_Id": "00001911 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7086,
"name": "لافاش اورجينال جبنة مثلثات 48 ق",
"price": 82,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش اورجينال جبنة مثلثات 48 ق",
"Product_EN": "LaVash Original Cheese Triangles 48 pieces",
"Product_Id": "00001912 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7087,
"name": "لافاش اورجينال جبنة مثلثات 8 ق",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش اورجينال جبنة مثلثات 8 ق",
"Product_EN": "LaVash Original Cheese Triangles 8 pieces",
"Product_Id": "00001915 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7088,
"name": "ماجى مرقة دجاج 384 جم",
"price": 10.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى مرقة دجاج 384 جم",
"Product_EN": null,
"Product_Id": "00001916 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7089,
"name": "ماجى خلطة حواوشى 40 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى خلطة حواوشى 40 جم",
"Product_EN": null,
"Product_Id": "00001917 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7090,
"name": "جنرال منظف ارضيات فاكهه 730 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال منظف ارضيات فاكهه 730 جم",
"Product_EN": null,
"Product_Id": "00001918 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7091,
"name": "بريزيدون جبنة مربعات 6 ق - موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنة مربعات 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00001919 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7092,
"name": "بريزيدون جبنه سبريد شيدر كوب 240 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد شيدر كوب 240 جم",
"Product_EN": "President Spread Cheddar Cheese 240 gm",
"Product_Id": "00001922 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7093,
"name": "بريزيدون جبنه سبريد شيدر كوب 500 جم",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد شيدر كوب 500 جم",
"Product_EN": "President Spread Cheddar Cheese 500 gm",
"Product_Id": "00001924 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7094,
"name": "بريزيدون جبنه ملح خفيف تابس 500 جم",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه ملح خفيف تابس 500 جم",
"Product_EN": "President Low Salt Cheese Taps 500 gm",
"Product_Id": "00001925 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7095,
"name": "بريزيدون جبنه سبريد شيدر 900 جم",
"price": 116,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد شيدر 900 جم",
"Product_EN": "President Spread Cheddar Cheese 900 gm",
"Product_Id": "00001928 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7096,
"name": "جنرال منظف ارضيات 730 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال منظف ارضيات 730 جم",
"Product_EN": null,
"Product_Id": "00001929 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7097,
"name": "بريزيدون جبنه سبريد قشطه 900جم",
"price": 116,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد قشطه 900جم",
"Product_EN": "President Spread Creamy Cheese 900 gm",
"Product_Id": "00001930 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7098,
"name": "كيت كات شوكولاتة فانيليا - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة فانيليا - موقوف",
"Product_EN": null,
"Product_Id": "00001932 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7099,
"name": "بريل منظف سائل 3 لتر - موقوف",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف سائل 3 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001933 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7100,
"name": "جرين لاند جبنه فيتا لايت 500 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه فيتا لايت 500 جم",
"Product_EN": "Green Land Light Feta Cheese 500 gm",
"Product_Id": "00001935 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7101,
"name": "جرين لاند جبنه قشطه 250 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه قشطه 250 جم",
"Product_EN": "Green Land Creamy Cheese 250 gm",
"Product_Id": "00001936 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7102,
"name": "بريل منظف ليمون 2.50 لتر - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف ليمون 2.50 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001938 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7103,
"name": "جرين لاند جبنه فيتا قشطه تتراباك 500 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه فيتا قشطه تتراباك 500 جم",
"Product_EN": "Green Land Feta Cheese Cream 500 gm",
"Product_Id": "00001939 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7104,
"name": "ديمه بسكويت فانليا 63جم - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت فانليا 63جم - موقوف",
"Product_EN": null,
"Product_Id": "00001944 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7105,
"name": "جرين لاند جبنه مش مخلوط 500 جم بلاستيك",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه مش مخلوط 500 جم بلاستيك",
"Product_EN": "Green Land Cheese Mesh Mixed 500 gm Plastic",
"Product_Id": "00001946 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7106,
"name": "فيرى صابون ليمون 30جم ظرف - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى صابون ليمون 30جم ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00001947 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7107,
"name": "جرين لاند جبنه فيتا 250 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه فيتا 250 جم",
"Product_EN": "Green Land Feta Cheese 250 gm",
"Product_Id": "00001948 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7108,
"name": "داونى منعم ملابس 1لتر - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم ملابس 1لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001949 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7109,
"name": "جرين لاند جبنه فيتا 500 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه فيتا 500 جم",
"Product_EN": "Green Land Feta Cheese 500 gm",
"Product_Id": "00001950 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7110,
"name": "داونى نسيم الوادى 1 لتر - موقوف",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى نسيم الوادى 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00001951 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7111,
"name": "ديمة بسكويت شيكولاتة 63جم",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمة بسكويت شيكولاتة 63جم",
"Product_EN": null,
"Product_Id": "00001952 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7112,
"name": "داونى المركز 500 مل - موقوف",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى المركز 500 مل - موقوف",
"Product_EN": null,
"Product_Id": "00001953 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7113,
"name": "كمفورت منعم ملابس زهور 1 لتر",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس زهور 1 لتر",
"Product_EN": "Comfort Floral Fabric Softener 1 L",
"Product_Id": "00001954 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7114,
"name": "المصريين جبنة فيتا 100 جم - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المصريين جبنة فيتا 100 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001955 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7115,
"name": "ديمه بسكويت برتقال 63جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت برتقال 63جم - موقوف",
"Product_EN": null,
"Product_Id": "00001956 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7116,
"name": "كمفورت منعم ملابس ازرق 1 لتر",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس ازرق 1 لتر",
"Product_EN": "Comfort Fabric Softener 1 L",
"Product_Id": "00001957 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7117,
"name": "ديمه بسكويت ريتش 280جم",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت ريتش 280جم",
"Product_EN": null,
"Product_Id": "00001961 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7118,
"name": "باندا جبنة اسطنبولى 500 جم",
"price": 11.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة اسطنبولى 500 جم",
"Product_EN": null,
"Product_Id": "00001963 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7119,
"name": "بامبرز حفاضات اطفال مقاس 2 - 10 حفاظه",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز حفاضات اطفال مقاس 2 - 10 حفاظه",
"Product_EN": null,
"Product_Id": "00001965 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7120,
"name": "دومتى جبنه ملح خفيف 900 جم",
"price": 59,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه ملح خفيف 900 جم",
"Product_EN": "Domty Low Salt Cheese 900 gm",
"Product_Id": "00001966 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7121,
"name": "دومتى جبنه ملح خفيف 400 جم",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه ملح خفيف 400 جم",
"Product_EN": "Domty Low Salt Cheese 400 gm",
"Product_Id": "00001967 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7122,
"name": "ديمه بسكويت بالتين 63جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت بالتين 63جم",
"Product_EN": null,
"Product_Id": "00001968 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7123,
"name": "بامبرز حفاضات اطفال مقاس 3 - 9 حفاظه",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز حفاضات اطفال مقاس 3 - 9 حفاظه",
"Product_EN": null,
"Product_Id": "00001970 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7124,
"name": "ديمه بسكويت بالتمر 75جم",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت بالتمر 75جم",
"Product_EN": null,
"Product_Id": "00001971 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7125,
"name": "بامبرز حفاضات اطفال مقاس 4 - 8 حفاظه",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز حفاضات اطفال مقاس 4 - 8 حفاظه",
"Product_EN": null,
"Product_Id": "00001972 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7126,
"name": "ديمه بسكويت بالشاى",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت بالشاى",
"Product_EN": null,
"Product_Id": "00001973 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7127,
"name": "ديمه بسكويت زبده 100جم - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت زبده 100جم - موقوف",
"Product_EN": null,
"Product_Id": "00001976 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7128,
"name": "ديمه بسكويت نخاله ديمه 340جم - موقوف",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت نخاله ديمه 340جم - موقوف",
"Product_EN": null,
"Product_Id": "00001978 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7129,
"name": "دومتى جبنه براميلى 500 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه براميلى 500 جم",
"Product_EN": "Domty Barameli Cheese 500 gm",
"Product_Id": "00001979 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7130,
"name": "ديمه بسكويت نيو شيكولاتة 90 جم - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت نيو شيكولاتة 90 جم - موقوف",
"Product_EN": null,
"Product_Id": "00001980 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7131,
"name": "ديمه بسكويت مالح 90جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت مالح 90جم - موقوف",
"Product_EN": null,
"Product_Id": "00001981 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7132,
"name": "دومتى جبنه فيتا 500 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا 500 جم",
"Product_EN": "Domty Feta Cheese 500 gm",
"Product_Id": "00001982 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7133,
"name": "ديمه بسكويت كمون 90جم - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت كمون 90جم - موقوف",
"Product_EN": null,
"Product_Id": "00001985 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7134,
"name": "دومتى جبنه كريمى ساده 220 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه كريمى ساده 220 جم",
"Product_EN": "Domty Plain Creamy Cheese 220 gm",
"Product_Id": "00001989 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7135,
"name": "بامرز جامبو ميدى 3*58 حفاضه",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامرز جامبو ميدى 3*58 حفاضه",
"Product_EN": null,
"Product_Id": "00001990 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7136,
"name": "دومتى جبنه كريمى زيتون 220 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه كريمى زيتون 220 جم",
"Product_EN": "Domty Creamy Cheese Olives 220 gm",
"Product_Id": "00001991 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7137,
"name": "دومتى جبنه كريمى شيدر 220 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه كريمى شيدر 220 جم",
"Product_EN": "Domty Creamy Cheddar Cheese 220 gm",
"Product_Id": "00001992 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7138,
"name": "بامبرز حفاظات اطفال مقاس 4 - 58 حفاظه ",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز حفاظات اطفال مقاس 4 - 58 حفاظه ",
"Product_EN": null,
"Product_Id": "00001993 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7139,
"name": "بامبرز جامبو جونيور 3*58 حفاضه",
"price": 163,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز جامبو جونيور 3*58 حفاضه",
"Product_EN": null,
"Product_Id": "00001995 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7140,
"name": "بامبرز حفاضات اطفال مقاس 2 - 60 حفاظه",
"price": 126,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز حفاضات اطفال مقاس 2 - 60 حفاظه",
"Product_EN": null,
"Product_Id": "00001997 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7141,
"name": "دومتى جبنه فيتا لايت 1 كجم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا لايت 1 كجم",
"Product_EN": "Domty Light Feta Cheese 1 kg",
"Product_Id": "00002001 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7142,
"name": "الويز الترا فوط صحيه ليليه طويل جدا 7 فوطه",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز الترا فوط صحيه ليليه طويل جدا 7 فوطه",
"Product_EN": null,
"Product_Id": "00002005 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7143,
"name": "الويز فوط صحيه الترا دوبل طويل 14 فوطه",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فوط صحيه الترا دوبل طويل 14 فوطه",
"Product_EN": null,
"Product_Id": "00002006 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7144,
"name": "اولويز الترا فوط صحيه طويل 8 فوطه",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز الترا فوط صحيه طويل 8 فوطه",
"Product_EN": null,
"Product_Id": "00002007 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7145,
"name": "الويز ماكس فوط صحيه عادى 8 فوطه",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ماكس فوط صحيه عادى 8 فوطه",
"Product_EN": null,
"Product_Id": "00002008 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7146,
"name": "اولويز طويل جداا 18 ق - موقوف",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز طويل جداا 18 ق - موقوف",
"Product_EN": null,
"Product_Id": "00002009 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7147,
"name": "الويز فوط صحيه ماكسى سميكه 9 فوطه",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فوط صحيه ماكسى سميكه 9 فوطه",
"Product_EN": null,
"Product_Id": "00002010 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7148,
"name": "اولويز الترا بالاجنحه 16*8 ليلي - موقوف",
"price": 11.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز الترا بالاجنحه 16*8 ليلي - موقوف",
"Product_EN": null,
"Product_Id": "00002011 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7149,
"name": "الويز طويل جدا 16 ق - موقوف",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز طويل جدا 16 ق - موقوف",
"Product_EN": null,
"Product_Id": "00002012 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7150,
"name": "اولويز الترا طويل جدا 18 ق - موقوف",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز الترا طويل جدا 18 ق - موقوف",
"Product_EN": null,
"Product_Id": "00002016 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7151,
"name": "اولويز الترا طويل جدا ليلى 16 ق - موقوف",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز الترا طويل جدا ليلى 16 ق - موقوف",
"Product_EN": null,
"Product_Id": "00002017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7152,
"name": "اولويز ماكسي الطويه دبل +2 فوطه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز ماكسي الطويه دبل +2 فوطه",
"Product_EN": null,
"Product_Id": "00002018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7153,
"name": "الويز فوط حساس وطويل 9 ق - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فوط حساس وطويل 9 ق - موقوف",
"Product_EN": null,
"Product_Id": "00002019 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7154,
"name": "ديمه بسكويت مالح جبنه 90جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت مالح جبنه 90جم - موقوف",
"Product_EN": null,
"Product_Id": "00002021 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7155,
"name": "اولويز الترا طويل 28 ق - موقوف",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز الترا طويل 28 ق - موقوف",
"Product_EN": null,
"Product_Id": "00002024 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7156,
"name": "ديمه نخاله بسكويت ديجيستيف 45 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه نخاله بسكويت ديجيستيف 45 جم",
"Product_EN": null,
"Product_Id": "00002025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7157,
"name": "حلايب جبنة فيتا 500 جم - موقوف",
"price": 11.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلايب جبنة فيتا 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00002026 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7158,
"name": "بريزيدون جبنه سبريد بلو تشيز كوب 140 جم",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد بلو تشيز كوب 140 جم",
"Product_EN": "President Spread Blue Cheese 140 gm",
"Product_Id": "00002027 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7159,
"name": "بريزيدون جبنه سبريد بلو تشيز كوب 240 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد بلو تشيز كوب 240 جم",
"Product_EN": "President Spread Blue Cheese 240 gm",
"Product_Id": "00002028 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7160,
"name": "بريزيدون جبنه مثلثات 64 ق",
"price": 112,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه مثلثات 64 ق",
"Product_EN": "President Triangle Cheese 64 Pieces",
"Product_Id": "00002029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7161,
"name": "بريزيدون جبنه فيتا بيضاء تتراباك 250 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه فيتا بيضاء تتراباك 250 جم",
"Product_EN": "President Feta Cream Cheese 250 gm",
"Product_Id": "00002030 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7162,
"name": "بريزيدون جبنه فيتا تتراباك 500 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه فيتا تتراباك 500 جم",
"Product_EN": "President Baramily Cheese 500 gm",
"Product_Id": "00002031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7163,
"name": "بريزيدون جبنه سبريد مدخن بالقشطة كوب 500 جم",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد مدخن بالقشطة كوب 500 جم",
"Product_EN": "President Spread Smoked Cream Cheese 500 gm",
"Product_Id": "00002032 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7164,
"name": "بريزيدون جبنه فيتا تابس 700 جم",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه فيتا تابس 700 جم",
"Product_EN": "President Baramily Cheese Taps 700 gm",
"Product_Id": "00002034 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7165,
"name": "كرانشى شيبسى فلفل حلو 86 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى شيبسى فلفل حلو 86 جم",
"Product_EN": null,
"Product_Id": "00008877 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7166,
"name": "كرانشى بالفراخ 86 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى بالفراخ 86 جم",
"Product_EN": null,
"Product_Id": "00008878 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7167,
"name": "كرانشى بالسجق الحار 86 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى بالسجق الحار 86 جم",
"Product_EN": null,
"Product_Id": "00008879 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7168,
"name": "كرانشى شيبسى شطه وليمون 86 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى شيبسى شطه وليمون 86 جم",
"Product_EN": null,
"Product_Id": "00008880 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7169,
"name": "كرانشى شيبسى طمااطم 86 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى شيبسى طمااطم 86 جم",
"Product_EN": null,
"Product_Id": "00008881 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7170,
"name": "شيتوس مقرمشات 30 جم فلفل",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس مقرمشات 30 جم فلفل",
"Product_EN": null,
"Product_Id": "00008882 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7171,
"name": "شيبسى بلايز طماطم وفلفل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى بلايز طماطم وفلفل",
"Product_EN": null,
"Product_Id": "00008883 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7172,
"name": "شيتوس بوب كورن جبنه خطيرة",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس بوب كورن جبنه خطيرة",
"Product_EN": null,
"Product_Id": "00008884 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7173,
"name": "جهينه زبادى طبيعى 180 جم 1+1 وقر 2 ج",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى طبيعى 180 جم 1+1 وقر 2 ج",
"Product_EN": "Juhayna Natural Yogurt 180 gm ( 1+1 ) ",
"Product_Id": "00008885 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7174,
"name": "رانى عصير برتقال حبيبات كانز 240 مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى عصير برتقال حبيبات كانز 240 مل",
"Product_EN": null,
"Product_Id": "00008886 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7175,
"name": "سويت لايف كمبوت خوخ 550 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف كمبوت خوخ 550 جم",
"Product_EN": "Sweet Life Peach Compote 550 gm",
"Product_Id": "00008887 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7176,
"name": "سويت لايف مايونيز فلفل حار 250 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف مايونيز فلفل حار 250 جم",
"Product_EN": "Sweet Life Mayonnaise Hot Chili 250 gm",
"Product_Id": "00008888 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7177,
"name": "ثرى شيفس شيش طاووق دجاج حار 400 جم",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ثرى شيفس شيش طاووق دجاج حار 400 جم",
"Product_EN": "Three Chefs Shish Tawook Chicken Spicy 400 gm",
"Product_Id": "00008889 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7178,
"name": "السبكى رقاق 500 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "السبكى رقاق 500 جم",
"Product_EN": null,
"Product_Id": "00008890 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7179,
"name": "السبكى سمبوسك 300 جم 2+1 عرض",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "السبكى سمبوسك 300 جم 2+1 عرض",
"Product_EN": null,
"Product_Id": "00008891 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7180,
"name": "بيوركس مطهرعام رائحة الصنوبر 5 لتر",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بيوركس مطهرعام رائحة الصنوبر 5 لتر",
"Product_EN": null,
"Product_Id": "00008892 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7181,
"name": "كريستال سائل اطباق ليمون اصفر 4 لتر - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كريستال سائل اطباق ليمون اصفر 4 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00008893 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7182,
"name": "رودس جبنه فيتا 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا 500 جم",
"Product_EN": "Rhodes Feta Cheese 500 gm",
"Product_Id": "00008894 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7183,
"name": "رودس جبنه اسطمبولى 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه اسطمبولى 500 جم",
"Product_EN": "Rhodes Istanbolly Cheese 500 gm",
"Product_Id": "00008895 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7184,
"name": "رودس جبنه فيتا زيتون 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا زيتون 500 جم",
"Product_EN": "Rhodes Feta Cheese Olives 500 gm",
"Product_Id": "00008896 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7185,
"name": "رودس جبنه براميلى 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه براميلى 500 جم",
"Product_EN": "Rhodes Barameli Cheese 500 gm",
"Product_Id": "00008897 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7186,
"name": "رودس جبنه ملح خفيف 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه ملح خفيف 500 جم",
"Product_EN": "Rhodes Cheese Low Salt 500 gm",
"Product_Id": "00008898 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7187,
"name": "رودس جبنه فيتا 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا 250 جم",
"Product_EN": "Rhodes Feta Cheese 250 gm",
"Product_Id": "00008899 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7188,
"name": "رودس جبنه اسطمبولى 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه اسطمبولى 250 جم",
"Product_EN": "Rhodes Istanbolly Cheese 250 gm",
"Product_Id": "00008900 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7189,
"name": "رودس جبنه فيتا زيتون 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا زيتون 250 جم",
"Product_EN": "Rhodes Feta Cheese Olives 250 gm",
"Product_Id": "00008901 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7190,
"name": "رودس جبنه براميلى 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه براميلى 250 جم",
"Product_EN": "Rhodes Barameli Cheese 250 gm",
"Product_Id": "00008902 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7191,
"name": "رودس جبنه ملح خفيف 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه ملح خفيف 250 جم",
"Product_EN": "Rhodes Cheese Low Salt 250 gm",
"Product_Id": "00008903 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7192,
"name": "رودس جبنه فيتا 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا 125 جم",
"Product_EN": "Rhodes Feta Cheese 125 gm",
"Product_Id": "00008904 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7193,
"name": "رودس جبنه فيتا زيتون 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا زيتون 125 جم",
"Product_EN": "Rhodes Feta Cheese Olives 125 gm",
"Product_Id": "00008905 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7194,
"name": "رودس جبنه اسطمبولى 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه اسطمبولى 125 جم",
"Product_EN": "Rhodes Istanbolly Cheese 125 gm",
"Product_Id": "00008906 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7195,
"name": "رودس جبنه فيتا 500 جم+رودس جبنه 250جم+ حواء مكرونه",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا 500 جم+رودس جبنه 250جم+ حواء مكرونه",
"Product_EN": "Rhodes Feta 500 gm + Cheese 250 gm + Hawaa Pasta ",
"Product_Id": "00008907 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7196,
"name": "دانون زبادى سكر 170 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى سكر 170 جم",
"Product_EN": "Danone Yogurt Sugar 170 gm",
"Product_Id": "00008909 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7197,
"name": "لواكر ويفر بكريمه الفانيليا 30 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر ويفر بكريمه الفانيليا 30 جم",
"Product_EN": null,
"Product_Id": "00008910 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7198,
"name": "اوكسى مسحوق اوتوماتيك 8 كجم",
"price": 191,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق اوتوماتيك 8 كجم",
"Product_EN": null,
"Product_Id": "00008911 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7199,
"name": "اوكسى سائل تنظيف اطباق 1 لتر",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى سائل تنظيف اطباق 1 لتر",
"Product_EN": null,
"Product_Id": "00008912 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7200,
"name": "هاينز كاتشب طماطم 850 جم ",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم 850 جم ",
"Product_EN": "Heinz ketchup 850 gm ",
"Product_Id": "00008913 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7201,
"name": "هاينز كلاسيك مايونيز 340 2ق+ هاينز خل 1 لتر هديه",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كلاسيك مايونيز 340 2ق+ هاينز خل 1 لتر هديه",
"Product_EN": "Heinz Classic Mayonnaise 310 gm 2Piece+Vinegar1 L ",
"Product_Id": "00008914 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7202,
"name": "هاينز كلاسيك مايونيز دويباك 285 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كلاسيك مايونيز دويباك 285 جم",
"Product_EN": "Heinz Classic Mayonnaise Doi Buck 310 gm",
"Product_Id": "00008915 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7203,
"name": "هاينز صلصة طماطم 360 جم+ خل 1 لتر+ بيتى ميكس 290جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصة طماطم 360 جم+ خل 1 لتر+ بيتى ميكس 290جم",
"Product_EN": "Heinz Tomato Sauce 360 gm+Vinegar 1 L+Beity 290 g ",
"Product_Id": "00008916 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7204,
"name": "نسكافيه كلاسيك قهوة سريعه التحضير باوتش 50 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه كلاسيك قهوة سريعه التحضير باوتش 50 جم",
"Product_EN": null,
"Product_Id": "00008917 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7205,
"name": "رويال جبنه جوده كمون وزن",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رويال جبنه جوده كمون وزن",
"Product_EN": null,
"Product_Id": "00008918 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7206,
"name": "جرانا بادانو جبنه ايطالى وزن",
"price": 235,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرانا بادانو جبنه ايطالى وزن",
"Product_EN": null,
"Product_Id": "00008919 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7207,
"name": "لمار حليب مُحلى بطعم الشوكولاتة 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لمار حليب مُحلى بطعم الشوكولاتة 200 مل",
"Product_EN": "LAMAR Chocolate Flavored Milk - 200 ml",
"Product_Id": "00008920 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7208,
"name": "لمار حليب مُحلى بطعم الموز 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لمار حليب مُحلى بطعم الموز 200 مل",
"Product_EN": "LAMAR Banana Flavored Milk - 200 ml",
"Product_Id": "00008921 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7209,
"name": "شنطة رمضان 2020 = 100 ج",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شنطة رمضان 2020 = 100 ج",
"Product_EN": null,
"Product_Id": "00008922 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7210,
"name": "لمار حليب مُحلى بطعم الفراولة 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لمار حليب مُحلى بطعم الفراولة 200 مل",
"Product_EN": "LAMAR Strawberry Flavored Milk - 200 ml",
"Product_Id": "00008923 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7211,
"name": "سندباد زيت خليط 650 مل",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سندباد زيت خليط 650 مل",
"Product_EN": "Sindbad Mixed Oil 650 ml",
"Product_Id": "00008924 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7212,
"name": "زاهر شنطة رمضان 2020 = 150 ج",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2020 = 150 ج",
"Product_EN": null,
"Product_Id": "00008925 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7213,
"name": "زاهر شنطة رمضان 2020 = 65 ج",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2020 = 65 ج",
"Product_EN": null,
"Product_Id": "00008926 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7214,
"name": "زاهر سمنه جاموسى طبيعي برطمان 2.8 كجم - موقوف",
"price": 420,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمنه جاموسى طبيعي برطمان 2.8 كجم - موقوف",
"Product_EN": "Zaher Natural Buffalo Ghee Jar 2.8 kg ",
"Product_Id": "00008927 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7215,
"name": "امريكانا فول سادة 400 جم 15%خصم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "امريكانا فول سادة 400 جم 15%خصم",
"Product_EN": null,
"Product_Id": "00008928 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7216,
"name": "كورنو فلات طبق شفاف بلاستيك 1كجم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات طبق شفاف بلاستيك 1كجم",
"Product_EN": null,
"Product_Id": "00008929 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7217,
"name": "جبنه شيدر احمر مستورد وزن",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جبنه شيدر احمر مستورد وزن",
"Product_EN": null,
"Product_Id": "00008930 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7218,
"name": "مارسيل شيكولاتة اسبريد 200 جم",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مارسيل شيكولاتة اسبريد 200 جم",
"Product_EN": null,
"Product_Id": "00008931 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7219,
"name": "كريستالة ارز مصرى 1كجم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستالة ارز مصرى 1كجم",
"Product_EN": "Cristal Egyptian Rice 1 Kg ",
"Product_Id": "00008932 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7220,
"name": "فاين فلافى مناديل تواليت 24 بكرة",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين فلافى مناديل تواليت 24 بكرة",
"Product_EN": null,
"Product_Id": "00008933 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7221,
"name": "فيتراك مربى فراوله صفيح 850 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله صفيح 850 جم",
"Product_EN": null,
"Product_Id": "00008934 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7222,
"name": "روتيلا دبس رمان 340 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روتيلا دبس رمان 340 جم",
"Product_EN": null,
"Product_Id": "00008937 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7223,
"name": "طيبات الوادى تمروادينا 5 كجم",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى تمروادينا 5 كجم",
"Product_EN": null,
"Product_Id": "00008938 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7224,
"name": "فاين مناديل 2 بكرة مضغوط",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين مناديل 2 بكرة مضغوط",
"Product_EN": null,
"Product_Id": "00008939 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7225,
"name": "سوهاجى فلفل اسود مطحون 90 جم",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى فلفل اسود مطحون 90 جم",
"Product_EN": "Suhagy Black Pepper Powder 90 gm",
"Product_Id": "00008940 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7226,
"name": "سوهاجى كمون مطحون 90 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى كمون مطحون 90 جم",
"Product_EN": "Suhagy Cumin Powder 90 gm",
"Product_Id": "00008941 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7227,
"name": "سوهاجى كزبرة مطحون 90 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى كزبرة مطحون 90 جم",
"Product_EN": "Suhagy Coriander Powder 90 gm",
"Product_Id": "00008942 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7228,
"name": "سوهاجى بهارات لحمة 90 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سوهاجى بهارات لحمة 90 جم",
"Product_EN": "Suhagy Meat Spices 90 gm",
"Product_Id": "00008943 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7229,
"name": "ستينج مشروب طاقه فراوله زجاج 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستينج مشروب طاقه فراوله زجاج 250 مل",
"Product_EN": null,
"Product_Id": "00008944 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7230,
"name": "ستينج مشروب طاقه فراوله كان 275 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستينج مشروب طاقه فراوله كان 275 مل",
"Product_EN": null,
"Product_Id": "00008945 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7231,
"name": "سندباد زيت خليط 1 لتر",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سندباد زيت خليط 1 لتر",
"Product_EN": "Sindbad Mixed Oil 1 L",
"Product_Id": "00008946 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7232,
"name": "فايز ذره فشار 500 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فايز ذره فشار 500 جم",
"Product_EN": "Faiez Pop Corn 500 gm",
"Product_Id": "00008947 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7233,
"name": "هوت اند كرسبى بطاطس بوم فريت مجمد 1 كجم - موقوف",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هوت اند كرسبى بطاطس بوم فريت مجمد 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008948 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7234,
"name": "هوت اند كرسبى بطاطس الومت مجمد 1 كجم - موقوف",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هوت اند كرسبى بطاطس الومت مجمد 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008949 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7235,
"name": "ماما تشويس بطاطس بوم فريت مجمد 1 كجم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ماما تشويس بطاطس بوم فريت مجمد 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008950 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7236,
"name": "هوت اند كرسبى بطاطس بوم فريت مجمد 2.5 كجم - موقوف",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هوت اند كرسبى بطاطس بوم فريت مجمد 2.5 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008951 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7237,
"name": "هوت اند كرسبى بطاطس الومت مجمد 2.5 كجم - موقوف",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هوت اند كرسبى بطاطس الومت مجمد 2.5 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008952 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7238,
"name": "ماما تشويس بطاطس بوم فريت مجمد 2.5 كجم - موقوف",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ماما تشويس بطاطس بوم فريت مجمد 2.5 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008953 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7239,
"name": "دسانى مياه طبيعيه ضد الاكسده 600 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دسانى مياه طبيعيه ضد الاكسده 600 مل",
"Product_EN": "Dasani natural water against oxidation 600 ml",
"Product_Id": "00008954 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7240,
"name": "سبرايت زجاج 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت زجاج 330 مل",
"Product_EN": "Sprite Glass 330 ml",
"Product_Id": "00008956 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7241,
"name": "بيور تمر جاف 700 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور تمر جاف 700 جم",
"Product_EN": null,
"Product_Id": "00008957 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7242,
"name": "بيور تمر جاف 1600 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيور تمر جاف 1600 جم",
"Product_EN": null,
"Product_Id": "00008958 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7243,
"name": "زاهر شنطة رمضان 2020 = 115 ج",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2020 = 115 ج",
"Product_EN": null,
"Product_Id": "00008960 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7244,
"name": "طيبات الوادى تمر جاف 750 جم شنطة رمضان",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى تمر جاف 750 جم شنطة رمضان",
"Product_EN": null,
"Product_Id": "00008961 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7245,
"name": "ماما تشويس بطاطس الومت مجمد 1 كجم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ماما تشويس بطاطس الومت مجمد 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008962 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7246,
"name": "بريسيل جل اتوماتيك لافندر 3.9 كجم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريسيل جل اتوماتيك لافندر 3.9 كجم",
"Product_EN": null,
"Product_Id": "00008963 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7247,
"name": "برسيل مسحوق اتوماتيك الوان 2.5 كجم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك الوان 2.5 كجم",
"Product_EN": null,
"Product_Id": "00008964 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7248,
"name": "برسيل مسحوق يدوى لافندر 155 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى لافندر 155 جم - موقوف",
"Product_EN": null,
"Product_Id": "00008965 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7249,
"name": "زاهر ديزيرت - سينابون",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - سينابون",
"Product_EN": null,
"Product_Id": "00008966 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7250,
"name": "الطاهية بليلة جاهزة للاكل 400 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية بليلة جاهزة للاكل 400 جم",
"Product_EN": "Al Tahya Wheat Cereals Ready to Eat 400 gm",
"Product_Id": "00008968 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7251,
"name": "زاهر شنطة رمضان 2020 = 98 جنيها",
"price": 98,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2020 = 98 جنيها",
"Product_EN": null,
"Product_Id": "00008969 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7252,
"name": "توليدو مشروم شرائح 400 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو مشروم شرائح 400 جم",
"Product_EN": "Tolido Sliced Mushroom 400 gm",
"Product_Id": "00008970 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7253,
"name": "الرشيدى الميزان طحينة ظرف 30 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان طحينة ظرف 30 جم",
"Product_EN": "Al Rashidi El Mizan Tahina Wittiness 30 gm",
"Product_Id": "00008971 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7254,
"name": "زاهر شنطة رمضان 2020 = 120 جنيها",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2020 = 120 جنيها",
"Product_EN": null,
"Product_Id": "00008972 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7255,
"name": "جنى تمر مصرى عالى الجودة 3 ك - موقوف",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جنى تمر مصرى عالى الجودة 3 ك - موقوف",
"Product_EN": null,
"Product_Id": "00008974 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7256,
"name": "شهر زاد ملوخيه مجمد 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد ملوخيه مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00008975 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7257,
"name": "شهر زاد باميه اكسترا مجمد 400 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد باميه اكسترا مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00008976 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7258,
"name": "شهر زاد فاصوليا خضراء مجمد 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد فاصوليا خضراء مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00008977 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7259,
"name": "ماستر شيف سكر 1 كجم - موقوف",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماستر شيف سكر 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008978 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7260,
"name": "نستلة زبادى جولد بطعم الفسدق 100 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة زبادى جولد بطعم الفسدق 100 جم",
"Product_EN": "Nestle Gold Pistachio Yogurt 100 gm",
"Product_Id": "00008979 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7261,
"name": "نستله جو مشروب خوخ و مشمش 400 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله جو مشروب خوخ و مشمش 400 مل",
"Product_EN": "Nestle Go Peach & Apricot Drink 400 ml",
"Product_Id": "00008980 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7262,
"name": "زاهر تمر نصف جاف - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر تمر نصف جاف - موقوف",
"Product_EN": null,
"Product_Id": "00008981 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7263,
"name": "افانتى جبنه شيدر بسطرمه وزن",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى جبنه شيدر بسطرمه وزن",
"Product_EN": null,
"Product_Id": "00008983 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7264,
"name": "ميلك مان حليب كامل الدسم 850 مل",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلك مان حليب كامل الدسم 850 مل",
"Product_EN": "Milkman Full Cream Milk 850 ml",
"Product_Id": "00008984 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7265,
"name": "ميلك مان حليب خالى الدسم 850 مل",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلك مان حليب خالى الدسم 850 مل",
"Product_EN": "Milkman Skimmed Milk 850 ml",
"Product_Id": "00008985 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7266,
"name": "ميلك مان حليب بقرى مبستر كامل الدسم 270 مل",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلك مان حليب بقرى مبستر كامل الدسم 270 مل",
"Product_EN": null,
"Product_Id": "00008986 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7267,
"name": "ميلك مان حليب بقرى مبستر خالى الدسم 270 مل",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلك مان حليب بقرى مبستر خالى الدسم 270 مل",
"Product_EN": null,
"Product_Id": "00008987 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7268,
"name": "ميلكى مان كريمه لبانى 270 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلكى مان كريمه لبانى 270 مل",
"Product_EN": null,
"Product_Id": "00008988 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7269,
"name": "ميلك مان قشطة بقرى مبستر 250 مل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلك مان قشطة بقرى مبستر 250 مل",
"Product_EN": null,
"Product_Id": "00008989 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7270,
"name": "الشجرة طيبة تمر 5 ك - موقوف",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشجرة طيبة تمر 5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00008990 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7271,
"name": "تمور المدينة تمر 3 ك - موقوف",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمور المدينة تمر 3 ك - موقوف",
"Product_EN": null,
"Product_Id": "00008991 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7272,
"name": "الشجرة الطيبة تمر درجة اولى 5 كجم - موقوف",
"price": 350,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشجرة الطيبة تمر درجة اولى 5 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008992 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7273,
"name": "وطنية تمرسكرى فاكيوم 1 كجم - موقوف",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وطنية تمرسكرى فاكيوم 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00008993 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7274,
"name": "راهر شنطة رمضان 2020 = 80 جنيها",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "راهر شنطة رمضان 2020 = 80 جنيها",
"Product_EN": null,
"Product_Id": "00008994 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7275,
"name": "زاهر شمطة رمضان 2020 = 162 جنيها",
"price": 162,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شمطة رمضان 2020 = 162 جنيها",
"Product_EN": null,
"Product_Id": "00008995 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7276,
"name": "زاهر شنطة رمضان 2020 = 112 جنيها",
"price": 112,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2020 = 112 جنيها",
"Product_EN": null,
"Product_Id": "00008997 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7277,
"name": "البريمو ارز مصرى 1 كجم ",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البريمو ارز مصرى 1 كجم ",
"Product_EN": "Al Primo Egyptian Rice 1 Kg ",
"Product_Id": "00008998 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7278,
"name": "اريال يدوى ياسمين 700 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال يدوى ياسمين 700 جم",
"Product_EN": null,
"Product_Id": "00008999 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7279,
"name": "بونكس مسحوق اتوماتيك 4 كجم - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بونكس مسحوق اتوماتيك 4 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00009000 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7280,
"name": "الويز سوبر 16* 9 فوطة ",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز سوبر 16* 9 فوطة ",
"Product_EN": null,
"Product_Id": "00009001 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7281,
"name": "ميراندا برتقال بلاستيك 2.5 لتر",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا برتقال بلاستيك 2.5 لتر",
"Product_EN": null,
"Product_Id": "00009002 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7282,
"name": "اوربيان فاينست جبنه ريكفور مثلث100 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اوربيان فاينست جبنه ريكفور مثلث100 جم",
"Product_EN": null,
"Product_Id": "00009003 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7283,
"name": "جهينه زبادى طبيعى لايت 180جم 1+1 وفر 2ج",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه زبادى طبيعى لايت 180جم 1+1 وفر 2ج",
"Product_EN": "Juhayna Natural Yogurt 180 gm ( 1+1 ) ",
"Product_Id": "00009004 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7284,
"name": "سيارا دجاجه كامله مجمده 1100 جم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سيارا دجاجه كامله مجمده 1100 جم",
"Product_EN": "Seara Whole Chicken 1100 gm",
"Product_Id": "00009005 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7285,
"name": "بيبسى بلاستيك 1 لتر + 250 مل زياده",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى بلاستيك 1 لتر + 250 مل زياده",
"Product_EN": "Pepsi 2.5 L + 250 ml Free",
"Product_Id": "00009006 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7286,
"name": "لمار عصير طماطم طبيعى 200 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير طماطم طبيعى 200 مل",
"Product_EN": "Lamar Tomato Juice - 200 ml",
"Product_Id": "00009007 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7287,
"name": "لمار عصير مانجو طبيعى 200 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير مانجو طبيعى 200 مل",
"Product_EN": "Lamar Mango Juice - 200 ml",
"Product_Id": "00009008 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7288,
"name": "لمار عصير توت برى طبيعى 200 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير توت برى طبيعى 200 مل",
"Product_EN": "Lamar Cranberry Juice - 200 ml",
"Product_Id": "00009009 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7289,
"name": "زاهر ديزيرت - كنافة مانجو صنية - موقوف",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - كنافة مانجو صنية - موقوف",
"Product_EN": null,
"Product_Id": "00009010 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7290,
"name": "زاهر - بولانجير - كعك انواع500 جم - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجير - كعك انواع500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009013 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7291,
"name": "زاهر - بولانجير - كوكيز انواع 500 جم - موقوف",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجير - كوكيز انواع 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009014 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7292,
"name": "زاهر - بولانجير - بسكويت انس 400 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجير - بسكويت انس 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009015 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7293,
"name": "زاهر - بولانجير - بالميه 350 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجير - بالميه 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009016 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7294,
"name": "برانش فينو 5 ق",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برانش فينو 5 ق",
"Product_EN": null,
"Product_Id": "00009017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7295,
"name": "دومتى جبنه فيتا صفراء 1 كجم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا صفراء 1 كجم",
"Product_EN": "Domty Feta Light Cheese 1 Kg",
"Product_Id": "00009018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7296,
"name": "كافى ليون بن محوج - فاتح \/ وسط 200 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كافى ليون بن محوج - فاتح \/ وسط 200 جم",
"Product_EN": null,
"Product_Id": "00009019 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7297,
"name": "كافى ليون بن سادة - فاتح \/ وسط \/ غامق200 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كافى ليون بن سادة - فاتح \/ وسط \/ غامق200 جم",
"Product_EN": null,
"Product_Id": "00009020 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7298,
"name": "لافيدا كاتشب ظرف 9 جم * 200 ظرف - موقوف",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا كاتشب ظرف 9 جم * 200 ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00009021 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7299,
"name": "لافيدا كاتشب 200 جم - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا كاتشب 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009022 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7300,
"name": "لافيدا كاتشب 400 جم - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا كاتشب 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009023 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7301,
"name": "لافيدا مايونيز 9 جم * 150 ظرف - موقوف",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مايونيز 9 جم * 150 ظرف - موقوف",
"Product_EN": null,
"Product_Id": "00009024 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7302,
"name": "لافيدا مايونيز بارد 200 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مايونيز بارد 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7303,
"name": "لافيدا مايونيز بارد 420 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مايونيز بارد 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009026 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7304,
"name": "لافيدا مايونيز بارد 500 جم - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مايونيز بارد 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009027 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7305,
"name": "لافيدا مايونيز حار 420 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مايونيز حار 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009028 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7306,
"name": "لافيدا صوص برجر 200 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا صوص برجر 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7307,
"name": "لافيدا صوص برجر 420 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا صوص برجر 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009030 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7308,
"name": "لافيدا بكالى صوص 200 جم - موقوف",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا بكالى صوص 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7309,
"name": "مودس مسحوق شراب سوبيا 50 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مودس مسحوق شراب سوبيا 50 جم",
"Product_EN": null,
"Product_Id": "00009032 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7310,
"name": "لافيدا بكالى صوص 420 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا بكالى صوص 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009033 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7311,
"name": "لافيدا مسطردة 200 جم - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مسطردة 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009034 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7312,
"name": "لافيدا مسطردة 400 جم - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مسطردة 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009035 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7313,
"name": "لافيدا مسطردة بالعسل 200 جم - موقوف",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مسطردة بالعسل 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009036 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7314,
"name": "لافيدا مسطردة بالعسل 420 جم - موقوف",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مسطردة بالعسل 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009037 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7315,
"name": "لافيدا هوت صوص 88 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا هوت صوص 88 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009038 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7316,
"name": "لافيدا باربيكيو صوص 200 جم - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا باربيكيو صوص 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009039 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7317,
"name": "لافيدا باربيكيو صوص 400 جم - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا باربيكيو صوص 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009040 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7318,
"name": "بيتزا صوص 200 جم - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتزا صوص 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009041 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7319,
"name": "بيتزا صوص 420 جم - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتزا صوص 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009042 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7320,
"name": "لافيدا رانش صوص 200 جم - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا رانش صوص 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009043 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7321,
"name": "لافيدا رانش صوص 420 جم - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا رانش صوص 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009044 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7322,
"name": "لافيدا سبايسي تيجر 200 جم - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا سبايسي تيجر 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009045 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7323,
"name": "لافيدا سبايسي تيجر 420 جم - موقوف",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا سبايسي تيجر 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009046 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7324,
"name": "تمرى صدور سليمة مجمدة 1 ك",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمرى صدور سليمة مجمدة 1 ك",
"Product_EN": null,
"Product_Id": "00009047 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7325,
"name": "لافيدا سويت شيلى 200 جم - موقوف",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا سويت شيلى 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009048 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7326,
"name": "لافيدا سويت شيلى 420 جم - موقوف",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا سويت شيلى 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009049 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7327,
"name": "لافيدا هريسة شطة 200 جم - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا هريسة شطة 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009050 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7328,
"name": "لافيدا هريسة شطة 420 جم - موقوف",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا هريسة شطة 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009051 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7329,
"name": "لافيدا مكسيكن صوص 200 جم - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مكسيكن صوص 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009052 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7330,
"name": "لافيدا مكسيكن صوص 420 جم - موقوف",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا مكسيكن صوص 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009053 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7331,
"name": "لافيدا سوزان ايلاند 200 جم - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا سوزان ايلاند 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009054 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7332,
"name": "لافيدا صوص شيدر 200 جم - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا صوص شيدر 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7333,
"name": "لافيدا صوص شيدر 420 جم - موقوف",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا صوص شيدر 420 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009056 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7334,
"name": "لافيدا كريمة شيكولاتة بالبندق 240 جم - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا كريمة شيكولاتة بالبندق 240 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009057 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7335,
"name": "بانديتو كريمة شيكولاته 240 جم - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بانديتو كريمة شيكولاته 240 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009058 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7336,
"name": "لافيدا كريمة شيكولاتة بالبندق 1 كجم - موقوف",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لافيدا كريمة شيكولاتة بالبندق 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00009059 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7337,
"name": "دانون زبادى طبيعى 105 جم 5 ق+ 1 ق",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى 105 جم 5 ق+ 1 ق",
"Product_EN": "Danone Natural Yogurt 105 gm 5 Pieces + 1 Pieces",
"Product_Id": "00009060 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7338,
"name": "زاهر تورته ايس كريم لوتس",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم لوتس",
"Product_EN": "Zaher LOTUS Biscuit Ice Cream Torte",
"Product_Id": "00009061 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7339,
"name": "زاهر تورته ايس كريم زبادى توت",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم زبادى توت",
"Product_EN": "Zaher Raspberry Yoghert Ice Cream Torte",
"Product_Id": "00009062 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7340,
"name": "زاهر تورته ايس كريم فراوله",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم فراوله",
"Product_EN": "Zaher Strawberry Ice Cream Torte",
"Product_Id": "00009063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7341,
"name": "زاهر تورته ايس كريم مانجو",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم مانجو",
"Product_EN": "Zaher Mango Ice Cream Torte",
"Product_Id": "00009064 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7342,
"name": "زاهر تورته ايس كريم شيكولاته",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم شيكولاته",
"Product_EN": "Zaher Chocolate Ice Cream Torte",
"Product_Id": "00009065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7343,
"name": "زاهر تورته ايس كريم فورسيزون",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم فورسيزون",
"Product_EN": "Zaher Four Seasons Ice Cream Torte",
"Product_Id": "00009066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7344,
"name": "زاهر تورته ايس كريم مستكة بالفسدق",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم مستكة بالفسدق",
"Product_EN": "Zaher Mastic Pistachio Ice Cream Torte",
"Product_Id": "00009067 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7345,
"name": "زاهر كنافة سادة - 2020 - موقوف",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة سادة - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009068 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7346,
"name": "زاهر كنافة بصمه مكسرات - 2020 - موقوف",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة بصمه مكسرات - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009069 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7347,
"name": "زاهر لينزا - 2020 - موقوف",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر لينزا - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009070 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7348,
"name": "زاهر بسبوسة لوكس 1 ق - 2020 - موقوف",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة لوكس 1 ق - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7349,
"name": "بيبسى بلاك توت بلاستيك 1 تر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى بلاك توت بلاستيك 1 تر",
"Product_EN": null,
"Product_Id": "00009072 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7350,
"name": "بيبسى بلاك ليمون بلاستيك 0.97 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى بلاك ليمون بلاستيك 0.97 لتر",
"Product_EN": null,
"Product_Id": "00009073 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7351,
"name": "زاهر سمنه بقرى طبيعي برطمان 2.8 كجم - موقوف",
"price": 335,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمنه بقرى طبيعي برطمان 2.8 كجم - موقوف",
"Product_EN": "Zaher Natural Cow Ghee Jar 2.8 Kg ",
"Product_Id": "00009074 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7352,
"name": "فاست برانت - علبة نواشف بشباك",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "فاست برانت - علبة نواشف بشباك",
"Product_EN": null,
"Product_Id": "00009075 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7353,
"name": "زاهر - بولانجير - كنافة فولكانو كوب انواع - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجير - كنافة فولكانو كوب انواع - موقوف",
"Product_EN": null,
"Product_Id": "00009076 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7354,
"name": "ديتول صابون جددى نشاطك 125 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون جددى نشاطك 125 جم",
"Product_EN": null,
"Product_Id": "00009077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7355,
"name": "طيبات الوادى تمر شفاف 1.600 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى تمر شفاف 1.600 جم",
"Product_EN": null,
"Product_Id": "00009078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7356,
"name": "دانون اكتيفيا مشروب زبادى ليمون ونعناع 220 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا مشروب زبادى ليمون ونعناع 220 جم",
"Product_EN": "Danone Activia Lemon Mint Yogurt Drink 220 gm",
"Product_Id": "00009079 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7357,
"name": "دانون سلطة زبادى خيار ونعناع 105 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون سلطة زبادى خيار ونعناع 105 جم",
"Product_EN": "Danone Cucumber & Mint Yogurt Salad 105 gm",
"Product_Id": "00009080 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7358,
"name": "زاهر - بولانجير - بيتى فور سابلية 500 جم - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجير - بيتى فور سابلية 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009081 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7359,
"name": "زاهر - بولانجير - بيتى فور شرقى 500 جم - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجير - بيتى فور شرقى 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009082 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7360,
"name": "زاهر - بولانجير - بسكويت نشادر 500 جم - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجير - بسكويت نشادر 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009083 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7361,
"name": "زاهر - بولانجير - انجليش كيك 500 جم - موقوف",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجير - انجليش كيك 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7362,
"name": "هاي جين مناديل مبلله 20 منديل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاي جين مناديل مبلله 20 منديل",
"Product_EN": null,
"Product_Id": "00009085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7363,
"name": "زينه مناديل مطبخ اقتصادى اكسترا 2 بكرة",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل مطبخ اقتصادى اكسترا 2 بكرة",
"Product_EN": null,
"Product_Id": "00009087 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7364,
"name": "بون بوفية مانجو شرائح مجمد 400 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بون بوفية مانجو شرائح مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009088 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7365,
"name": "رودس جبنه شيدر 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه شيدر 500 جم",
"Product_EN": "Rhodes Cheddar Cheese 500 gm",
"Product_Id": "00009089 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7366,
"name": "رودس جبنه شيدر 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه شيدر 250 جم",
"Product_EN": "Rhodes Cheddar Cheese 250 gm",
"Product_Id": "00009090 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7367,
"name": "رودس جبنه قديمة 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه قديمة 250 جم",
"Product_EN": "Rhodes Old Cheese 250 gm",
"Product_Id": "00009091 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7368,
"name": "رودس جبنه قديمة 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه قديمة 500 جم",
"Product_EN": "Rhodes Old Cheese 500 gm",
"Product_Id": "00009092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7369,
"name": "رودس جبنه فيتا بالشطة 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا بالشطة 250 جم",
"Product_EN": "Rhodes Feta Cheese Spicy 250 gm",
"Product_Id": "00009093 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7370,
"name": "رودس جبنه فيتا بالشطة 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا بالشطة 500 جم",
"Product_EN": "Rhodes Feta Cheese Spicy 500 gm",
"Product_Id": "00009094 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7371,
"name": "زاهر عصير مانجو بالبن 1 لتر - موقوف",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير مانجو بالبن 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00009095 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7372,
"name": "بريل منظف اطباق ليمون 600 مل ( موقوف )",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:50",
"updated_at": "2021-11-01 19:45:50",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق ليمون 600 مل ( موقوف )",
"Product_EN": null,
"Product_Id": "00009096 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7373,
"name": "ميتكو لانشون بسطرمة وزن - موقوف",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو لانشون بسطرمة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00009097 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7374,
"name": "شهر زاد فراوله مجمد 400 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد فراوله مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009098 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7375,
"name": "شهر زاد بروكلى مجمد 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد بروكلى مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009099 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7376,
"name": "شهر زاد شوربة خضار مجمد 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد شوربة خضار مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009100 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7377,
"name": "شهر زاد قلقاس مجمد 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد قلقاس مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009101 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7378,
"name": "شهر زاد سبانخ مجمد 400 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد سبانخ مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009102 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7379,
"name": "شهر زاد ورق عنب مجمد 250 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد ورق عنب مجمد 250 جم",
"Product_EN": null,
"Product_Id": "00009103 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7380,
"name": "شهر زاد قرنبيط مجمد 400 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد قرنبيط مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009104 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7381,
"name": "شهر زاد خرشوف مجمد 400 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد خرشوف مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009105 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7382,
"name": "شهر زاد خضار مشكل بالذره مجمد 400 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد خضار مشكل بالذره مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009106 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7383,
"name": "شهر زاد باميه زيرو مجمد 400 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد باميه زيرو مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009107 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7384,
"name": "شهر زاد باميه ممتاز مجمد 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد باميه ممتاز مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009108 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7385,
"name": "شهر زاد باميه ملوكى مجمد 400 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد باميه ملوكى مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009109 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7386,
"name": "شهر زاد بسلة ساده مجمد 400 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد بسلة ساده مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009110 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7387,
"name": "شهر زاد خضار مشكل مجمد 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهر زاد خضار مشكل مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009111 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7388,
"name": "زاهر بلح الشام وزن - 2020 - موقوف",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بلح الشام وزن - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7389,
"name": "زاهر زلابية وزن - 2020 - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زلابية وزن - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7390,
"name": "زاهر قطايف مكسرات وزن - 2020 - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر قطايف مكسرات وزن - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7391,
"name": "زاهر تورته ايس كريم كوكيز",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم كوكيز",
"Product_EN": "Zaher Cookies Ice Cream Torte",
"Product_Id": "00009117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7392,
"name": "العروسة شاى اسود 100 كيس",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العروسة شاى اسود 100 كيس",
"Product_EN": "Al Arosa Soft Black Tea 100 Raw",
"Product_Id": "00009118 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7393,
"name": "دريم كريم شانتيه 180 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كريم شانتيه 180 جم",
"Product_EN": "Dreem Whipped Topping 180 gm",
"Product_Id": "00009119 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7394,
"name": "طماطم 1 ك",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طماطم 1 ك",
"Product_EN": null,
"Product_Id": "00009120 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7395,
"name": "كارجو خيار 1 ك",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو خيار 1 ك",
"Product_EN": null,
"Product_Id": "00009121 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7396,
"name": "كارجو كوسة 1 ك - موقوف",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو كوسة 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00009122 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7397,
"name": "كارجو جزر 1 ك",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو جزر 1 ك",
"Product_EN": null,
"Product_Id": "00009125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7398,
"name": "كارجو باذنجان عروس ابيض 1 ك",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو باذنجان عروس ابيض 1 ك",
"Product_EN": null,
"Product_Id": "00009129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7399,
"name": "كارجو باذنجان عروس اسود 1 ك",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو باذنجان عروس اسود 1 ك",
"Product_EN": null,
"Product_Id": "00009130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7400,
"name": "كارجو ليمون شبكة 1 ك",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو ليمون شبكة 1 ك",
"Product_EN": null,
"Product_Id": "00009131 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7401,
"name": "كارجو ليمون شبكة 500 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو ليمون شبكة 500 جم",
"Product_EN": null,
"Product_Id": "00009132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7402,
"name": "كارجو بصل شبكة 3 ك",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو بصل شبكة 3 ك",
"Product_EN": null,
"Product_Id": "00009133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7403,
"name": "كارجو بصل شبكة 1 ك",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو بصل شبكة 1 ك",
"Product_EN": null,
"Product_Id": "00009134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7404,
"name": "كارجو ثوم صينى وزن",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو ثوم صينى وزن",
"Product_EN": null,
"Product_Id": "00009135 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7405,
"name": "كارجو فلفل رومى اخضر500 جم",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو فلفل رومى اخضر500 جم",
"Product_EN": null,
"Product_Id": "00009136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7406,
"name": "كارجو فلفل شطة خضراء 500 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو فلفل شطة خضراء 500 جم",
"Product_EN": null,
"Product_Id": "00009137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7407,
"name": "كارجو باذنجان رومى 1 ك",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو باذنجان رومى 1 ك",
"Product_EN": null,
"Product_Id": "00009138 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7408,
"name": "كارجو فلفل الوان 1 ك",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو فلفل الوان 1 ك",
"Product_EN": null,
"Product_Id": "00009139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7409,
"name": "بنجر وزن",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بنجر وزن",
"Product_EN": null,
"Product_Id": "00009140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7410,
"name": "كارجو بسلة وزن",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو بسلة وزن",
"Product_EN": null,
"Product_Id": "00009141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7411,
"name": "بامية وزن",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بامية وزن",
"Product_EN": null,
"Product_Id": "00009142 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7412,
"name": "كارجو كرومب 1 ق",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو كرومب 1 ق",
"Product_EN": null,
"Product_Id": "00009143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7413,
"name": "كابوتشا 1 ق",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كابوتشا 1 ق",
"Product_EN": null,
"Product_Id": "00009144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7414,
"name": "كارجو جنزبيل وزن - موقوف",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو جنزبيل وزن - موقوف",
"Product_EN": null,
"Product_Id": "00009145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7415,
"name": "كارجو مشروم وزن",
"price": 225,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو مشروم وزن",
"Product_EN": null,
"Product_Id": "00009146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7416,
"name": "كارجو بروكلى وزن",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو بروكلى وزن",
"Product_EN": null,
"Product_Id": "00009147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7417,
"name": "كارجو ملوخية 1 رابطة",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو ملوخية 1 رابطة",
"Product_EN": null,
"Product_Id": "00009148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7418,
"name": "كارجو بطاطس شبكة 3 ك",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو بطاطس شبكة 3 ك",
"Product_EN": null,
"Product_Id": "00009149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7419,
"name": "كارجو بطاطس شبكة 1 ك",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو بطاطس شبكة 1 ك",
"Product_EN": null,
"Product_Id": "00009150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7420,
"name": "موز بلدى وزن",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "موز بلدى وزن",
"Product_EN": null,
"Product_Id": "00009151 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7421,
"name": "خوخ مستورد وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "خوخ مستورد وزن",
"Product_EN": null,
"Product_Id": "00009152 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7422,
"name": "كنتالوب وزن",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كنتالوب وزن",
"Product_EN": null,
"Product_Id": "00009153 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7423,
"name": "كارجو يوسفى موركيت وزن",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو يوسفى موركيت وزن",
"Product_EN": null,
"Product_Id": "00009154 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7424,
"name": "كارجو بطيخ 1 ق - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو بطيخ 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00009155 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7425,
"name": "تفاح اصفر ايطالى وزن",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تفاح اصفر ايطالى وزن",
"Product_EN": null,
"Product_Id": "00009156 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7426,
"name": "تفاح اخضر وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تفاح اخضر وزن",
"Product_EN": null,
"Product_Id": "00009157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7427,
"name": "تفاح احمر ايطالى وزن",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تفاح احمر ايطالى وزن",
"Product_EN": null,
"Product_Id": "00009160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7428,
"name": "كارجو كيوى 1 ق",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو كيوى 1 ق",
"Product_EN": null,
"Product_Id": "00009161 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7429,
"name": "كارجو افوكاتو 1 ق",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو افوكاتو 1 ق",
"Product_EN": null,
"Product_Id": "00009162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7430,
"name": "كارجو ورق عنب وزن",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو ورق عنب وزن",
"Product_EN": null,
"Product_Id": "00009163 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7431,
"name": "تودو كيك بافس",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تودو كيك بافس",
"Product_EN": null,
"Product_Id": "00009164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7432,
"name": "زاهر شنطة رمضان 2020 = 83 جنيها",
"price": 83,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2020 = 83 جنيها",
"Product_EN": null,
"Product_Id": "00009165 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7433,
"name": "الشجرة عجوة وزن 10كجم - موقوف",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشجرة عجوة وزن 10كجم - موقوف",
"Product_EN": null,
"Product_Id": "00009166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7434,
"name": "الشجرة عجوة 0.400 جرام - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشجرة عجوة 0.400 جرام - موقوف",
"Product_EN": null,
"Product_Id": "00009167 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7435,
"name": "كوكى ستربس دجاج حار 1 كجم",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى ستربس دجاج حار 1 كجم",
"Product_EN": "Koki Chicken Strips Spicy 1 kg",
"Product_Id": "00009168 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7436,
"name": "زاهر تمر سكرى 500 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تمر سكرى 500 جم",
"Product_EN": "Zaher Sukkari Dates 500 g ",
"Product_Id": "00009169 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7437,
"name": "زاهر جلاش مكسرات - 2020 - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جلاش مكسرات - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7438,
"name": "فاصولياء خضراء وزن",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فاصولياء خضراء وزن",
"Product_EN": null,
"Product_Id": "00009171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7439,
"name": "فراولة بلدى وزن",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فراولة بلدى وزن",
"Product_EN": null,
"Product_Id": "00009172 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7440,
"name": "ديمة بسكويت كريمة برتقال 110 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمة بسكويت كريمة برتقال 110 جم",
"Product_EN": null,
"Product_Id": "00009173 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7441,
"name": "نايس بسكويت جوز هند 40 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نايس بسكويت جوز هند 40 جم",
"Product_EN": null,
"Product_Id": "00009174 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7442,
"name": "ديمة بسكويت قهوة 40 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمة بسكويت قهوة 40 جم",
"Product_EN": null,
"Product_Id": "00009175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7443,
"name": "ريتش ديمة يسكويت شوفان صغير",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتش ديمة يسكويت شوفان صغير",
"Product_EN": null,
"Product_Id": "00009176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7444,
"name": "ديمة كيك - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمة كيك - موقوف",
"Product_EN": null,
"Product_Id": "00009177 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7445,
"name": "ديما توفى فروتى كراميل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديما توفى فروتى كراميل",
"Product_EN": null,
"Product_Id": "00009178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7446,
"name": "ديما توفى فروتى فراولة",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديما توفى فروتى فراولة",
"Product_EN": null,
"Product_Id": "00009179 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7447,
"name": "جوسى بونبون ليمون",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جوسى بونبون ليمون",
"Product_EN": null,
"Product_Id": "00009180 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7448,
"name": "ديما جوسى بونبون فراولة",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديما جوسى بونبون فراولة",
"Product_EN": null,
"Product_Id": "00009181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7449,
"name": "كارجو مشمش وزن",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو مشمش وزن",
"Product_EN": null,
"Product_Id": "00009182 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7450,
"name": "زاهر شنطة رمضان 2020 = 88 جنيها",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2020 = 88 جنيها",
"Product_EN": null,
"Product_Id": "00009184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7451,
"name": "زاهر شنطة رمضان 2020 = 88 ج",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2020 = 88 ج",
"Product_EN": null,
"Product_Id": "00009185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7452,
"name": "زاهر كافى - عصير بطيخ",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - عصير بطيخ",
"Product_EN": null,
"Product_Id": "00009186 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7453,
"name": "سيجنال معجون اسنان مكافح التسوس 50 مل - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان مكافح التسوس 50 مل - موقوف",
"Product_EN": null,
"Product_Id": "00009187 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7454,
"name": "كنور خلطة فجيتار حار 35 جم",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطة فجيتار حار 35 جم",
"Product_EN": "Knorr Hot Vegetar 35 gm",
"Product_Id": "00009188 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7455,
"name": "كنور خلطة فجيتار عادى 35 جم",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطة فجيتار عادى 35 جم",
"Product_EN": "Knorr Vegetar 35 gm",
"Product_Id": "00009189 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7456,
"name": "كنور خلطة بشاميل 70 جم _ موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطة بشاميل 70 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00009190 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7457,
"name": "ليبتون شاى اثقل توليفة جديدة 25 فتله",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اثقل توليفة جديدة 25 فتله",
"Product_EN": "Lipton Tea Extra Strong New Blend 25 Bags",
"Product_Id": "00009191 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7458,
"name": "كنور خلطة بشاميل 70 جم - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطة بشاميل 70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009192 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7459,
"name": "لمار كريمة الخفق 1 لتر",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لمار كريمة الخفق 1 لتر",
"Product_EN": "Lamar Whipping cream 1 Liter",
"Product_Id": "00009193 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7460,
"name": "لمار كريمة الخفق 200 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لمار كريمة الخفق 200 مل",
"Product_EN": "Lamar whipping cream - 200 ml",
"Product_Id": "00009194 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7461,
"name": "لمار كريمة الطهي 1 لتر",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لمار كريمة الطهي 1 لتر",
"Product_EN": "Lamar Cooking cream 1 Liter",
"Product_Id": "00009195 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7462,
"name": "لمار كريمة الطهي 200 مل",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لمار كريمة الطهي 200 مل",
"Product_EN": "Lamar Cooking cream - 200 ml",
"Product_Id": "00009196 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7463,
"name": "ديتول اسبراى منظف للمطبخ 500 مل +اسبراى منظف حماما",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول اسبراى منظف للمطبخ 500 مل +اسبراى منظف حماما",
"Product_EN": null,
"Product_Id": "00009197 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7464,
"name": "زاهر ديزرت - شرقى مشكل 500 جم 2021",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزرت - شرقى مشكل 500 جم 2021",
"Product_EN": null,
"Product_Id": "00009198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7465,
"name": "زاهر شرقى مشكل لوكس 500 جم - علبة 2020 - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر شرقى مشكل لوكس 500 جم - علبة 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009199 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7466,
"name": "زاهر بيتى فور لوكس 750 جم - طبق 2020 - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتى فور لوكس 750 جم - طبق 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7467,
"name": "زاهر بيتى فور لوكس900 جم - طبق2020 - موقوف",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتى فور لوكس900 جم - طبق2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7468,
"name": "زاهر - بولانجير كعك عين جمل 500 جم - موقوف",
"price": 62.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجير كعك عين جمل 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009205 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7469,
"name": "زاهر - بولانجيرغريبة سادة 500 جم - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر - بولانجيرغريبة سادة 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009206 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7470,
"name": "زاهر ديزيرت - فرمة سادة 2021",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - فرمة سادة 2021",
"Product_EN": null,
"Product_Id": "00009207 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7471,
"name": "زاهر بسبوسة بالبندق - 2020 - موقوف",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة بالبندق - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7472,
"name": "زاهر ديزرت - فرمة مكسرات 2021",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزرت - فرمة مكسرات 2021",
"Product_EN": null,
"Product_Id": "00009209 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7473,
"name": "زاهر ديزرت - شرقى مشكل 1 كجم 2021",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزرت - شرقى مشكل 1 كجم 2021",
"Product_EN": null,
"Product_Id": "00009210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7474,
"name": "زاهر شرقى مشكل - علبة شفاف - 500 جم 2020 - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر شرقى مشكل - علبة شفاف - 500 جم 2020 - موقوف",
"Product_EN": " ",
"Product_Id": "00009211 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7475,
"name": "وفير سائل تنظيف اطباق ليمون 4 لتر",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وفير سائل تنظيف اطباق ليمون 4 لتر",
"Product_EN": null,
"Product_Id": "00009212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7476,
"name": "اوكسى مسحوق اوتوماتيك 3 كجم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق اوتوماتيك 3 كجم",
"Product_EN": null,
"Product_Id": "00009213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7477,
"name": "تايد مسحوق يدوى ياسمين 2 كجم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى ياسمين 2 كجم",
"Product_EN": null,
"Product_Id": "00009214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7478,
"name": "تايد مسحوق يدوى ياسمين 1.2 كجم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى ياسمين 1.2 كجم",
"Product_EN": null,
"Product_Id": "00009215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7479,
"name": "بونكس مسحوق اتوماتيك 3*1 4 كجم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بونكس مسحوق اتوماتيك 3*1 4 كجم",
"Product_EN": null,
"Product_Id": "00009216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7480,
"name": "تايد مسحوق اتوماتيك داونى 9 كجم",
"price": 198,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق اتوماتيك داونى 9 كجم",
"Product_EN": null,
"Product_Id": "00009217 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7481,
"name": "داونى مركز منعم ملابس احساس الرفاهيه 1 لتر",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز منعم ملابس احساس الرفاهيه 1 لتر",
"Product_EN": null,
"Product_Id": "00009218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7482,
"name": "تايد مسحوق يدوى ياسمين 600 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى ياسمين 600 جم",
"Product_EN": null,
"Product_Id": "00009219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7483,
"name": "زاهر بسبوسة 500 جم - علبة - 2020 - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة 500 جم - علبة - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009220 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7484,
"name": "كورونا كفرتورة شكولاتة طبخ 150 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا كفرتورة شكولاتة طبخ 150 جم",
"Product_EN": null,
"Product_Id": "00009221 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7485,
"name": "كورونا شيكولاتة اسبريد بندق 330 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة اسبريد بندق 330 جم",
"Product_EN": null,
"Product_Id": "00009222 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7486,
"name": "كورونا شيكولاتة اسبريد سادة 330 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة اسبريد سادة 330 جم",
"Product_EN": null,
"Product_Id": "00009223 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7487,
"name": "بيمبو مينى اورجينال",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيمبو مينى اورجينال",
"Product_EN": null,
"Product_Id": "00009224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7488,
"name": "زاهر حلويات كريم كراميل طاجن فخار 220 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات كريم كراميل طاجن فخار 220 جم",
"Product_EN": "Zaher Crème Caramel Pottery 220 g ",
"Product_Id": "00009225 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7489,
"name": "زاهر حلويات مهلبيه طاجن فخار 220 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات مهلبيه طاجن فخار 220 جم",
"Product_EN": "Zaher Muhallabia Pottery 220 g",
"Product_Id": "00009226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7490,
"name": "كيت كات شوكولاتة 4 اصابع 5+1 عرض",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة 4 اصابع 5+1 عرض",
"Product_EN": "Kit Kat Chocolate 4 Fingers 5+1 Offer",
"Product_Id": "00009227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7491,
"name": "كيت كات شانكى شوكولاتة 3+1 عرض",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شانكى شوكولاتة 3+1 عرض",
"Product_EN": "Kit Kat Chunky Chocolate 3+1 Offer",
"Product_Id": "00009228 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7492,
"name": "القصيم تمر سكرى سعودى 500 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القصيم تمر سكرى سعودى 500 جم",
"Product_EN": null,
"Product_Id": "00009229 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7493,
"name": "زاهر بسكويت برتقال 500 جم - 2021",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسكويت برتقال 500 جم - 2021",
"Product_EN": "Zaher Biscuits Orange 500 g ",
"Product_Id": "00009232 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7494,
"name": "كويكر شوفان 500 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويكر شوفان 500 جم",
"Product_EN": "Quaker Oats 500 gm",
"Product_Id": "00009233 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7495,
"name": "سويت لايف انصاف كمثرى 300 جم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف انصاف كمثرى 300 جم",
"Product_EN": "Sweet Life Halves Pear 300 gm",
"Product_Id": "00009234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7496,
"name": "رودس جبنه فيتا بلو تشيز 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا بلو تشيز 500 جم",
"Product_EN": "Rhodes Blue Cheese Feta 500 gm",
"Product_Id": "00009235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7497,
"name": "رودس جبنه فيتا بلوتشيز 250 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه فيتا بلوتشيز 250 جم",
"Product_EN": "Rhodes Blue Cheese Feta 250 gm",
"Product_Id": "00009236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7498,
"name": "ميتكو برجر بقرى مجمد 1250 جم 25 ق - موقوف",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو برجر بقرى مجمد 1250 جم 25 ق - موقوف",
"Product_EN": null,
"Product_Id": "00009237 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7499,
"name": "ميتكو برجر بقرى جامبو مجمد 400 جم - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو برجر بقرى جامبو مجمد 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009238 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7500,
"name": "ميتكو كفته بقرى مجمد 350 جم - موقوف",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو كفته بقرى مجمد 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009239 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7501,
"name": "ميتكو مفروم بقرى مجمد 350 جم - موقوف",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو مفروم بقرى مجمد 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7502,
"name": "ميتكو كفته بقرى داوود باشا مجمد 500 جم - موقوف",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو كفته بقرى داوود باشا مجمد 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009241 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7503,
"name": "ميتكو كوكتيل لحوم بقرى مجمد 350 جم - موقوف",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو كوكتيل لحوم بقرى مجمد 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009242 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7504,
"name": "ميتكو كوكتيل دجاج مجمد 350 جم - موقوف",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميتكو كوكتيل دجاج مجمد 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009243 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7505,
"name": "ريفولى صابون 175 جم - موقوف",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريفولى صابون 175 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009244 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7506,
"name": "زاهر طرشى بلدى مخلل طبيعى 500 جم - معلب - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر طرشى بلدى مخلل طبيعى 500 جم - معلب - موقوف",
"Product_EN": null,
"Product_Id": "00009245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7507,
"name": "المراعى كريمة طهى 500 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى كريمة طهى 500 مل",
"Product_EN": "Almarai Cooking Cream 500 gm",
"Product_Id": "00009246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7508,
"name": "بريل برميوم منظف اطباق مركز 600 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل برميوم منظف اطباق مركز 600 مل",
"Product_EN": null,
"Product_Id": "00009247 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7509,
"name": "برسيل جل اتوماتيك بلاك 2.5 لتر - موقوف",
"price": 86,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك بلاك 2.5 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00009248 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7510,
"name": "برسيل جل اتوماتيك 1 لتر",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك 1 لتر",
"Product_EN": null,
"Product_Id": "00009249 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7511,
"name": "جينرال منظف ارضيات فواكه730 مل",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف ارضيات فواكه730 مل",
"Product_EN": null,
"Product_Id": "00009250 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7512,
"name": "توينكز كيك اسفنجى الذهبى حجم كبير",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينكز كيك اسفنجى الذهبى حجم كبير",
"Product_EN": null,
"Product_Id": "00009251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7513,
"name": "زاهر علبة تورتة م 28 *28",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر علبة تورتة م 28 *28",
"Product_EN": null,
"Product_Id": "00009253 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7514,
"name": "اريال مسحوق اتوماتيك داونى 2.5 كجم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك داونى 2.5 كجم",
"Product_EN": null,
"Product_Id": "00009254 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7515,
"name": "بطيخ وزن",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بطيخ وزن",
"Product_EN": null,
"Product_Id": "00009255 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7516,
"name": "زاهر فلفل مكسيكى مخلل طبيعى بلاستيك 500 جم ",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر فلفل مكسيكى مخلل طبيعى بلاستيك 500 جم ",
"Product_EN": null,
"Product_Id": "00009260 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7517,
"name": "زاهر زيتون اخضر شرائح مخلل طبيعى بلاستيك 500 جم ",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اخضر شرائح مخلل طبيعى بلاستيك 500 جم ",
"Product_EN": "Zaher Pickled Sliced Green Olive 500 g",
"Product_Id": "00009262 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7518,
"name": "زاهر زيتون اسود شرائح مخلل طبيعى بلاستيك 500 جم ",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اسود شرائح مخلل طبيعى بلاستيك 500 جم ",
"Product_EN": null,
"Product_Id": "00009263 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7519,
"name": "زاهر زيتون اخضر سليم مخلل طبيعى بلاستيك 500 جم",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اخضر سليم مخلل طبيعى بلاستيك 500 جم",
"Product_EN": "Zaher Pickled Green Olive 500 g",
"Product_Id": "00009265 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7520,
"name": "زاهر زيتون اخضر محشى جزر مخلل طبيعى بلاستيك 500 جم",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اخضر محشى جزر مخلل طبيعى بلاستيك 500 جم",
"Product_EN": "Zaher Pickled Green Olive w Carrot 500 g",
"Product_Id": "00009266 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7521,
"name": "زاهر بصل ساده مخلل طبيعى بلاستيك 500 جم ",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بصل ساده مخلل طبيعى بلاستيك 500 جم ",
"Product_EN": "Zaher Pickled Onion 500 g",
"Product_Id": "00009268 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7522,
"name": "زاهر خيار قشه مخلل طبيعي 200 جم - معلب - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خيار قشه مخلل طبيعي 200 جم - معلب - موقوف",
"Product_EN": null,
"Product_Id": "00009270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7523,
"name": "زاهر خضروات مشكل 11 صنف مخلل طبيعى وزن - موقوف",
"price": 19.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خضروات مشكل 11 صنف مخلل طبيعى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00009273 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7524,
"name": "زاهر بوليف مشكل مخلل طبيعى بلاستيك 500 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بوليف مشكل مخلل طبيعى بلاستيك 500 جم",
"Product_EN": null,
"Product_Id": "00009274 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7525,
"name": "زاهر خضروات مشكل 11 صنف مخلل طبيعى 200 جم موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خضروات مشكل 11 صنف مخلل طبيعى 200 جم موقوف",
"Product_EN": null,
"Product_Id": "00009275 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7526,
"name": "زاهر فلفل مكسيكى مخلل طبيعى 200 جم - معلب - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر فلفل مكسيكى مخلل طبيعى 200 جم - معلب - موقوف",
"Product_EN": null,
"Product_Id": "00009276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7527,
"name": "زاهر زيتون اخضر شرائح مخلل طبيعى 200 جم - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اخضر شرائح مخلل طبيعى 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009278 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7528,
"name": "زاهر زيتون اسود شرائح مخلل طبيعى 200 جم - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اسود شرائح مخلل طبيعى 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7529,
"name": "زاهر زيتون اخضر محشى جزر مخلل طبيعى 200 جم - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اخضر محشى جزر مخلل طبيعى 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7530,
"name": "زاهر زيتون اخضر سليم مخلل طبيعى 200 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اخضر سليم مخلل طبيعى 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009281 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7531,
"name": "الويز ماكسي دبل طويل حمايه 3*1 16 فوطه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ماكسي دبل طويل حمايه 3*1 16 فوطه",
"Product_EN": null,
"Product_Id": "00014969 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7532,
"name": "الويز تريو ليلي طويل جدا حمايه 3*1 26فوطه",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز تريو ليلي طويل جدا حمايه 3*1 26فوطه",
"Product_EN": null,
"Product_Id": "00014970 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7533,
"name": "اولويز فوط صحيه طويل جدا 16 فوطه",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز فوط صحيه طويل جدا 16 فوطه",
"Product_EN": null,
"Product_Id": "00014972 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7534,
"name": "هيد شامبو نظيف وانيق 400 مل",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد شامبو نظيف وانيق 400 مل",
"Product_EN": null,
"Product_Id": "00014974 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7535,
"name": "بانتين شامبو امتزاج الطبيعه 360 مل",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو امتزاج الطبيعه 360 مل",
"Product_EN": null,
"Product_Id": "00014975 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7536,
"name": "بانتين شامبو اكثر كثافه 400 مل",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو اكثر كثافه 400 مل",
"Product_EN": null,
"Product_Id": "00014976 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7537,
"name": "بانتين شامبو عنايه يوميه 400 مل",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو عنايه يوميه 400 مل",
"Product_EN": null,
"Product_Id": "00014977 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7538,
"name": "اموس لاند بريدج * 20 ق",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اموس لاند بريدج * 20 ق",
"Product_EN": null,
"Product_Id": "00014979 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7539,
"name": "بانتين شامبو عناية مرطبة 400 مل",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو عناية مرطبة 400 مل",
"Product_EN": null,
"Product_Id": "00014980 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7540,
"name": "وطنيه صدور دجاج مدخن وزن",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه صدور دجاج مدخن وزن",
"Product_EN": "Watania Smoked Chicken Breasts - Scalable ",
"Product_Id": "00014981 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7541,
"name": "وطنيه لانشون لحم بقرى زيتون وزن",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه لانشون لحم بقرى زيتون وزن",
"Product_EN": "Watania Luncheon Beef Olive - Scalable ",
"Product_Id": "00014982 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7542,
"name": "وطنيه لانشون لحم بقرى ساده وزن",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه لانشون لحم بقرى ساده وزن",
"Product_EN": "Watania Luncheon Beef Plain - Scalable ",
"Product_Id": "00014983 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7543,
"name": "وطنيه لانشون زيتون رول 250 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه لانشون زيتون رول 250 جم",
"Product_EN": "Watania Luncheon Olives Roll 250 gm",
"Product_Id": "00014984 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7544,
"name": "وطنيه لانشون زيتون رول 500 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه لانشون زيتون رول 500 جم",
"Product_EN": "Watania Luncheon Olives Roll 500 gm",
"Product_Id": "00014985 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7545,
"name": "وطنيه لانشون رول ساده 250 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه لانشون رول ساده 250 جم",
"Product_EN": "Watania Luncheon Roll Plain 250 gm",
"Product_Id": "00014986 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7546,
"name": "وطنيه لانشون ساده رول 500 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه لانشون ساده رول 500 جم",
"Product_EN": "Watania Luncheon Roll Plain 500 gm",
"Product_Id": "00014987 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7547,
"name": "وطنيه بانيه دجاج حار 1 كجم",
"price": 87,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه بانيه دجاج حار 1 كجم",
"Product_EN": "Watania Chicken Pane Spicy 1 Kg ",
"Product_Id": "00014988 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7548,
"name": "وطنيه بانيه دجاج حار 500 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه بانيه دجاج حار 500 جم",
"Product_EN": "Watania Chicken Pane Spicy 500 gm",
"Product_Id": "00014989 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7549,
"name": "وطنيه بانيه دجاج سادة 1 كجم",
"price": 87,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه بانيه دجاج سادة 1 كجم",
"Product_EN": "Watania Chicken Pane Plain 1 kg",
"Product_Id": "00014990 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7550,
"name": "وطنيه بانيه دجاج سادة 500 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه بانيه دجاج سادة 500 جم",
"Product_EN": "Watania Chicken Pane Plain 500 gm",
"Product_Id": "00014991 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7551,
"name": "وطنيه سمبوسك دجاج حشو 400 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "وطنيه سمبوسك دجاج حشو 400 جم",
"Product_EN": "Watania Chicken Sambousek Filling 400 gm",
"Product_Id": "00014993 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7552,
"name": "الرايه دبس رمان 350 مل + سائغ صويا صوص 300 مل",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرايه دبس رمان 350 مل + سائغ صويا صوص 300 مل",
"Product_EN": null,
"Product_Id": "00014994 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7553,
"name": "سائغ خل تفاح 250 مل + سائغ ماء ورد 250 مل",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سائغ خل تفاح 250 مل + سائغ ماء ورد 250 مل",
"Product_EN": "",
"Product_Id": "00014995 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7554,
"name": "زاهر تورتة ايس كريم زبادى & اوريو",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم زبادى & اوريو",
"Product_EN": "Zaher OREO & Yogurt Ice Cream Torte",
"Product_Id": "00014996 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7555,
"name": "زاهر تورتة مينى ايس كريم مانجو",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة مينى ايس كريم مانجو",
"Product_EN": "Zaher Mango Ice Cream Mini Torte",
"Product_Id": "00014997 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7556,
"name": "زاهر تورتة مينى ايس كريم فراولة & شيكولاتة",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة مينى ايس كريم فراولة & شيكولاتة",
"Product_EN": "Zaher Chocolate & Strawberry Ice Cream Mini Torte",
"Product_Id": "00014998 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7557,
"name": "مولفكس حفاضات اطفال مقاس 3 - 80 حفاظه",
"price": 185,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس حفاضات اطفال مقاس 3 - 80 حفاظه",
"Product_EN": null,
"Product_Id": "00015000 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7558,
"name": "مولفكس حفاضات اطفال مقاس 4 - 80 حفاظه",
"price": 185,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس حفاضات اطفال مقاس 4 - 80 حفاظه",
"Product_EN": null,
"Product_Id": "00015001 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7559,
"name": "مولفكس بانتس حفاضات اطفال مقاس 6 - 48 حفاظه",
"price": 165,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس بانتس حفاضات اطفال مقاس 6 - 48 حفاظه",
"Product_EN": null,
"Product_Id": "00015003 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7560,
"name": "مولفكس بانتس حفاضات اطفال مقاس 3 - 58 حفاظه",
"price": 145,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس بانتس حفاضات اطفال مقاس 3 - 58 حفاظه",
"Product_EN": null,
"Product_Id": "00015004 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7561,
"name": "مولفكس بانتس حفاضات اطفال مقاس 4 - 58 حفاظه",
"price": 145,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس بانتس حفاضات اطفال مقاس 4 - 58 حفاظه",
"Product_EN": null,
"Product_Id": "00015005 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7562,
"name": "مولفكس حفاضات اطفال مقاس 5 - 58 حفاظه",
"price": 158,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس حفاضات اطفال مقاس 5 - 58 حفاظه",
"Product_EN": null,
"Product_Id": "00015006 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7563,
"name": "مولفكس حفاضات اطفال مقاس 6 - 50 حفاظه",
"price": 165,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس حفاضات اطفال مقاس 6 - 50 حفاظه",
"Product_EN": null,
"Product_Id": "00015007 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7564,
"name": "مولفكس حفاضات اطفال مقاس 3 - 58 حفاظه",
"price": 145,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس حفاضات اطفال مقاس 3 - 58 حفاظه",
"Product_EN": null,
"Product_Id": "00015008 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7565,
"name": "مولفكس حفاضات اطفال مقاس 4 - 58 حفاظه",
"price": 145,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس حفاضات اطفال مقاس 4 - 58 حفاظه",
"Product_EN": null,
"Product_Id": "00015009 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7566,
"name": "مولفكس حفاضات اطفال مقاس 1 - 60 حفاظه4",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس حفاضات اطفال مقاس 1 - 60 حفاظه4",
"Product_EN": null,
"Product_Id": "00015010 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7567,
"name": "مولفكس حفاضات اطفال مقاس 2 - 60 حفاظه",
"price": 118,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس حفاضات اطفال مقاس 2 - 60 حفاظه",
"Product_EN": null,
"Product_Id": "00015011 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7568,
"name": "بابيا مناديل مطبخ مضغوطه 3 رول",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بابيا مناديل مطبخ مضغوطه 3 رول",
"Product_EN": null,
"Product_Id": "00015013 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7569,
"name": "فاميليا مناديل مطبخ مضغوط 6 رول",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:51",
"updated_at": "2021-11-01 19:45:51",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاميليا مناديل مطبخ مضغوط 6 رول",
"Product_EN": null,
"Product_Id": "00015015 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7570,
"name": "فاميليا كلاسيك مناديل مطبخ 8 رول",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاميليا كلاسيك مناديل مطبخ 8 رول",
"Product_EN": null,
"Product_Id": "00015016 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7571,
"name": "بابيا ورق تواليت 12 بكره",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بابيا ورق تواليت 12 بكره",
"Product_EN": null,
"Product_Id": "00015017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7572,
"name": "فامليا ورق تواليت 12 بكره",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فامليا ورق تواليت 12 بكره",
"Product_EN": null,
"Product_Id": "00015018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7573,
"name": "ايفونى كمامات كبار سوداء 48 ق - علبة",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايفونى كمامات كبار سوداء 48 ق - علبة",
"Product_EN": null,
"Product_Id": "00015021 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7574,
"name": "اريال مسحوق يدوى ياسمين 700 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 700 جم",
"Product_EN": null,
"Product_Id": "00015024 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7575,
"name": "اريال مسحوق يدوى ياسمين 500 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 500 جم",
"Product_EN": null,
"Product_Id": "00015025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7576,
"name": "بلو ثرى ماكينه حلاقة كمفورت حصائر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بلو ثرى ماكينه حلاقة كمفورت حصائر",
"Product_EN": null,
"Product_Id": "00015026 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7577,
"name": "الويز فردى ليلى طويل جدا 16 فوطه",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فردى ليلى طويل جدا 16 فوطه",
"Product_EN": null,
"Product_Id": "00015027 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7578,
"name": "اريال مسحوق اوتوماتيك ياسمين 4 كجم",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اوتوماتيك ياسمين 4 كجم",
"Product_EN": null,
"Product_Id": "00015028 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7579,
"name": "بابيا ورق تواليت 6 بكره",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بابيا ورق تواليت 6 بكره",
"Product_EN": null,
"Product_Id": "00015029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7580,
"name": "فاميليا كلاسيك ورق تواليت 24 قطعه",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاميليا كلاسيك ورق تواليت 24 قطعه",
"Product_EN": null,
"Product_Id": "00015030 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7581,
"name": "بابيا مناديل مطبخ مضغوطه 6 رول",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بابيا مناديل مطبخ مضغوطه 6 رول",
"Product_EN": null,
"Product_Id": "00015031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7582,
"name": "مولفكس حفاضات اطفال مقاس 5 - 72 حفاظه",
"price": 193,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولفكس حفاضات اطفال مقاس 5 - 72 حفاظه",
"Product_EN": null,
"Product_Id": "00015032 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7583,
"name": "فيانسيه كريم مغذي للشعر بزيت الزيتون 275 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيانسيه كريم مغذي للشعر بزيت الزيتون 275 مل",
"Product_EN": null,
"Product_Id": "00015033 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7584,
"name": "هيرو زبدة فول سوداني كرانشي 300 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو زبدة فول سوداني كرانشي 300 جم",
"Product_EN": null,
"Product_Id": "00015034 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7585,
"name": "اكس مزيل عرق اسبراى اكسيت 150 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس مزيل عرق اسبراى اكسيت 150 مل",
"Product_EN": "AXe Spray Exit Deodorant 150 ml",
"Product_Id": "00015036 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7586,
"name": "ريكسونا مزيل عرق رجالى اكسترا كول 150 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق رجالى اكسترا كول 150 مل",
"Product_EN": "Rexona Deodorant For Men Extra Cool 150 ml",
"Product_Id": "00015037 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7587,
"name": "ريكسونا مزيل عرق رجالى ورك اوت 150 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق رجالى ورك اوت 150 مل",
"Product_EN": "Rexona Workout Women Roll Deodrant 150 ml",
"Product_Id": "00015038 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7588,
"name": "ريكسونا مزيل عرق رجالى وايت 150 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق رجالى وايت 150 مل",
"Product_EN": "Rexona Men Deodorant White 150 ml",
"Product_Id": "00015039 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7589,
"name": "ريكسونا مزيل عرق رجالى اكسترا كول 150 مل - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق رجالى اكسترا كول 150 مل - موقوف",
"Product_EN": null,
"Product_Id": "00015040 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7590,
"name": "ريسكونا مزيل عرق حريمى ورك اوت 150 مل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريسكونا مزيل عرق حريمى ورك اوت 150 مل",
"Product_EN": "Rexona Workout Women Roll Deodrant 150 ml",
"Product_Id": "00015041 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7591,
"name": "ريكسونا مزيل عرق حريمى ورك اوت 50 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق حريمى ورك اوت 50 مل",
"Product_EN": "Rexona Workout Women Roll Deodrant 50 ml",
"Product_Id": "00015042 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7592,
"name": "بامبرز بانتس حفاضات اطفال مقاس 4 - 56 حفاظه",
"price": 138,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز بانتس حفاضات اطفال مقاس 4 - 56 حفاظه",
"Product_EN": null,
"Product_Id": "00015045 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7593,
"name": "اولويز ملمس قطنى طويل جدا عرض 14 فوطه",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز ملمس قطنى طويل جدا عرض 14 فوطه",
"Product_EN": null,
"Product_Id": "00015046 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7594,
"name": "جاردينو هريسه 200 جم + جاردينو صلصه طماطم صفيح 380",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جاردينو هريسه 200 جم + جاردينو صلصه طماطم صفيح 380",
"Product_EN": null,
"Product_Id": "00015047 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7595,
"name": "جاردينو خل 500 مل + جاردينو صلصه طماطم 360جم * 2 ق",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جاردينو خل 500 مل + جاردينو صلصه طماطم 360جم * 2 ق",
"Product_EN": null,
"Product_Id": "00015048 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7596,
"name": "ريكسونا حريمى مضاد للبكتيريا 150 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا حريمى مضاد للبكتيريا 150 مل",
"Product_EN": "Rexona Women Anti-Bacterial 150 ml",
"Product_Id": "00015049 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7597,
"name": "فنش اقراص غسالات الاطباق 30 قرص",
"price": 135,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فنش اقراص غسالات الاطباق 30 قرص",
"Product_EN": null,
"Product_Id": "00015050 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7598,
"name": "ديتول مطهر 950 مل * 2 قطعه",
"price": 200,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر 950 مل * 2 قطعه",
"Product_EN": null,
"Product_Id": "00015051 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7599,
"name": "فنش مسحوق غسيل اطباق 1 كجم + مساعد شطف",
"price": 185,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فنش مسحوق غسيل اطباق 1 كجم + مساعد شطف",
"Product_EN": null,
"Product_Id": "00015052 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7600,
"name": "فنش مسحوق غسيل اطباق 1 كجم 3 ق",
"price": 270,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فنش مسحوق غسيل اطباق 1 كجم 3 ق",
"Product_EN": null,
"Product_Id": "00015053 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7601,
"name": "هاربيك بلوك تواليت 3 ق",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك بلوك تواليت 3 ق",
"Product_EN": null,
"Product_Id": "00015054 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7602,
"name": "فنش مزيل بقع بوردة 250 جرام 3 ق",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فنش مزيل بقع بوردة 250 جرام 3 ق",
"Product_EN": null,
"Product_Id": "00015055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7603,
"name": "هاربيك منظف تواليت ليمون 700 مل * 2 ق",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك منظف تواليت ليمون 700 مل * 2 ق",
"Product_EN": null,
"Product_Id": "00015056 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7604,
"name": "ديتول سائل غسيل ايدى الاصلى 200 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول سائل غسيل ايدى الاصلى 200 مل",
"Product_EN": null,
"Product_Id": "00015057 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7605,
"name": "ديتول سائل غسيل ايدى عنايه 200 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول سائل غسيل ايدى عنايه 200 مل",
"Product_EN": null,
"Product_Id": "00015058 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7606,
"name": "ديتول سائل غسيل ايدى مغذى 200 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول سائل غسيل ايدى مغذى 200 مل",
"Product_EN": null,
"Product_Id": "00015059 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7607,
"name": "جراند كافيه قهوة جولد 200 جم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراند كافيه قهوة جولد 200 جم",
"Product_EN": null,
"Product_Id": "00015060 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7608,
"name": "عطاره . خلطه بهارات حواوشى وزن",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . خلطه بهارات حواوشى وزن",
"Product_EN": "Attara Hawawshi Spice Mix - Scalable ",
"Product_Id": "00015061 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7609,
"name": "نستله فينتس رقائق شوفان مخبوزة بارميزان وثوم 36 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله فينتس رقائق شوفان مخبوزة بارميزان وثوم 36 جم",
"Product_EN": null,
"Product_Id": "00015062 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7610,
"name": "كوين رول قمامه 70*90 سم 1 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول قمامه 70*90 سم 1 كجم",
"Product_EN": null,
"Product_Id": "00015063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7611,
"name": "عطاره . بهارات بطاطس وزن",
"price": 73,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بهارات بطاطس وزن",
"Product_EN": "Attara Potato Spices - Scalable ",
"Product_Id": "00015064 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7612,
"name": "فانتا تفاح احمر كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا تفاح احمر كان 330 مل",
"Product_EN": "Fanta Red Apple Canes 330 ml",
"Product_Id": "00015065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7613,
"name": "زاهر تورتة ايس كريم شيكولاتة & مستكة",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم شيكولاتة & مستكة",
"Product_EN": "Zaher Mastic & Chocolate Ice Cream Torte ",
"Product_Id": "00015066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7614,
"name": "زاهر تورتة مينى ايس كريم شيكولاتة & مستكة",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة مينى ايس كريم شيكولاتة & مستكة",
"Product_EN": "Zaher Mastic & Chocolate Ice Cream Mini Torte ",
"Product_Id": "00015067 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7615,
"name": "زمزم سكر ابيض فاخر 1 كجم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زمزم سكر ابيض فاخر 1 كجم",
"Product_EN": null,
"Product_Id": "00015068 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7616,
"name": "اريال مسحوق اوتوماتيك الوان 4 كجم",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اوتوماتيك الوان 4 كجم",
"Product_EN": null,
"Product_Id": "00015069 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7617,
"name": "ليبتون شاى اسود مع الهيل 25 فتلة",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اسود مع الهيل 25 فتلة",
"Product_EN": "Lipton Cardamom Black Tea Bag - 25 Pieces ",
"Product_Id": "00015070 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7618,
"name": "ساندى سكر 1 كجم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ساندى سكر 1 كجم",
"Product_EN": "Sandy Sugar 1 Kg ",
"Product_Id": "00015071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7619,
"name": "هارفست صلصه طماطم برطمان 320جم 1+1 عرض",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست صلصه طماطم برطمان 320جم 1+1 عرض",
"Product_EN": null,
"Product_Id": "00015073 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7620,
"name": "اكياس ثلاجة 1 كجم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اكياس ثلاجة 1 كجم",
"Product_EN": null,
"Product_Id": "00015074 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7621,
"name": "كوب بلاستيك 14 اونز",
"price": 0.65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كوب بلاستيك 14 اونز",
"Product_EN": null,
"Product_Id": "00015077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7622,
"name": "كوب بلاستيك 16 اونز",
"price": 0.69,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كوب بلاستيك 16 اونز",
"Product_EN": null,
"Product_Id": "00015078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7623,
"name": "ويندكس ملمع زجاج لافندر 500 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ويندكس ملمع زجاج لافندر 500 مل",
"Product_EN": null,
"Product_Id": "00015081 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7624,
"name": "شنطة الخير 2021 = 110 جنيها",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شنطة الخير 2021 = 110 جنيها",
"Product_EN": null,
"Product_Id": "00015084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7625,
"name": "زاهر جبنه مش قديمه علبة 400 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه مش قديمه علبة 400 جم",
"Product_EN": "Zaher Cheese Mish Old Box 400 gm ",
"Product_Id": "00015085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7626,
"name": "طحال بقرى 1 ق",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طحال بقرى 1 ق",
"Product_EN": null,
"Product_Id": "00015086 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7627,
"name": "كوين رول اكياس تلاجة - 60 كيس 20 × 32 سم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس تلاجة - 60 كيس 20 × 32 سم",
"Product_EN": null,
"Product_Id": "00015087 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7628,
"name": "كوين رول اكياس ثلاجة - 50 كيس 25 × 40 سم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس ثلاجة - 50 كيس 25 × 40 سم",
"Product_EN": null,
"Product_Id": "00015088 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7629,
"name": "كوين رول اكياس سندوتش ميني - 50 كيس 25 × 40 سم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس سندوتش ميني - 50 كيس 25 × 40 سم",
"Product_EN": null,
"Product_Id": "00015089 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7630,
"name": "كوين رول اكياس سندوتش ميني - 60 كيس 20 × 35 سم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس سندوتش ميني - 60 كيس 20 × 35 سم",
"Product_EN": null,
"Product_Id": "00015090 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7631,
"name": "كوين رول اكياس ثلاجة ميني - 40 كيس 30 × 50 سم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس ثلاجة ميني - 40 كيس 30 × 50 سم",
"Product_EN": null,
"Product_Id": "00015091 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7632,
"name": "كوين رول اكياس ميجا مينى - 130 كيس 20 × 35 سم",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس ميجا مينى - 130 كيس 20 × 35 سم",
"Product_EN": null,
"Product_Id": "00015092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7633,
"name": "كوين رول اكياس ثلاجة ميجا ميني - 100 كيس",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس ثلاجة ميجا ميني - 100 كيس",
"Product_EN": null,
"Product_Id": "00015093 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7634,
"name": "كوين رول مفرش 15 مفرش XXL ( 130 × 180 ) سم",
"price": 35.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول مفرش 15 مفرش XXL ( 130 × 180 ) سم",
"Product_EN": null,
"Product_Id": "00015094 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7635,
"name": "كوين رول مفرش سفرة ميني - 18 مفرش 90 × 110 سم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول مفرش سفرة ميني - 18 مفرش 90 × 110 سم",
"Product_EN": null,
"Product_Id": "00015095 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7636,
"name": "كوين رول مفرش سفرة ميجا مينى - 30 مفرش 90 × 110 سم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول مفرش سفرة ميجا مينى - 30 مفرش 90 × 110 سم",
"Product_EN": null,
"Product_Id": "00015096 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7637,
"name": "كوين رول مفرش سفرة ميجا - 22 مفرش 110 × 110 سم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول مفرش سفرة ميجا - 22 مفرش 110 × 110 سم",
"Product_EN": null,
"Product_Id": "00015098 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7638,
"name": "كوين رول سجادة صلاة برائحة العود 10 ق 65 × 110 سم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول سجادة صلاة برائحة العود 10 ق 65 × 110 سم",
"Product_EN": null,
"Product_Id": "00015099 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7639,
"name": "كوين رول سجادة صلاة برائحة العود 25 ق 65 × 110 سم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول سجادة صلاة برائحة العود 25 ق 65 × 110 سم",
"Product_EN": null,
"Product_Id": "00015100 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7640,
"name": "كوين رول سجاده معطره برائحة العود 20 ق 55×65 سم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول سجاده معطره برائحة العود 20 ق 55×65 سم",
"Product_EN": null,
"Product_Id": "00015101 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7641,
"name": "كوين رول سجاده معطره برائحة العود 50 ق 55×65 سم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول سجاده معطره برائحة العود 50 ق 55×65 سم",
"Product_EN": null,
"Product_Id": "00015102 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7642,
"name": "كوين رول اكياس قمامة ميني أبيض 18 كيس 50 × 55 سم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس قمامة ميني أبيض 18 كيس 50 × 55 سم",
"Product_EN": null,
"Product_Id": "00015103 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7643,
"name": "كوين رول أكياس قمامة ميجا أبيض 30 كيس 50 × 55 سم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول أكياس قمامة ميجا أبيض 30 كيس 50 × 55 سم",
"Product_EN": null,
"Product_Id": "00015104 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7644,
"name": "كوين رول اكياس قمامة ميجا أسود 10 كيس 80 × 110 سم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس قمامة ميجا أسود 10 كيس 80 × 110 سم",
"Product_EN": null,
"Product_Id": "00015105 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7645,
"name": "كوين رول اكياس قمامة ميجا أسود 20 كيس 70 × 90 سم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس قمامة ميجا أسود 20 كيس 70 × 90 سم",
"Product_EN": null,
"Product_Id": "00015106 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7646,
"name": "كوين رول اكياس قمامة ميجا أسود 30 كيس 60 × 70 سم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس قمامة ميجا أسود 30 كيس 60 × 70 سم",
"Product_EN": null,
"Product_Id": "00015107 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7647,
"name": "كوين رول اكياس قمامة أزرق 1\\2 كيلو 60 × 70 سم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس قمامة أزرق 1\\2 كيلو 60 × 70 سم",
"Product_EN": null,
"Product_Id": "00015108 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7648,
"name": "كوين رول اكياس قمامة ازرق 1\\2 كيلو 70 × 90 سم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس قمامة ازرق 1\\2 كيلو 70 × 90 سم",
"Product_EN": null,
"Product_Id": "00015109 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7649,
"name": "كوين رول اكياس قمامة أسود 1 كيلو 60 × 70 سم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس قمامة أسود 1 كيلو 60 × 70 سم",
"Product_EN": null,
"Product_Id": "00015110 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7650,
"name": "كوين رول اكياس قمامة أسود 1 كيلو80 × 110 سم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس قمامة أسود 1 كيلو80 × 110 سم",
"Product_EN": null,
"Product_Id": "00015112 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7651,
"name": "كوين رول اكياس قمامة ميجا بلس 20 كيس 90*120 سم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس قمامة ميجا بلس 20 كيس 90*120 سم",
"Product_EN": null,
"Product_Id": "00015113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7652,
"name": "كوين اكياس برباط برائحة فانيليا 15 كيس 65× 75 سم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين اكياس برباط برائحة فانيليا 15 كيس 65× 75 سم",
"Product_EN": null,
"Product_Id": "00015114 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7653,
"name": "كوين اكياس برباط برائحة فانيليا 12 كيس 90 × 70 سم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين اكياس برباط برائحة فانيليا 12 كيس 90 × 70 سم",
"Product_EN": null,
"Product_Id": "00015115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7654,
"name": "كوين اكياس برباط برائحة الفراولة 30 كيس 45 × 50 سم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين اكياس برباط برائحة الفراولة 30 كيس 45 × 50 سم",
"Product_EN": null,
"Product_Id": "00015116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7655,
"name": "كوين اكياس برباط نايلون اسود 1 كيلو 70 × 90 سم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين اكياس برباط نايلون اسود 1 كيلو 70 × 90 سم",
"Product_EN": null,
"Product_Id": "00015117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7656,
"name": "كوين رول فويل الومنيوم 40 سم * 20 متر",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول فويل الومنيوم 40 سم * 20 متر",
"Product_EN": null,
"Product_Id": "00015118 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7657,
"name": "كوين رول غطاء بوتاجاز ثقيل 1 غطاء 5 & 6 شعله",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول غطاء بوتاجاز ثقيل 1 غطاء 5 & 6 شعله",
"Product_EN": null,
"Product_Id": "00015119 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7658,
"name": "كوين رول تغليف غذائي 30 سم * 20 متر",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول تغليف غذائي 30 سم * 20 متر",
"Product_EN": null,
"Product_Id": "00015120 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7659,
"name": "كوين رول تغليف غذائي 40 سم * 20 متر",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول تغليف غذائي 40 سم * 20 متر",
"Product_EN": null,
"Product_Id": "00015121 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7660,
"name": "كوين رول تغليف غذائي 1\\2 كيلو 35 سم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول تغليف غذائي 1\\2 كيلو 35 سم",
"Product_EN": null,
"Product_Id": "00015122 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7661,
"name": "كوين رول ورق غذائي 30 سم - 160 جرام",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول ورق غذائي 30 سم - 160 جرام",
"Product_EN": null,
"Product_Id": "00015123 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7662,
"name": "كوين اكياس حرارى للفرن صغير 25 × 38 سم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين اكياس حرارى للفرن صغير 25 × 38 سم",
"Product_EN": null,
"Product_Id": "00015125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7663,
"name": "كوين اكياس حرارى للفرن وسط 36 × 43 سم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين اكياس حرارى للفرن وسط 36 × 43 سم",
"Product_EN": null,
"Product_Id": "00015126 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7664,
"name": "كوين اكياس حرارى للفرن كبير 43 × 60 سم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين اكياس حرارى للفرن كبير 43 × 60 سم",
"Product_EN": null,
"Product_Id": "00015127 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7665,
"name": "كوين اكياس سهلة الغلق صغير 20 كيس 18 × 20 سم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين اكياس سهلة الغلق صغير 20 كيس 18 × 20 سم",
"Product_EN": null,
"Product_Id": "00015128 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7666,
"name": "كوين اكياس سهلة الغلق كبير 15 كيس 27 × 30 سم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين اكياس سهلة الغلق كبير 15 كيس 27 × 30 سم",
"Product_EN": null,
"Product_Id": "00015129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7667,
"name": "كوين كوب ماء بلاستيك ربل 50 كوب",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين كوب ماء بلاستيك ربل 50 كوب",
"Product_EN": null,
"Product_Id": "00015130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7668,
"name": "كوين كوب ماء بلاستيك 10 كوب",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين كوب ماء بلاستيك 10 كوب",
"Product_EN": null,
"Product_Id": "00015131 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7669,
"name": "كوين كوب قهوة ورقي 50 كوب",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين كوب قهوة ورقي 50 كوب",
"Product_EN": null,
"Product_Id": "00015132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7670,
"name": "كوين كوب قهوه ورقى 25 كوب",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين كوب قهوه ورقى 25 كوب",
"Product_EN": null,
"Product_Id": "00015133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7671,
"name": "كوين كوب ورقي 7 اونز - 50 كوب",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين كوب ورقي 7 اونز - 50 كوب",
"Product_EN": null,
"Product_Id": "00015134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7672,
"name": "كوين كوب ورقي 7 اونز 10 كوب",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين كوب ورقي 7 اونز 10 كوب",
"Product_EN": null,
"Product_Id": "00015135 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7673,
"name": "كوين كوب ورقي 9 اونز - 50 كوب",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين كوب ورقي 9 اونز - 50 كوب",
"Product_EN": null,
"Product_Id": "00015136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7674,
"name": "كوين كوب ورقي 9 اونز - 10 كوب",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين كوب ورقي 9 اونز - 10 كوب",
"Product_EN": null,
"Product_Id": "00015137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7675,
"name": "ساميانج نودلز كورى بنكهه بيف سبايسي 150 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ساميانج نودلز كورى بنكهه بيف سبايسي 150 جم",
"Product_EN": null,
"Product_Id": "00015138 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7676,
"name": "كوين ملاعق 10 قطعة",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين ملاعق 10 قطعة",
"Product_EN": null,
"Product_Id": "00015139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7677,
"name": "كوين شوكة 10 قطعة",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين شوكة 10 قطعة",
"Product_EN": null,
"Product_Id": "00015140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7678,
"name": "كوين سكينة 10 قطعة",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين سكينة 10 قطعة",
"Product_EN": null,
"Product_Id": "00015141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7679,
"name": "كوين مناديل مبللة 20 منديل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كوين مناديل مبللة 20 منديل",
"Product_EN": null,
"Product_Id": "00015142 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7680,
"name": "كوين مناديل مبلله 80 منديل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كوين مناديل مبلله 80 منديل",
"Product_EN": null,
"Product_Id": "00015143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7681,
"name": "بوب بلاي فشار كراميل بالملح 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بوب بلاي فشار كراميل بالملح 100 جم",
"Product_EN": null,
"Product_Id": "00015144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7682,
"name": "بوب بلاي فشار كراميل بالشيكولاته 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بوب بلاي فشار كراميل بالشيكولاته 100 جم",
"Product_EN": null,
"Product_Id": "00015145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7683,
"name": "بوب بلاي فشار كراميل بالقرفه 100 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بوب بلاي فشار كراميل بالقرفه 100 جم",
"Product_EN": null,
"Product_Id": "00015146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7684,
"name": "بوب بلاي فشار كراميل باللوز 100 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بوب بلاي فشار كراميل باللوز 100 جم",
"Product_EN": null,
"Product_Id": "00015147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7685,
"name": "مستر بوب فشار غزل بنات وكراميل 50 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مستر بوب فشار غزل بنات وكراميل 50 جم",
"Product_EN": null,
"Product_Id": "00015148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7686,
"name": "مستر بوب فشار كراميل 50 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مستر بوب فشار كراميل 50 جم",
"Product_EN": null,
"Product_Id": "00015149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7687,
"name": "مستر بوب فشار شيكولاته وكراميل 50 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مستر بوب فشار شيكولاته وكراميل 50 جم",
"Product_EN": null,
"Product_Id": "00015150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7688,
"name": "مستر بوب فشار كولا وكراميل 50 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مستر بوب فشار كولا وكراميل 50 جم",
"Product_EN": null,
"Product_Id": "00015151 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7689,
"name": "ماستر وان ليفة وجه مغربيه",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفة وجه مغربيه",
"Product_EN": null,
"Product_Id": "00015153 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7690,
"name": "ماستر وان ليفة كف وجه سورى",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفة كف وجه سورى",
"Product_EN": null,
"Product_Id": "00015156 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7691,
"name": "ماستر وان ليفة بيد خشب",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفة بيد خشب",
"Product_EN": null,
"Product_Id": "00015157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7692,
"name": "ماستر وان ليفة مستطيلة وجه سوري",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفة مستطيلة وجه سوري",
"Product_EN": null,
"Product_Id": "00015158 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7693,
"name": "ماستر وان ليفة مستطيلة وجهين",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفة مستطيلة وجهين",
"Product_EN": null,
"Product_Id": "00015159 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7694,
"name": "ماستر وان ليفة دبدوبه",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفة دبدوبه",
"Product_EN": null,
"Product_Id": "00015160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7695,
"name": "ماستر وان ليفة بيبى اشكال",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماستر وان ليفة بيبى اشكال",
"Product_EN": null,
"Product_Id": "00015161 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7696,
"name": "ستار مكرونة ودعه 400 جرام",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستار مكرونة ودعه 400 جرام",
"Product_EN": "Star Shell Pasta 400 gm ",
"Product_Id": "00015162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7697,
"name": "عافية زيت عباد شمس 2.2 لتر + 2 شاى العروسة 40 جم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافية زيت عباد شمس 2.2 لتر + 2 شاى العروسة 40 جم",
"Product_EN": "Afia Sunflower Oil 2.2 L + 2 El Arosa Tea 40 gm",
"Product_Id": "00015164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7698,
"name": "كنور فاين فودز مرقة لحمه 12 مكعب",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فاين فودز مرقة لحمه 12 مكعب",
"Product_EN": " KnorrFine Foods Meat Stock 12 Cubes",
"Product_Id": "00015165 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7699,
"name": "فانتا توت 950 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا توت 950 مل",
"Product_EN": "Fanta Blueberry 950 ml",
"Product_Id": "00015166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7700,
"name": "سبرايت 300 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت 300 مل",
"Product_EN": "Sprite 300 ml",
"Product_Id": "00015167 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7701,
"name": "فانتا برتقال 300 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا برتقال 300 مل",
"Product_EN": "Fanta Orange 300 ml",
"Product_Id": "00015168 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7702,
"name": "كورونا شيكولاته كرسبي 50 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاته كرسبي 50 جم",
"Product_EN": null,
"Product_Id": "00015169 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7703,
"name": "كورونا شيكولاته اكستر ميلك 50 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاته اكستر ميلك 50 جم",
"Product_EN": null,
"Product_Id": "00015170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7704,
"name": "كورونا شيكولاته دارك 50 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاته دارك 50 جم",
"Product_EN": null,
"Product_Id": "00015171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7705,
"name": "كورونا شيكولاته لايت 50 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاته لايت 50 جم",
"Product_EN": null,
"Product_Id": "00015172 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7706,
"name": "ماكسيل منظف تواليت برائحة نسيم البحر 700 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكسيل منظف تواليت برائحة نسيم البحر 700 مل",
"Product_EN": null,
"Product_Id": "00015175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7707,
"name": "ماكسيل منظف تواليت برائحة التفاح 700 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكسيل منظف تواليت برائحة التفاح 700 مل",
"Product_EN": null,
"Product_Id": "00015176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7708,
"name": "رويال شاى اخضر & النعناع 25 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى اخضر & النعناع 25 فلتر",
"Product_EN": "Royal Green Tea & Mint 25 Bags",
"Product_Id": "00015177 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7709,
"name": "رويال شاى اخضر 25 فلتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال شاى اخضر 25 فلتر",
"Product_EN": "Royal Green Tea 25 Bags",
"Product_Id": "00015178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7710,
"name": "دولفين تونة جولد شرائح ليمون 170 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونة جولد شرائح ليمون 170 جم",
"Product_EN": "Dolphin Gold Tuna Sliced Lemon 170 gm",
"Product_Id": "00015179 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7711,
"name": "دولفين تونة جولد شرائح مايونيز 170 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونة جولد شرائح مايونيز 170 جم",
"Product_EN": "Dolphin Tuna Gold Slice Mayonnaise 170 gm",
"Product_Id": "00015180 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7712,
"name": "صن شاين اكسبريس تونة مفتتة حار 150 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين اكسبريس تونة مفتتة حار 150 جم",
"Product_EN": "Sunshine Express Tuna Chunky Hot 150 gm",
"Product_Id": "00015181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7713,
"name": "هالى بسكويت مرشيملو فراوله 77 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هالى بسكويت مرشيملو فراوله 77 جم",
"Product_EN": null,
"Product_Id": "00015182 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7714,
"name": "توليدو اناناس شرائح 850 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو اناناس شرائح 850 جم",
"Product_EN": "Tolido Pineapple Slices 850 gm",
"Product_Id": "00015184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7715,
"name": "برسيل مسحوق يدوي ورد 1 كجم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوي ورد 1 كجم",
"Product_EN": null,
"Product_Id": "00015185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7716,
"name": "برسيل مسحوق يدوى ورد 150 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى ورد 150 جم",
"Product_EN": "Persil High Foam Powder Detergent with Rose 150gm",
"Product_Id": "00015186 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7717,
"name": "ديلى فريش دريسنج السيزر237مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش دريسنج السيزر237مل",
"Product_EN": null,
"Product_Id": "00015188 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7718,
"name": "ديلى فريش دريسنج فرنسى 237 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش دريسنج فرنسى 237 مل",
"Product_EN": null,
"Product_Id": "00015189 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7719,
"name": "ديلى فريش دريسنج ايطالية237مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش دريسنج ايطالية237مل",
"Product_EN": null,
"Product_Id": "00015190 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7720,
"name": "ديلى فريش دريسنج المزرعة237مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش دريسنج المزرعة237مل",
"Product_EN": null,
"Product_Id": "00015191 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7721,
"name": "ديلى فريش دريسنج ألف جزيرة 237 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش دريسنج ألف جزيرة 237 مل",
"Product_EN": null,
"Product_Id": "00015192 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7722,
"name": "جنرال منظف ارضيات برائحة اللافندر 730 جم - عرض",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال منظف ارضيات برائحة اللافندر 730 جم - عرض",
"Product_EN": null,
"Product_Id": "00015194 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7723,
"name": "جنرال سائل منظف ارضيات فواكة 730 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال سائل منظف ارضيات فواكة 730 جم",
"Product_EN": null,
"Product_Id": "00015195 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7724,
"name": "جنرال معطر تواليت 150 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال معطر تواليت 150 جم",
"Product_EN": null,
"Product_Id": "00015196 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7725,
"name": "عطاره . تانا ماء ورد 1 ق",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . تانا ماء ورد 1 ق",
"Product_EN": "Attara Tana Rose Water 1 Pieces ",
"Product_Id": "00015197 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7726,
"name": "عطاره . مسك انجليزى 1 ق",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مسك انجليزى 1 ق",
"Product_EN": "Attara - English musk 1 Pieces ",
"Product_Id": "00015198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7727,
"name": "عطاره . فاندى ماء ورد بخاخ 1 ق",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فاندى ماء ورد بخاخ 1 ق",
"Product_EN": "Attara - Vandy rose water 1 Pieces ",
"Product_Id": "00015200 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7728,
"name": "جولد ارز مصرى برطمان 5 كجم ",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جولد ارز مصرى برطمان 5 كجم ",
"Product_EN": "Gold Egyptian Rice Jar 5 kg",
"Product_Id": "00015201 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7729,
"name": "لاكتيل زبادي طبيعى يونانى بالجرانولا 180 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادي طبيعى يونانى بالجرانولا 180 جم",
"Product_EN": "Lactel Greek Natural Yogurt Granola 180 gm",
"Product_Id": "00015202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7730,
"name": "تيميز كورن فليكس 1000 جم",
"price": 76,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز كورن فليكس 1000 جم",
"Product_EN": "Temmy's Choco Pops 1000 gm",
"Product_Id": "00015203 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7731,
"name": "تيميز شوكو بيلو 40 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو بيلو 40 جم",
"Product_EN": "Temmy's Choco Pillow 40 gm",
"Product_Id": "00015204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7732,
"name": "ايزيس اعشاب كركديه بالقرفة 12 فلتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب كركديه بالقرفة 12 فلتر",
"Product_EN": "Isis Hibiscus & Cinnamon Herbs 12 Bags",
"Product_Id": "00015205 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7733,
"name": "ايزيس اعشاب كاموميل بالنعناع 12 فلتر",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب كاموميل بالنعناع 12 فلتر",
"Product_EN": "ISIS Chamomile & Mint Herbs 12 Bags",
"Product_Id": "00015206 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7734,
"name": "ايزيس اعشاب ينسون بالكاموميل 12 فلتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب ينسون بالكاموميل 12 فلتر",
"Product_EN": "ISIS Anise & Chamomile Herbs 12 Bags",
"Product_Id": "00015207 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7735,
"name": "ايزيس اعشاب كركديه بالقرنفل 12 فلتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب كركديه بالقرنفل 12 فلتر",
"Product_EN": "ISIS Hibiscus & Clove Herbs 12 Bags ",
"Product_Id": "00015208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7736,
"name": "ايزيس اعشاب ينسون بالنعناع 12 فلتر",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب ينسون بالنعناع 12 فلتر",
"Product_EN": "ISIS Anise & Mint Herbs 12 Bags",
"Product_Id": "00015209 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7737,
"name": "ايزيس اعشاب شمر 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب شمر 20 فلتر",
"Product_EN": "ISIS Fennel Herbs 20 Bags ",
"Product_Id": "00015210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7738,
"name": "ايزيس اعشاب حلبة 20 فتله",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب حلبة 20 فتله",
"Product_EN": "ISIS Herbs Fenugreek 20 Bags",
"Product_Id": "00015211 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7739,
"name": "ايزيس قهوة خضراء 20 فتله",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس قهوة خضراء 20 فتله",
"Product_EN": "ISIS Green Coffee 20 Bags",
"Product_Id": "00015212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7740,
"name": "ايزيس اعشاب كركدية قرفة 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب كركدية قرفة 20 فلتر",
"Product_EN": null,
"Product_Id": "00015213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7741,
"name": "زاهر سلطه كازبلانكا وزن",
"price": 99.9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطه كازبلانكا وزن",
"Product_EN": null,
"Product_Id": "00015215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7742,
"name": "زاهر ديزرت - شيكو ريزو",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزرت - شيكو ريزو",
"Product_EN": null,
"Product_Id": "00015216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7743,
"name": "مناديل جزارة 40*60 سم",
"price": 34.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "مناديل جزارة 40*60 سم",
"Product_EN": null,
"Product_Id": "00015218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7744,
"name": "بكره سوليتب 100 سم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بكره سوليتب 100 سم",
"Product_EN": null,
"Product_Id": "00015219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7745,
"name": "ايزيس اعشاب ليمون زنجبيل 50 فلتر",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب ليمون زنجبيل 50 فلتر",
"Product_EN": "ISIS Herbs lemon & Ginger 50 Bags ",
"Product_Id": "00015220 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7746,
"name": "ايزيس اعشاب مريمية 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب مريمية 20 فلتر",
"Product_EN": "ISIS Herbs Sage 20 Bags",
"Product_Id": "00015221 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7747,
"name": "ايزيس اعشاب اوراق جوافة 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب اوراق جوافة 20 فلتر",
"Product_EN": "ISIS Herbs Guava Leaves 20 Bags",
"Product_Id": "00015224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7748,
"name": "كوكس جيلى كرز 80 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس جيلى كرز 80 جم",
"Product_EN": null,
"Product_Id": "00015225 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7749,
"name": "كوكس جيلى توت 80 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكس جيلى توت 80 جم",
"Product_EN": null,
"Product_Id": "00015226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7750,
"name": "كلوركس متعدد الاستخدامات بخاخ 500 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس متعدد الاستخدامات بخاخ 500 مل",
"Product_EN": null,
"Product_Id": "00015227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7751,
"name": "كلوركس كلور ابيض 950 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس كلور ابيض 950 مل",
"Product_EN": null,
"Product_Id": "00015228 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7752,
"name": "كلوركس بودر 2 +1 250 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس بودر 2 +1 250 جم",
"Product_EN": null,
"Product_Id": "00015229 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7753,
"name": "كلوركس ابيض زهور 950 مل",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس ابيض زهور 950 مل",
"Product_EN": null,
"Product_Id": "00015230 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7754,
"name": "كلوركس منظف متعدد الاستخدامات 1.98 لتر",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف متعدد الاستخدامات 1.98 لتر",
"Product_EN": null,
"Product_Id": "00015232 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7755,
"name": "كلوركس 5*1 نسيم البحر 400 مل",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس 5*1 نسيم البحر 400 مل",
"Product_EN": null,
"Product_Id": "00015233 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7756,
"name": "كلوركس ملابس بخاخ 500 مل",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس ملابس بخاخ 500 مل",
"Product_EN": null,
"Product_Id": "00015234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7757,
"name": "ايزيس اعشاب ليمون بالجنزبيل 50 فلتر",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب ليمون بالجنزبيل 50 فلتر",
"Product_EN": "ISIS Lemon & Ginger 50 Bags",
"Product_Id": "00015235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7758,
"name": "ايزيس ستيفيا بديل السكر 25 كيس",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس ستيفيا بديل السكر 25 كيس",
"Product_EN": "ISIS Stevia Sugar Replacement 25 Sachets",
"Product_Id": "00015236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7759,
"name": "ايزيس اعشاب جنزبيل 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب جنزبيل 20 فلتر",
"Product_EN": "ISIS Herbs Ginger 20 Bags",
"Product_Id": "00015238 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7760,
"name": "ايزيس بارلى بدل قهوة 90 جم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس بارلى بدل قهوة 90 جم",
"Product_EN": "ISIS Barley Instead of Coffee 90 gm",
"Product_Id": "00015239 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7761,
"name": "كلوركس منظف و مطهر منزلى نعناع 400 مل",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس منظف و مطهر منزلى نعناع 400 مل",
"Product_EN": null,
"Product_Id": "00015240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7762,
"name": "نسكافيه جولد قهوة سريعه التحضير برطمان 200 جم + مج",
"price": 185,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه جولد قهوة سريعه التحضير برطمان 200 جم + مج",
"Product_EN": null,
"Product_Id": "00015243 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7763,
"name": "نسكويك سيريال بطعم الشوكولاتة 330 جم + لانش بوكس ",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك سيريال بطعم الشوكولاتة 330 جم + لانش بوكس ",
"Product_EN": "Nesquik Cereal Chocolate 330 gm + Gift Lunch Box",
"Product_Id": "00015244 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7764,
"name": "منتوس لبان بيور فراوله 20 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منتوس لبان بيور فراوله 20 جم",
"Product_EN": "Mentos Gum Pure Strawberry 20 gm",
"Product_Id": "00015245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7765,
"name": "منتوس لبان بيور بطيخ 20 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منتوس لبان بيور بطيخ 20 جم",
"Product_EN": "Mentos Gum Pure Watermelon 20 gm",
"Product_Id": "00015246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7766,
"name": "منتوس بونبون توتى فروتى 25 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منتوس بونبون توتى فروتى 25 جم",
"Product_EN": "Mentos Bonbon Tutti Fruti 25 gm",
"Product_Id": "00015247 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7767,
"name": "فينجر بسكويت ساده 600 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فينجر بسكويت ساده 600 جم",
"Product_EN": "Finger Biscuits Plain 600 gm",
"Product_Id": "00015248 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7768,
"name": "ريتش بيف بيكون وزن",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيف بيكون وزن",
"Product_EN": "Rich Beef Bacon - Scalable ",
"Product_Id": "00015251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7769,
"name": "ريحانه زيت ذرة 900 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريحانه زيت ذرة 900 مل",
"Product_EN": null,
"Product_Id": "00015252 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7770,
"name": "ريحانه زيت عباد الشمس 2.35 لتر",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريحانه زيت عباد الشمس 2.35 لتر",
"Product_EN": null,
"Product_Id": "00015253 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7771,
"name": "ماستر وان ليفه2 ق + ليفه اروبه 1ق + ليفه نايلون1ق",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان ليفه2 ق + ليفه اروبه 1ق + ليفه نايلون1ق",
"Product_EN": null,
"Product_Id": "00015254 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7772,
"name": "ماستر وان ليفه بأسفنجه اروبه 2 ق",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ماستر وان ليفه بأسفنجه اروبه 2 ق",
"Product_EN": null,
"Product_Id": "00015255 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7773,
"name": "لواكر ويفر كوادراتيني تيراميسو 110 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر ويفر كوادراتيني تيراميسو 110 جم",
"Product_EN": "Loacker Wafer Quadratini Tiramisu 110 gm",
"Product_Id": "00015256 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7774,
"name": "لواكر ويفر كوادراتيني اسبريسو 110 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر ويفر كوادراتيني اسبريسو 110 جم",
"Product_EN": "Loacker Wafer Quadratini Espresso 110 gm",
"Product_Id": "00015257 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7775,
"name": "لواكر بسكويت كوادريتيني كابتشينو 110 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت كوادريتيني كابتشينو 110 جم",
"Product_EN": "Loacker Wafer Quadratini Cappuccino 110 gm",
"Product_Id": "00015258 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7776,
"name": "لواكر بسكويت كوكونت 100 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت كوكونت 100 جم",
"Product_EN": "Loacker Coconut Biscuits 100 gm",
"Product_Id": "00015259 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7777,
"name": "لواكر باتسيرى جوز الهند مغطى شوكولاته بيضاء 100 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر باتسيرى جوز الهند مغطى شوكولاته بيضاء 100 جم",
"Product_EN": "Loacker Patisserie Coconut&White Chocolate 100 gm",
"Product_Id": "00015260 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7778,
"name": "لواكر باتسيرى دارك بالبندق 100 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر باتسيرى دارك بالبندق 100 جم",
"Product_EN": "Loacker Patisserie Dark Hazelnut 100g",
"Product_Id": "00015261 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7779,
"name": "لواكر بسكويت بالكابتشينو 100 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت بالكابتشينو 100 جم",
"Product_EN": "Loacker Cappuccino Biscuits 100 gm",
"Product_Id": "00015262 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7780,
"name": "لواكر بسكويت نوازيت بالبندق 100 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت نوازيت بالبندق 100 جم",
"Product_EN": "Loacker Biscuits Noiset With Hazelnut 100 gm",
"Product_Id": "00015263 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7781,
"name": "لواكر بسكويت بالحليب 175 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت بالحليب 175 جم",
"Product_EN": "Loacker Milk Biscuits 175 gm",
"Product_Id": "00015264 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7782,
"name": "لواكر بسكويت بالكاكاو 175 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت بالكاكاو 175 جم",
"Product_EN": "Loacker Cocoa Biscuits 175 gm",
"Product_Id": "00015265 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7783,
"name": "لواكر بسكويت بالبندق 175 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت بالبندق 175 جم",
"Product_EN": "Loacker Hazelnut Biscuits 175 gm",
"Product_Id": "00015266 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7784,
"name": "لواكر بسكويت بالفانيليا 175 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت بالفانيليا 175 جم",
"Product_EN": "Loacker Vanilla Biscuits 175 gm ",
"Product_Id": "00015267 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7785,
"name": "لواكر بسكويت بالشوكولاته 175 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت بالشوكولاته 175 جم",
"Product_EN": "Loacker Chocolate Biscuits 175 gm ",
"Product_Id": "00015268 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7786,
"name": "لواكر بسكويت دارك 150 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر بسكويت دارك 150 جم",
"Product_EN": "Loacker Dark Biscuits 150 gm",
"Product_Id": "00015269 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7787,
"name": "هيت بسكويت بالشوكولاته 134 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيت بسكويت بالشوكولاته 134 جم",
"Product_EN": "Heat Biscuits Chocolate 134 gm ",
"Product_Id": "00015270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7788,
"name": "هيت بسكويت بالشوكولاته 220 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيت بسكويت بالشوكولاته 220 جم",
"Product_EN": "Heat Biscuits With Chocolate 220 gm",
"Product_Id": "00015271 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7789,
"name": "ليبنيز بسكويت بالزبده 200 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبنيز بسكويت بالزبده 200 جم",
"Product_EN": "Leibniz Butter Biscuits 200 gm",
"Product_Id": "00015272 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7790,
"name": "ليبنز بسكويت بالزبده 100 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبنز بسكويت بالزبده 100 جم",
"Product_EN": "Leibniz Butter Biscuits 100 gm",
"Product_Id": "00015273 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7791,
"name": "ليبنيز شوكو بسكويت مغطى شوكولاتة 125 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبنيز شوكو بسكويت مغطى شوكولاتة 125 جم",
"Product_EN": "Leibniz Choco Vollmilch Kekse 125 gm",
"Product_Id": "00015274 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7792,
"name": "ليبنيز شوكو وافليتين ميلك 100 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبنيز شوكو وافليتين ميلك 100 جم",
"Product_EN": "Leibniz Choco Waffleteen Milk 100 gm",
"Product_Id": "00015275 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7793,
"name": "ليبنيز زوو بسكويت بالزبدة 100 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبنيز زوو بسكويت بالزبدة 100 جم",
"Product_EN": "Leibniz Zoo Butter Biscuits 100 gm",
"Product_Id": "00015276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7794,
"name": "ليبنيز زوو بسكويت بالحليب والعسل 100 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبنيز زوو بسكويت بالحليب والعسل 100 جم",
"Product_EN": "Leibniz Zoo Milk & Honey Biscuits 100 gm",
"Product_Id": "00015277 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7795,
"name": "ليبنيز زوو بسكويت بالكاكاو 100 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبنيز زوو بسكويت بالكاكاو 100 جم",
"Product_EN": "Leibniz Zoo Cocoa Biscuits 100 gm",
"Product_Id": "00015278 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7796,
"name": "ليبنيز زوو بسكويت بالقمح والشوفان 100 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبنيز زوو بسكويت بالقمح والشوفان 100 جم",
"Product_EN": "Leibniz Zoo Wheat and Oat Biscuits 100 gm",
"Product_Id": "00015279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7797,
"name": "فان داى كيك المافن بالفانيليا و الفواكه 64 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى كيك المافن بالفانيليا و الفواكه 64 جم",
"Product_EN": "Fun Day Muffin Cake Vanilla & Fruits 64 gm",
"Product_Id": "00015280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7798,
"name": "فان داى كيك المافن فانيليا وشوكولاتة 64 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى كيك المافن فانيليا وشوكولاتة 64 جم",
"Product_EN": "Fun Day Cake Muffin Vanilla & Chocolate 64 gm",
"Product_Id": "00015281 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7799,
"name": "فان داى كيك المافن بالشوكولاتة 64 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى كيك المافن بالشوكولاتة 64 جم",
"Product_EN": "Fun Day Cake Muffin Chocolate 64 gm",
"Product_Id": "00015282 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7800,
"name": "فان داى كيك ريد فيلفيت بالحليب 64 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى كيك ريد فيلفيت بالحليب 64 جم",
"Product_EN": "Fun Day Cake Red Velvet Milk 64g",
"Product_Id": "00015283 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7801,
"name": "هولستن مشروب بنكهة التوت البرى 330 مل",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولستن مشروب بنكهة التوت البرى 330 مل",
"Product_EN": "Holsten cranberry Flavored Drink 330 ml",
"Product_Id": "00015284 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7802,
"name": "دومتى 2 كريمى سبريد 220 جم + لانش بوكس هدية",
"price": 53.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى 2 كريمى سبريد 220 جم + لانش بوكس هدية",
"Product_EN": "Domty 2 Creamy Spread 220 gm + Free Lunch Box",
"Product_Id": "00015287 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7803,
"name": "لافاش سمبلى جبنه كلاسيك 140 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش سمبلى جبنه كلاسيك 140 جم",
"Product_EN": null,
"Product_Id": "00015288 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7804,
"name": "لافاش سمبلى جبنه بطعم الشيدر 140 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش سمبلى جبنه بطعم الشيدر 140 جم",
"Product_EN": null,
"Product_Id": "00015289 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7805,
"name": "لافاش سمبلى جبنه بنكهة الفلفل الحار 140 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش سمبلى جبنه بنكهة الفلفل الحار 140 جم",
"Product_EN": null,
"Product_Id": "00015290 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7806,
"name": "صن شاين بطاطس بوم فريت 2.5 كجم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين بطاطس بوم فريت 2.5 كجم",
"Product_EN": null,
"Product_Id": "00015291 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7807,
"name": "المراعى زبادى كامل دسم 1 كجم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى كامل دسم 1 كجم",
"Product_EN": "Almarai Yogurt Full Cream Fat 1 Kg",
"Product_Id": "00015292 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7808,
"name": "المراعى زبادى كامل الدسم 2 كجم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى كامل الدسم 2 كجم",
"Product_EN": "Almarai Yogurt Full Cream Fat 2 Kg",
"Product_Id": "00015295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7809,
"name": "المراعى كريمة خفق 200 جم - وفر 5 جنيه - موقوف",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى كريمة خفق 200 جم - وفر 5 جنيه - موقوف",
"Product_EN": "",
"Product_Id": "00015296 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7810,
"name": "ميرندا تفاح اخضر زجاج 350 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميرندا تفاح اخضر زجاج 350 مل",
"Product_EN": null,
"Product_Id": "00015298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7811,
"name": "سويت لايف صوص الباربيكو 237 جم",
"price": 41.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف صوص الباربيكو 237 جم",
"Product_EN": "Sweet Life Sauce BBQ 237 gm",
"Product_Id": "00015299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7812,
"name": "سويت لايف صوص الباربيكو هيكورى 237 جم",
"price": 41.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف صوص الباربيكو هيكورى 237 جم",
"Product_EN": "Sweet Life Hickory BBQ Sauce 237 ml",
"Product_Id": "00015300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7813,
"name": "سويت لايف صوص الباربيكو بالعسل 237 جم",
"price": 41.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف صوص الباربيكو بالعسل 237 جم",
"Product_EN": "Sweet Life Honey BBQ Sauce 237 ml",
"Product_Id": "00015301 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7814,
"name": "سويت لايف دريسنج ثاوزند أيلاند 237 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف دريسنج ثاوزند أيلاند 237 جم",
"Product_EN": "Sweet Life Thousand Island Dressing 237 ml",
"Product_Id": "00015302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7815,
"name": "سويت لايف دريسنج فرنسية 237 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف دريسنج فرنسية 237 مل",
"Product_EN": "Sweet Life French Salad Dressing 237 ml",
"Product_Id": "00015303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7816,
"name": "سويت لايف دريسنج مزرعة تقليدية 237 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف دريسنج مزرعة تقليدية 237 جم",
"Product_EN": "Sweet Life Dressing Traditional Farm 237 gm",
"Product_Id": "00015304 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7817,
"name": "سويت لايف دريسنج بلوتشيز 237 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف دريسنج بلوتشيز 237 مل",
"Product_EN": "Sweet Life Blue Cheese Salad Dressing 237 ml",
"Product_Id": "00015305 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7818,
"name": "سويت لايف صوص غمس بطعم الزبادي 250 مل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف صوص غمس بطعم الزبادي 250 مل",
"Product_EN": "Sweet Life Yoghurt Dressing 250 ml",
"Product_Id": "00015306 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7819,
"name": "سويت لايف صوص صلصة مكسيكية 250 مل",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف صوص صلصة مكسيكية 250 مل",
"Product_EN": "Sweet Life Mexican Sauce 250 ml",
"Product_Id": "00015307 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7820,
"name": "سويت لايف صوص كوكتيل 250 مل",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف صوص كوكتيل 250 مل",
"Product_EN": "Sweet Life Cocktail Sauce 250 ml",
"Product_Id": "00015308 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7821,
"name": "سويت لايف صوص صلصة استيك 284 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف صوص صلصة استيك 284 مل",
"Product_EN": "Sweet Life Steak Sauce 284 ml",
"Product_Id": "00015309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7822,
"name": "سويت لايف صوص صلصة ورسيسترشير 295 مل",
"price": 41.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف صوص صلصة ورسيسترشير 295 مل",
"Product_EN": "Sweet Life Worcestershire Sauce 295 ml",
"Product_Id": "00015310 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7823,
"name": "سويت لايف مايونيز بالروزمارى 250 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف مايونيز بالروزمارى 250 مل",
"Product_EN": "Sweet Life Rosemary Mayonnaise 250 ml",
"Product_Id": "00015311 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7824,
"name": "ديتول صابون جوز هند لليدين 165 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول صابون جوز هند لليدين 165 جم",
"Product_EN": null,
"Product_Id": "00015312 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7825,
"name": "بانتين شامبو تغذية اكثر للشعر 200 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو تغذية اكثر للشعر 200 مل",
"Product_EN": null,
"Product_Id": "00015316 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7826,
"name": "اريال يدوى لافندر 2 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال يدوى لافندر 2 كجم",
"Product_EN": null,
"Product_Id": "00015317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7827,
"name": "باهلسن وافلتن رول ويفر مقرمش بالشوكولاتة 100 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باهلسن وافلتن رول ويفر مقرمش بالشوكولاتة 100 جم",
"Product_EN": "Bahlsen Wafer Roll Crunchy Chocolate 100 gm",
"Product_Id": "00015318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7828,
"name": "باهلسن بسكويت فرست كلاس شوكولاتة بالحليب 125 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باهلسن بسكويت فرست كلاس شوكولاتة بالحليب 125 جم",
"Product_EN": "Bahlsen First Class Biscuits Milk Chocolate 125 gm",
"Product_Id": "00015319 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7829,
"name": "باهلسن ليبنيز بسكويت شوكولاتة دارك 125 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باهلسن ليبنيز بسكويت شوكولاتة دارك 125 جم",
"Product_EN": "Bahlsen Leibniz Dark Chocolate Biscuits 125gm",
"Product_Id": "00015320 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7830,
"name": "تشويس كاتشب سكويز 500 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس كاتشب سكويز 500 جم",
"Product_EN": null,
"Product_Id": "00015321 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7831,
"name": "هنتز كاكاو خام 125 جم",
"price": 86.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنتز كاكاو خام 125 جم",
"Product_EN": null,
"Product_Id": "00015322 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7832,
"name": "هنتز كاكاو خام 227 جم",
"price": 131,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنتز كاكاو خام 227 جم",
"Product_EN": null,
"Product_Id": "00015323 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7833,
"name": "شيفي ميكس خلطة البانية المتبلة بارد 40 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفي ميكس خلطة البانية المتبلة بارد 40 جم",
"Product_EN": null,
"Product_Id": "00015324 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7834,
"name": "شيفي ميكس خلطة البانية المتبلة حار 40 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفي ميكس خلطة البانية المتبلة حار 40 جم",
"Product_EN": null,
"Product_Id": "00015325 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7835,
"name": "شيفي ميكس تتبيلة الاسماك 40 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفي ميكس تتبيلة الاسماك 40 جم",
"Product_EN": null,
"Product_Id": "00015326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7836,
"name": "شيفي ميكس تتبيلة كفتة 40 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفي ميكس تتبيلة كفتة 40 جم",
"Product_EN": null,
"Product_Id": "00015327 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7837,
"name": "شيفي ميكس تتبيلة الفراخ التكا 40 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفي ميكس تتبيلة الفراخ التكا 40 جم",
"Product_EN": null,
"Product_Id": "00015328 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7838,
"name": "شيفي ميكس خلطة الأرز الكبسة 50 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفي ميكس خلطة الأرز الكبسة 50 جم",
"Product_EN": null,
"Product_Id": "00015329 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7839,
"name": "شيفي ميكس تتبيلة المحشي 50 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفي ميكس تتبيلة المحشي 50 جم",
"Product_EN": null,
"Product_Id": "00015330 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7840,
"name": "شيفى ميكس تتبيلة الشاورما السورى 40 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس تتبيلة الشاورما السورى 40 جم",
"Product_EN": null,
"Product_Id": "00015331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7841,
"name": "شيفى ميكس خلطة الحواوشى 40 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس خلطة الحواوشى 40 جم",
"Product_EN": null,
"Product_Id": "00015332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7842,
"name": "شيفى ميكس تتبيلة الشيش طاووك 40 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس تتبيلة الشيش طاووك 40 جم",
"Product_EN": null,
"Product_Id": "00015333 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7843,
"name": "شيفى ميكس تتبيلة الكبدة 40 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس تتبيلة الكبدة 40 جم",
"Product_EN": null,
"Product_Id": "00015334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7844,
"name": "شيفى ميكس تتبيلة البرجر 40 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس تتبيلة البرجر 40 جم",
"Product_EN": null,
"Product_Id": "00015335 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7845,
"name": "شيفى ميكس صوص البشاميل 75 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس صوص البشاميل 75 جم",
"Product_EN": null,
"Product_Id": "00015336 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7846,
"name": "شيفى ميكس خلطة أرز صيادية 35 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس خلطة أرز صيادية 35 جم",
"Product_EN": null,
"Product_Id": "00015337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7847,
"name": "شيفى ميكس صوص اللحمة 40 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس صوص اللحمة 40 جم",
"Product_EN": null,
"Product_Id": "00015338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7848,
"name": "شيفى ميكس صوص الجبنة 40 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس صوص الجبنة 40 جم",
"Product_EN": null,
"Product_Id": "00015339 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7849,
"name": "شيفى ميكس مرقة الدجاج 18 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس مرقة الدجاج 18 جم",
"Product_EN": null,
"Product_Id": "00015340 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7850,
"name": "شيفى ميكس مرقة اللحم 18 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس مرقة اللحم 18 جم",
"Product_EN": null,
"Product_Id": "00015341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7851,
"name": "شيفى ميكس كاتشب بارد 340 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس كاتشب بارد 340 جم",
"Product_EN": null,
"Product_Id": "00015342 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7852,
"name": "شيفى ميكس كاتشب حار 340 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس كاتشب حار 340 جم",
"Product_EN": null,
"Product_Id": "00015343 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7853,
"name": "شيفى ميكس مايونيز 280 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس مايونيز 280 جم",
"Product_EN": null,
"Product_Id": "00015344 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7854,
"name": "شيفى ميكس ثومية 140 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس ثومية 140 جم",
"Product_EN": null,
"Product_Id": "00015345 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7855,
"name": "شيفى ميكس مسترده 150 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس مسترده 150 جم",
"Product_EN": null,
"Product_Id": "00015346 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7856,
"name": "شيفى ميكس صوص باربيكيو 340 جم",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس صوص باربيكيو 340 جم",
"Product_EN": null,
"Product_Id": "00015347 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7857,
"name": "شيفى ميكس كاتشب ظرف 9 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس كاتشب ظرف 9 جم",
"Product_EN": null,
"Product_Id": "00015348 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7858,
"name": "شيفى ميكس تتبيلة الكفته 80 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس تتبيلة الكفته 80 جم",
"Product_EN": null,
"Product_Id": "00015351 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7859,
"name": "شيفى ميكس تتبيلة شاورما اللحم 110 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس تتبيلة شاورما اللحم 110 جم",
"Product_EN": null,
"Product_Id": "00015352 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7860,
"name": "شيفى ميكس تتبيلة التكا 120 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس تتبيلة التكا 120 جم",
"Product_EN": null,
"Product_Id": "00015353 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7861,
"name": "شيفى ميكس تتبيلة الفاهيتا 110 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس تتبيلة الفاهيتا 110 جم",
"Product_EN": null,
"Product_Id": "00015354 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7862,
"name": "شيفى ميكس توابل الشواء 80 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس توابل الشواء 80 جم",
"Product_EN": null,
"Product_Id": "00015355 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7863,
"name": "شيفى ميكس خلطة الثوم 150 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس خلطة الثوم 150 جم",
"Product_EN": null,
"Product_Id": "00015356 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7864,
"name": "شيفى ميكس بصل بودر 100 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس بصل بودر 100 جم",
"Product_EN": null,
"Product_Id": "00015357 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7865,
"name": "شيفى ميكس خلطة البانية المتبلة بارد 250 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس خلطة البانية المتبلة بارد 250 جم",
"Product_EN": null,
"Product_Id": "00015358 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7866,
"name": "شيفى ميكس خلطة البانية المتبلة حار 250 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس خلطة البانية المتبلة حار 250 جم",
"Product_EN": null,
"Product_Id": "00015359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7867,
"name": "شيفى ميكس مرقة اللحم 150 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس مرقة اللحم 150 جم",
"Product_EN": null,
"Product_Id": "00015360 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7868,
"name": "شيفى ميكس مرقة الدجاج 150 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس مرقة الدجاج 150 جم",
"Product_EN": null,
"Product_Id": "00015361 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7869,
"name": "شيفى ميكس مرقة الخضار 150 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس مرقة الخضار 150 جم",
"Product_EN": null,
"Product_Id": "00015362 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7870,
"name": "شيفى ميكس شوربة الدجاج بالكريمة 100 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس شوربة الدجاج بالكريمة 100 جم",
"Product_EN": null,
"Product_Id": "00015363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7871,
"name": "شيفى ميكس شوربة البصل 120 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس شوربة البصل 120 جم",
"Product_EN": null,
"Product_Id": "00015364 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7872,
"name": "شيفى ميكس خلطة الأرز البريانى 110 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس خلطة الأرز البريانى 110 جم",
"Product_EN": null,
"Product_Id": "00015365 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7873,
"name": "شيفى ميكس خلطة الأرز الميكسيكى 150 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس خلطة الأرز الميكسيكى 150 جم",
"Product_EN": null,
"Product_Id": "00015366 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7874,
"name": "شيفى ميكس خلطة الأرز صيادية 150 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس خلطة الأرز صيادية 150 جم",
"Product_EN": null,
"Product_Id": "00015367 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7875,
"name": "شيفى ميكس صوص الديمى جلاس 100 جم",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس صوص الديمى جلاس 100 جم",
"Product_EN": null,
"Product_Id": "00015368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7876,
"name": "شيفى ميكس صوص الكارى الهندى 100 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس صوص الكارى الهندى 100 جم",
"Product_EN": null,
"Product_Id": "00015369 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7877,
"name": "فان داي كيك مافن شوكولاته 32 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داي كيك مافن شوكولاته 32 جم",
"Product_EN": "Funday Muffin Cake Chocolate 32 gm",
"Product_Id": "00005840 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7878,
"name": "فان داي كب كيك ريد فيلفيت 32 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داي كب كيك ريد فيلفيت 32 جم",
"Product_EN": " Fun Day Red Velvet Cupcake 32 gm",
"Product_Id": "00005841 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7879,
"name": "فاندابى كيك شرائح 50جم - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فاندابى كيك شرائح 50جم - موقوف",
"Product_EN": null,
"Product_Id": "00005842 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7880,
"name": "فان داى بوبو كيك شوكولاته 32 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى بوبو كيك شوكولاته 32 جم",
"Product_EN": "FunDay Boboo Cake Chocolate 32 gm",
"Product_Id": "00005843 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7881,
"name": "فاندابى كيك براونى 40 جم - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فاندابى كيك براونى 40 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005844 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7882,
"name": "كيت كات شوكولاته مينى كيس 250 جم",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاته مينى كيس 250 جم",
"Product_EN": "Kit Kat Chocolate Mini Bag 250 gm",
"Product_Id": "00005845 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7883,
"name": "كيت كات شوكولاته شانكى مينى 250 جم",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاته شانكى مينى 250 جم",
"Product_EN": "Kit Kat Chunky Mini Chocolate 250 gm",
"Product_Id": "00005846 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7884,
"name": "كيت كات شوكولاته سنجل 19.50 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاته سنجل 19.50 جم",
"Product_EN": "Kit Kat Single Chocolate 19.50 gm",
"Product_Id": "00005848 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7885,
"name": "كيت كات شوكولاته 4 اصابع",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاته 4 اصابع",
"Product_EN": "Kit Kat Chocolate 4 Fingers",
"Product_Id": "00005849 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7886,
"name": "بسطرمه جملى بلدى وزن",
"price": 240,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بسطرمه جملى بلدى وزن",
"Product_EN": null,
"Product_Id": "00005850 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7887,
"name": "برسيل ابيض اتوماتيك 8 ك - موقوف",
"price": 225,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل ابيض اتوماتيك 8 ك - موقوف",
"Product_EN": null,
"Product_Id": "00005851 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7888,
"name": "برسيل اتوماتيك 4 كجم - موقوف",
"price": 115.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل اتوماتيك 4 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00005852 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7889,
"name": "اكسترا مسحوق اتوماتيك 2.5 ك+بريل 675 مل - موقوف",
"price": 62.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اكسترا مسحوق اتوماتيك 2.5 ك+بريل 675 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005853 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7890,
"name": "فيتراك شربات فراولة 850 جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات فراولة 850 جم",
"Product_EN": null,
"Product_Id": "00005854 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7891,
"name": "دانون دانيت اكسترا مشروب شيكولاتة 200 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون دانيت اكسترا مشروب شيكولاتة 200 مل",
"Product_EN": "Danone Danette Extra Chocolate Drink 200 ml",
"Product_Id": "00005855 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7892,
"name": "القرش سكر 1 كيلو - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:52",
"updated_at": "2021-11-01 19:45:52",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرش سكر 1 كيلو - موقوف",
"Product_EN": null,
"Product_Id": "00005856 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7893,
"name": "سيكم اعشاب نعناع 25 فلتر - موقوف",
"price": 20.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم اعشاب نعناع 25 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005857 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7894,
"name": "سيكم اعشاب شاى اخضر 25 فلتر - موقوف",
"price": 22.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم اعشاب شاى اخضر 25 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005858 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7895,
"name": "سيكم اعشاب تيليو 25 فلتر - موقوف",
"price": 20.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم اعشاب تيليو 25 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005859 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7896,
"name": "سيكم اعشاب كركديه 25 فلتر - موقوف",
"price": 20.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم اعشاب كركديه 25 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005860 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7897,
"name": "سيكم اعشاب قرفه 25 فلتر - موقوف",
"price": 20.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم اعشاب قرفه 25 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005861 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7898,
"name": "سيكم اعشاب زنجبيل بالقرفه 25 لتر - موقوف",
"price": 20.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم اعشاب زنجبيل بالقرفه 25 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005862 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7899,
"name": "سيكم اعشاب شاى اخضر بالنعناع 25فلتر - موقوف",
"price": 20.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم اعشاب شاى اخضر بالنعناع 25فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005863 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7900,
"name": "سيكم اعشاب للبرد الشتاء 15 فلتر - موقوف",
"price": 9.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم اعشاب للبرد الشتاء 15 فلتر - موقوف",
"Product_EN": null,
"Product_Id": "00005864 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7901,
"name": "تودو كيك بار شيكولاتة",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تودو كيك بار شيكولاتة",
"Product_EN": null,
"Product_Id": "00005865 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7902,
"name": "سيكم بلح سودانى وشيكولاتة 120جم - موقوف",
"price": 18.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم بلح سودانى وشيكولاتة 120جم - موقوف",
"Product_EN": null,
"Product_Id": "00005867 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7903,
"name": "سيكم بلح وشيكولاتة 120جم - موقوف",
"price": 18.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم بلح وشيكولاتة 120جم - موقوف",
"Product_EN": null,
"Product_Id": "00005868 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7904,
"name": "سيكم بلح بجوز الهند 120جم - موقوف",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم بلح بجوز الهند 120جم - موقوف",
"Product_EN": null,
"Product_Id": "00005869 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7905,
"name": "سيكم بلح كركديه 120جم - موقوف",
"price": 18.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم بلح كركديه 120جم - موقوف",
"Product_EN": null,
"Product_Id": "00005870 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7906,
"name": "اريال مسحوق يدوى داونى 350جم عرض - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى داونى 350جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005871 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7907,
"name": "الويز فوط صحيه ماكس سميكه 8 فوطه",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فوط صحيه ماكس سميكه 8 فوطه",
"Product_EN": null,
"Product_Id": "00005872 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7908,
"name": "اريال مسحوق يدوى ياسمين 350 جم - موقوف",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005873 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7909,
"name": "باندا جبنه قشطة كوب 140 جم",
"price": 15.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنه قشطة كوب 140 جم",
"Product_EN": null,
"Product_Id": "00005874 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7910,
"name": "باندا جبنة شيدر كوب 140 جم",
"price": 15.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة شيدر كوب 140 جم",
"Product_EN": null,
"Product_Id": "00005875 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7911,
"name": "البوادى حلاوه طحينيه 800 جم",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى حلاوه طحينيه 800 جم",
"Product_EN": null,
"Product_Id": "00005876 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7912,
"name": "بسكريم بج باك بسكويت بكريمه الكاكاو - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكريم بج باك بسكويت بكريمه الكاكاو - موقوف",
"Product_EN": null,
"Product_Id": "00005877 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7913,
"name": "هيلثى ماء زهر 250 مل",
"price": 9.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى ماء زهر 250 مل",
"Product_EN": null,
"Product_Id": "00005879 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7914,
"name": "فلابينو شوفان لايت سريع الطهى 500 جم",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلابينو شوفان لايت سريع الطهى 500 جم",
"Product_EN": null,
"Product_Id": "00005880 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7915,
"name": "دوبيلا كسكسى علبه 400 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوبيلا كسكسى علبه 400 جم",
"Product_EN": null,
"Product_Id": "00005881 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7916,
"name": "دوبيلا شوفان 500جم - موقوف",
"price": 17.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوبيلا شوفان 500جم - موقوف",
"Product_EN": null,
"Product_Id": "00005882 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7917,
"name": "فلابينو شوفان كامل الحبه 500 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلابينو شوفان كامل الحبه 500 جم",
"Product_EN": null,
"Product_Id": "00005883 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7918,
"name": "هيلثى حمض الليمون 250 مل",
"price": 13.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى حمض الليمون 250 مل",
"Product_EN": null,
"Product_Id": "00005884 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7919,
"name": "لواكر شيكولاتة بيضاء 55 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر شيكولاتة بيضاء 55 جم",
"Product_EN": "Loacker White Chocolate 55 gm",
"Product_Id": "00005885 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7920,
"name": "لواكر شوكولاتة داكنه 55 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر شوكولاتة داكنه 55 جم",
"Product_EN": "Loacker Dark Chocolate 55 gm",
"Product_Id": "00005886 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7921,
"name": "لواكر شوكولاتة حليب 55 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر شوكولاتة حليب 55 جم",
"Product_EN": "Loacker Milk Chocolate 55 gm",
"Product_Id": "00005887 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7922,
"name": "هاريبو جيلى الوان 25 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى الوان 25 جم",
"Product_EN": "Haribo Jelly Gum Colors 25 gm",
"Product_Id": "00005888 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7923,
"name": "ليبتون شاى اخضر ليمون 25 فتله",
"price": 13.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر ليمون 25 فتله",
"Product_EN": "Lipton Green Tea Lemon 25 Bags",
"Product_Id": "00005890 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7924,
"name": "سيجنال معجون اسنان 50 ملى عرض - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان 50 ملى عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005891 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7925,
"name": "كمفورت منعم ملابس ازرق 3 لتر",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس ازرق 3 لتر",
"Product_EN": "Comfort Fabric Softener Blue 3 L",
"Product_Id": "00005892 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7926,
"name": "زاهر زيتون كلاماتا جامبو مخلل طبيعى وزن - موقوف",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون كلاماتا جامبو مخلل طبيعى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005893 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7927,
"name": "دريم مسحوق مافن كيك شيكولاته 450 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق مافن كيك شيكولاته 450 جم",
"Product_EN": "Dreem Muffin Cake Powder 450 gm",
"Product_Id": "00005894 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7928,
"name": "دريم كاستر 300 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كاستر 300 جم",
"Product_EN": "Dreem Custard 300 gm",
"Product_Id": "00005895 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7929,
"name": "قتيللو جبنة رومى قرص صغير وزن عرض - موقوف",
"price": 98,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيللو جبنة رومى قرص صغير وزن عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005896 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7930,
"name": "داونى منعم حدائق الاحلام 2 لتر - موقوف",
"price": 58.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم حدائق الاحلام 2 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005897 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7931,
"name": "داونى حدائق الاحلام 3 لتر - موقوف",
"price": 81.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى حدائق الاحلام 3 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005898 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7932,
"name": "ديتول مطهر جراثيم 50 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مطهر جراثيم 50 مل",
"Product_EN": null,
"Product_Id": "00005899 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7933,
"name": "نستله نسكافيه جولد موكا ظرف 18 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه جولد موكا ظرف 18 جم",
"Product_EN": null,
"Product_Id": "00005900 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7934,
"name": "نستله نسكافيه جولد كابتشينو لاتية 18 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نسكافيه جولد كابتشينو لاتية 18 جم",
"Product_EN": null,
"Product_Id": "00005901 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7935,
"name": "نسكافيه اوريجنال كراميل قهوة سريعه تحضير 3*1 18جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه اوريجنال كراميل قهوة سريعه تحضير 3*1 18جم",
"Product_EN": null,
"Product_Id": "00005902 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7936,
"name": "البطريق جبنه فيتا 250 جم عرض - موقوف",
"price": 15.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "البطريق جبنه فيتا 250 جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00005903 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7937,
"name": "كادبورى شيكولاتة مينى 204 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى شيكولاتة مينى 204 جم",
"Product_EN": "Cadbury Chocolate Mini 204 gm",
"Product_Id": "00005905 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7938,
"name": "كلوريل 1050 عادى + كلوريل الوان - موقوف",
"price": 10.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل 1050 عادى + كلوريل الوان - موقوف",
"Product_EN": null,
"Product_Id": "00005906 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7939,
"name": "جلاسى رشاش منظف زجاج 600 مل+ اقتصادى - موقوف",
"price": 19.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جلاسى رشاش منظف زجاج 600 مل+ اقتصادى - موقوف",
"Product_EN": null,
"Product_Id": "00005907 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7940,
"name": "كورونا شكولاتة ميني روكيت 37 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شكولاتة ميني روكيت 37 جم",
"Product_EN": null,
"Product_Id": "00005908 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7941,
"name": "كورونا شيكولاتة باللبن و البندق 27 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة باللبن و البندق 27 جم",
"Product_EN": null,
"Product_Id": "00005909 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7942,
"name": "المطبخ ارز وزن - موقوف",
"price": 11.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ ارز وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005910 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7943,
"name": "خمس نجوم دقيق وزن - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "خمس نجوم دقيق وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005911 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7944,
"name": "الضحى سكر وزن - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى سكر وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005912 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7945,
"name": "ميلكانا الترا كريمى 5 كجم - وزن - موقوف",
"price": 521,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلكانا الترا كريمى 5 كجم - وزن - موقوف",
"Product_EN": null,
"Product_Id": "00005913 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7946,
"name": "نستله مياه طبيعيه جالون 19 لتر - مياة + غيار جديد",
"price": 133,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله مياه طبيعيه جالون 19 لتر - مياة + غيار جديد",
"Product_EN": "Nestle Natural Water Gallon 19 L Water+replacement",
"Product_Id": "00005915 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7947,
"name": "ويندكس غيارازرق 500 مل",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ويندكس غيارازرق 500 مل",
"Product_EN": null,
"Product_Id": "00005916 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7948,
"name": "لافاش برتقالى جبنة مثلثات 8 ق",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش برتقالى جبنة مثلثات 8 ق",
"Product_EN": "Lavash Orange Triangles Cheese 8 Pieces",
"Product_Id": "00005917 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7949,
"name": "جوى مصاصه 10جم - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جوى مصاصه 10جم - موقوف",
"Product_EN": null,
"Product_Id": "00005918 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7950,
"name": "ديمه بينتو مصاصه جيلي 20جم - موقوف",
"price": 1.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بينتو مصاصه جيلي 20جم - موقوف",
"Product_EN": null,
"Product_Id": "00005919 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7951,
"name": "بريزيدون جبنه سبريد شيدر كوب 240 جم _ موقوف",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد شيدر كوب 240 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00005920 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7952,
"name": "لافاش جبنة كيرى 48 ق",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كيرى 48 ق",
"Product_EN": "LaVache QuiRi Cheese 48 Pieces",
"Product_Id": "00005921 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7953,
"name": "لافاش كيرى لبنة 500 جم",
"price": 74,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش كيرى لبنة 500 جم",
"Product_EN": "LaVache Kiri Labenah 500 gm",
"Product_Id": "00005922 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7954,
"name": "بسكريم بج باك بسكويت بكريمه الكاكاو",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكريم بج باك بسكويت بكريمه الكاكاو",
"Product_EN": null,
"Product_Id": "00005923 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7955,
"name": "كيرى جبنة سبريد 700 جم",
"price": 74,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنة سبريد 700 جم",
"Product_EN": "LaVache Kiri Cheese Spread 200 gm",
"Product_Id": "00005924 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7956,
"name": "ابو الولد جبنه مثلثات 8 ق",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابو الولد جبنه مثلثات 8 ق",
"Product_EN": "Abu El Walad Triangle Cheese 8 Pieces",
"Product_Id": "00005925 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7957,
"name": "مورو شيكولاتة 3+1 عرض",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مورو شيكولاتة 3+1 عرض",
"Product_EN": "Moro Chocolate 3+1 - Offer",
"Product_Id": "00005926 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7958,
"name": "كادبورى شيكولاتة ساده 4+1 ق عرض",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى شيكولاتة ساده 4+1 ق عرض",
"Product_EN": "Cadbury Chocolate Plain 4+1 Pieces - Offer ",
"Product_Id": "00005927 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7959,
"name": "برانش باتيه جبنة بيضاء جامبو",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برانش باتيه جبنة بيضاء جامبو",
"Product_EN": null,
"Product_Id": "00005928 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7960,
"name": "برانش كرواسون شيكولاتة جامبو",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برانش كرواسون شيكولاتة جامبو",
"Product_EN": null,
"Product_Id": "00005929 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7961,
"name": "برانش باتيه جبنة مشطشطة جامبو",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برانش باتيه جبنة مشطشطة جامبو",
"Product_EN": null,
"Product_Id": "00005930 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7962,
"name": "برانش باتيه كبير جبنه مطبوخه",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش باتيه كبير جبنه مطبوخه",
"Product_EN": null,
"Product_Id": "00005931 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7963,
"name": "برانش باتيه جبنة رومى جامبو",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش باتيه جبنة رومى جامبو",
"Product_EN": null,
"Product_Id": "00005932 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7964,
"name": "برانش باتيه جبنة بالزيتون جامبو",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش باتيه جبنة بالزيتون جامبو",
"Product_EN": null,
"Product_Id": "00005933 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7965,
"name": "برانش باتيه جبنه مطبوخه بالبسطرمه",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش باتيه جبنه مطبوخه بالبسطرمه",
"Product_EN": null,
"Product_Id": "00005934 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7966,
"name": "برانش باتيه حلاوه جامبو",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش باتيه حلاوه جامبو",
"Product_EN": null,
"Product_Id": "00005935 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7967,
"name": "نستله جو مشروب زبادى خوخ 400 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله جو مشروب زبادى خوخ 400 مل",
"Product_EN": "Nestle Go Peach Yogurt Drink 400 ml",
"Product_Id": "00005937 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7968,
"name": "نستله جو مشروب زبادى فراولة 400 مل",
"price": 10.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله جو مشروب زبادى فراولة 400 مل",
"Product_EN": "Nestle Go Strawberry Yogurt Drink 400 ml",
"Product_Id": "00005938 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7969,
"name": "زاهر زيتون دولسى مخلل طبيعى وزن",
"price": 52.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون دولسى مخلل طبيعى وزن",
"Product_EN": "Zaher Pickled Dolci Olive - Weight",
"Product_Id": "00005939 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7970,
"name": "فينيش مسحوق 1ك+سائل شطف 400 مل عرض",
"price": 131,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فينيش مسحوق 1ك+سائل شطف 400 مل عرض",
"Product_EN": null,
"Product_Id": "00005941 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7971,
"name": "نسكويك كريمة شوكولاته 28 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك كريمة شوكولاته 28 جم",
"Product_EN": "Nesquik Chocolate Cream 28 gm",
"Product_Id": "00005942 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7972,
"name": "نسكويك كريمة شوكولاته 28 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك كريمة شوكولاته 28 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005943 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7973,
"name": "كادبورى شيكولاتة مالتى باك بابلي 4ق+1ق 140 جم عرض",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى شيكولاتة مالتى باك بابلي 4ق+1ق 140 جم عرض",
"Product_EN": "Cadbury Chocolate Multipack Bubbly 4+1 Psc",
"Product_Id": "00005944 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7974,
"name": "بريل منظف ليمون 675 مل - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف ليمون 675 مل - موقوف",
"Product_EN": null,
"Product_Id": "00005945 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7975,
"name": "بريل منظف 1.25 لتر - موقوف",
"price": 20.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف 1.25 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005946 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7976,
"name": "برسيل جيل 3 لتر + جيل 1 لتر - موقوف",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جيل 3 لتر + جيل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005947 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7977,
"name": "جينرال منظف لافندر 3 لتر - موقوف",
"price": 38.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف لافندر 3 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00005948 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7978,
"name": "برسيل اتوماتيك 4 ك - موقوف",
"price": 116.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل اتوماتيك 4 ك - موقوف",
"Product_EN": null,
"Product_Id": "00005949 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7979,
"name": "برسيل اتوماتيك 6 ك - موقوف",
"price": 171.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل اتوماتيك 6 ك - موقوف",
"Product_EN": null,
"Product_Id": "00005950 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7980,
"name": "برسيل اتوماتيك 2.5 ك - موقوف",
"price": 91.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل اتوماتيك 2.5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00005951 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7981,
"name": "برسيل عالى الرغوة 650 جم - موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل عالى الرغوة 650 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005952 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7982,
"name": "كيك بار محشو شيكولاتة 35جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك بار محشو شيكولاتة 35جم",
"Product_EN": null,
"Product_Id": "00005953 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7983,
"name": "كيك بار محشو فانيليا 35جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك بار محشو فانيليا 35جم",
"Product_EN": null,
"Product_Id": "00005954 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7984,
"name": "بسكويت فانيليا 100جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكويت فانيليا 100جم",
"Product_EN": null,
"Product_Id": "00005955 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7985,
"name": "كوكو لوفرس محشو كريمة توت",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكو لوفرس محشو كريمة توت",
"Product_EN": null,
"Product_Id": "00005956 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7986,
"name": "كوكو لوفرس محشو كريمة الحليب",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكو لوفرس محشو كريمة الحليب",
"Product_EN": null,
"Product_Id": "00005957 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7987,
"name": "هولز منتول جديد",
"price": 95.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولز منتول جديد",
"Product_EN": "Halls Menthol New ",
"Product_Id": "00005959 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7988,
"name": "هولز نعناع اخضر جديد",
"price": 95.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هولز نعناع اخضر جديد",
"Product_EN": "Halls Mint Green New",
"Product_Id": "00005961 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7989,
"name": "توك بسكويت بالشطة الحارة 24 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توك بسكويت بالشطة الحارة 24 جم",
"Product_EN": "TUC Biscuits with Hot Chilli 24 gm",
"Product_Id": "00005962 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7990,
"name": "مندولين شيكولاتة 3ق+1ق 224 جم عرض",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مندولين شيكولاتة 3ق+1ق 224 جم عرض",
"Product_EN": "Mandolin Chocolate 3 Pieces+ 1 Pieces 224 gm Offer",
"Product_Id": "00005964 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7991,
"name": "كادبورى مارفيلوس مالتى باك 190 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى مارفيلوس مالتى باك 190 جم",
"Product_EN": "Cadbury Marvelous Multipack 190 gm",
"Product_Id": "00005966 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7992,
"name": "كادبورى اوريو شيكولاتة مالتى باك 4+1 ق عرض",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى اوريو شيكولاتة مالتى باك 4+1 ق عرض",
"Product_EN": "Cadbury OREO Chocolate Multipack 4+1 Pieces Offer",
"Product_Id": "00005967 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7993,
"name": "زاهر بيفى ترول - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيفى ترول - موقوف",
"Product_EN": null,
"Product_Id": "00005968 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7994,
"name": "بونو ملح 350 جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونو ملح 350 جم",
"Product_EN": null,
"Product_Id": "00005969 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7995,
"name": "زاهر بسبوسة بالقرع - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة بالقرع - موقوف",
"Product_EN": null,
"Product_Id": "00005971 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7996,
"name": "زاهر تشيز كيك كراميل مثلث - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تشيز كيك كراميل مثلث - موقوف",
"Product_EN": null,
"Product_Id": "00005972 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7997,
"name": "زاهر ريد فيلفيت كوب - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ريد فيلفيت كوب - موقوف",
"Product_EN": null,
"Product_Id": "00005973 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7998,
"name": "زاهر ديزيرت - ترامسيو كوب - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - ترامسيو كوب - موقوف",
"Product_EN": null,
"Product_Id": "00005974 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 7999,
"name": "زاهر ديزيرت - اوريو كب - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - اوريو كب - موقوف",
"Product_EN": null,
"Product_Id": "00005975 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8000,
"name": "باندا شيدر سادة 200 جم",
"price": 7.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا شيدر سادة 200 جم",
"Product_EN": null,
"Product_Id": "00005976 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8001,
"name": "باندا شيدر زيتون 200 جم",
"price": 7.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا شيدر زيتون 200 جم",
"Product_EN": null,
"Product_Id": "00005977 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8002,
"name": "باندا شيدر فلفل 200 جم",
"price": 7.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا شيدر فلفل 200 جم",
"Product_EN": null,
"Product_Id": "00005978 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8003,
"name": "باندا جبنة مثلثات 8 ق",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة مثلثات 8 ق",
"Product_EN": null,
"Product_Id": "00005979 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8004,
"name": "باندا موزاريلا 2 كجم",
"price": 114.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا موزاريلا 2 كجم",
"Product_EN": null,
"Product_Id": "00005980 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8005,
"name": "باندا جبنة مثلثات 16 ق سوبر",
"price": 13.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة مثلثات 16 ق سوبر",
"Product_EN": null,
"Product_Id": "00005981 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8006,
"name": "باندا جبنة قشطة كوب 500 جم",
"price": 45.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة قشطة كوب 500 جم",
"Product_EN": null,
"Product_Id": "00005982 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8007,
"name": "باندا جبنة شيدر كوب 500 جم",
"price": 45.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة شيدر كوب 500 جم",
"Product_EN": null,
"Product_Id": "00005983 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8008,
"name": "باندا جبنة شيدر قشطة كوب 900 جم",
"price": 63.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة شيدر قشطة كوب 900 جم",
"Product_EN": null,
"Product_Id": "00005984 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8009,
"name": "باندا جبنة شيدر كوب 900 جم",
"price": 63.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "باندا جبنة شيدر كوب 900 جم",
"Product_EN": null,
"Product_Id": "00005985 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8010,
"name": "قتيلو جبنة براميلى اسكندرانى 1.200كجم",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنة براميلى اسكندرانى 1.200كجم",
"Product_EN": null,
"Product_Id": "00005986 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8011,
"name": "قتيلو جبنة اسطمبولى 1.200كجم",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنة اسطمبولى 1.200كجم",
"Product_EN": null,
"Product_Id": "00005987 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8012,
"name": "قتيلو جبنة فيتا لايت 500جم",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنة فيتا لايت 500جم",
"Product_EN": null,
"Product_Id": "00005988 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8013,
"name": "قتيلو قشطه طازجه 250 جم",
"price": 12.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو قشطه طازجه 250 جم",
"Product_EN": null,
"Product_Id": "00005989 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8014,
"name": "قتيلو جبنة كريمى 250 جم _ موقوف",
"price": 13.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو جبنة كريمى 250 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00005990 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8015,
"name": "قتيلو مش بلاستيك 250جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "قتيلو مش بلاستيك 250جم",
"Product_EN": null,
"Product_Id": "00005991 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8016,
"name": "زاهر ديزيرت - انجلش كيك ساده \/ شيكولاته - ميكس",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - انجلش كيك ساده \/ شيكولاته - ميكس",
"Product_EN": "Zaher English Cake Chocolate",
"Product_Id": "00005993 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8017,
"name": "جوى توفى كراميل - موقوف",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جوى توفى كراميل - موقوف",
"Product_EN": null,
"Product_Id": "00005994 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8018,
"name": "لى لى توفى فواكه - موقوف",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لى لى توفى فواكه - موقوف",
"Product_EN": null,
"Product_Id": "00005995 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8019,
"name": "كلوجز شعرية فراخ 70جم - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كلوجز شعرية فراخ 70جم - موقوف",
"Product_EN": null,
"Product_Id": "00005996 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8020,
"name": "كيلوجز نودلز نكهه لحم بقرى 70 جم - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيلوجز نودلز نكهه لحم بقرى 70 جم - موقوف",
"Product_EN": null,
"Product_Id": "00005997 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8021,
"name": "زاهر موس شيكولاتة برطمان - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر موس شيكولاتة برطمان - موقوف",
"Product_EN": null,
"Product_Id": "00005998 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8022,
"name": "زاهر تشيز كيك كراميل برطمان - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تشيز كيك كراميل برطمان - موقوف",
"Product_EN": null,
"Product_Id": "00005999 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8023,
"name": "زاهر تشيز كيك بوريو برطمان - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تشيز كيك بوريو برطمان - موقوف",
"Product_EN": null,
"Product_Id": "00006000 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8024,
"name": "زاهر تشيز كيك توت ازرق برطمان - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تشيز كيك توت ازرق برطمان - موقوف",
"Product_EN": null,
"Product_Id": "00006001 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8025,
"name": "المراعى لحم مفروم بقرى خشن 900 جم",
"price": 93,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى لحم مفروم بقرى خشن 900 جم",
"Product_EN": null,
"Product_Id": "00006002 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8026,
"name": "جلاكسى ترافل شوكولاتة 36 جم ",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى ترافل شوكولاتة 36 جم ",
"Product_EN": "Galaxy Truffle Chocolate 36 gm",
"Product_Id": "00006003 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8027,
"name": "زاهر شوكلت كيك كوب - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر شوكلت كيك كوب - موقوف",
"Product_EN": null,
"Product_Id": "00006004 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8028,
"name": "كورة كرسبى 1 ق - موقوف",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورة كرسبى 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006007 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8029,
"name": "مصاصة لولى بوب - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصاصة لولى بوب - موقوف",
"Product_EN": null,
"Product_Id": "00006008 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8030,
"name": "المراعى سجق شرقي مجمد 900 جم",
"price": 77.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى سجق شرقي مجمد 900 جم",
"Product_EN": null,
"Product_Id": "00006009 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8031,
"name": "كريستال سمنه صفراء 700 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال سمنه صفراء 700 جم",
"Product_EN": "Crystal Yellow Ghee 700 gm",
"Product_Id": "00006010 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8032,
"name": "كنور فاين فودز مرقة دجاج 8 مكعب",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فاين فودز مرقة دجاج 8 مكعب",
"Product_EN": "Knorr Fine Foods Chicken Stock 8 Cubes",
"Product_Id": "00006011 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8033,
"name": "كمفورت منعم ملابس برائحة زهور 2 لتر",
"price": 48.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس برائحة زهور 2 لتر",
"Product_EN": "Comfort Floral Fabric Softener 2 L",
"Product_Id": "00006012 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8034,
"name": "زاهر تشيز كيك فراولة مثلث - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تشيز كيك فراولة مثلث - موقوف",
"Product_EN": null,
"Product_Id": "00006013 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8035,
"name": "زاهر تشيز كيك توت احمر برطمان - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تشيز كيك توت احمر برطمان - موقوف",
"Product_EN": null,
"Product_Id": "00006014 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8036,
"name": "زاهر هوهوز كيك - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر هوهوز كيك - موقوف",
"Product_EN": null,
"Product_Id": "00006015 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8037,
"name": "شويبس جولد اناناس بلاستيك 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس جولد اناناس بلاستيك 1 لتر",
"Product_EN": "Schweppes Gold Pineapple Plastic 1 L",
"Product_Id": "00006016 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8038,
"name": "شنط كبيرة مطبوع وزن",
"price": 26.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شنط كبيرة مطبوع وزن",
"Product_EN": null,
"Product_Id": "00006017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8039,
"name": "شيبسى عائلى صوص الطماطم الحار",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى عائلى صوص الطماطم الحار",
"Product_EN": null,
"Product_Id": "00006018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8040,
"name": "دونى كمبوت اناناس 850 جم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دونى كمبوت اناناس 850 جم",
"Product_EN": null,
"Product_Id": "00006020 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8041,
"name": "دايموند مشروم 800 جم",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايموند مشروم 800 جم",
"Product_EN": null,
"Product_Id": "00006021 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8042,
"name": "فانتا تفاح اخضر بلاستيك 1 لتر",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا تفاح اخضر بلاستيك 1 لتر",
"Product_EN": "Fanta Green Apple Plastic 1 L ",
"Product_Id": "00006022 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8043,
"name": "عافيه زيت ذرة 2.4 لتر - موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت ذرة 2.4 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00006023 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8044,
"name": "عافيه زيت عباد الشمس 2.4 لتر",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت عباد الشمس 2.4 لتر",
"Product_EN": "Afia Sunflower Oil 2.4 L",
"Product_Id": "00006024 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8045,
"name": "كلوركس ابيض 2+1 ق 1200 ملى",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس ابيض 2+1 ق 1200 ملى",
"Product_EN": null,
"Product_Id": "00006025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8046,
"name": "اولكر بسكويت شاى83 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت شاى83 جم",
"Product_EN": null,
"Product_Id": "00006026 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8047,
"name": "اولكر بسكويت شاى صغير",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت شاى صغير",
"Product_EN": null,
"Product_Id": "00006027 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8048,
"name": "زاهر كب كيك - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كب كيك - موقوف",
"Product_EN": null,
"Product_Id": "00006028 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8049,
"name": "الويز فوط صحيه ماكسى سميكه طويل 16 فوطه",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فوط صحيه ماكسى سميكه طويل 16 فوطه",
"Product_EN": null,
"Product_Id": "00006029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8050,
"name": "بونكس مسحوق فل 4 ك - موقوف",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بونكس مسحوق فل 4 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006030 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8051,
"name": "بونكس مسحوق ليمون 4 ك - موقوف",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بونكس مسحوق ليمون 4 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8052,
"name": "دل مونتى لانشون لحم 340 جم - موقوف",
"price": 34.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دل مونتى لانشون لحم 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006033 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8053,
"name": "تيوليب لانشون دجاج 340 جم - موقوف",
"price": 33.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيوليب لانشون دجاج 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006034 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8054,
"name": "سوتاش لبنه تركى 200 جم",
"price": 26.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سوتاش لبنه تركى 200 جم",
"Product_EN": "Sutas Turkish Labneh 700 gm",
"Product_Id": "00006035 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8055,
"name": "هاينز كروند بيف بقرى 340 جم - موقوف",
"price": 39.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كروند بيف بقرى 340 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006036 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8056,
"name": "بيك رولز مقرمشات بالشطه 105جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز مقرمشات بالشطه 105جم",
"Product_EN": null,
"Product_Id": "00006037 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8057,
"name": "بيك رولز مقرمشات ملح 105جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيك رولز مقرمشات ملح 105جم - موقوف",
"Product_EN": null,
"Product_Id": "00006038 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8058,
"name": "هوهوز كيك جامبو شيكولاتة",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هوهوز كيك جامبو شيكولاتة",
"Product_EN": null,
"Product_Id": "00006039 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8059,
"name": "زاهر دوناتس - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر دوناتس - موقوف",
"Product_EN": null,
"Product_Id": "00006040 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8060,
"name": "حلوانى سجق شرقى 900 جم",
"price": 91,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى سجق شرقى 900 جم",
"Product_EN": "Halwani Oriental Sausage 900 gm",
"Product_Id": "00006041 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8061,
"name": "مصنع - زاهر حليب طبيعى جاموسى وزن - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "مصنع - زاهر حليب طبيعى جاموسى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00006042 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8062,
"name": "بترو كلين منظف جركن 10 كجم",
"price": 60.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بترو كلين منظف جركن 10 كجم",
"Product_EN": null,
"Product_Id": "00006043 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8063,
"name": "برسيل مسحوق اوتوماتيك لافندر 8 كجم + 2 كجم",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اوتوماتيك لافندر 8 كجم + 2 كجم",
"Product_EN": null,
"Product_Id": "00006044 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8064,
"name": "برسيل يدوى 265 جم - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل يدوى 265 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006045 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8065,
"name": "اكسترا مسحوق اتوماتيك 2.5 + بريل 675جم - موقوف",
"price": 62.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اكسترا مسحوق اتوماتيك 2.5 + بريل 675جم - موقوف",
"Product_EN": null,
"Product_Id": "00006046 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8066,
"name": "زاهر بيتزا بالبسطرمة - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتزا بالبسطرمة - موقوف",
"Product_EN": null,
"Product_Id": "00006047 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8067,
"name": "التوابل الشرقيه بانيه دجاج بارد 1 كجم 20 ق",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "التوابل الشرقيه بانيه دجاج بارد 1 كجم 20 ق",
"Product_EN": "Oriental Spices Chicken Pane Cold 1 kg 20 Pieces",
"Product_Id": "00006048 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8068,
"name": "فيبا منظف اطباق ليمون 4 لتر عرض - موقوف",
"price": 33.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا منظف اطباق ليمون 4 لتر عرض - موقوف",
"Product_EN": null,
"Product_Id": "00006049 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8069,
"name": "المراعى حليب كامل الدسم 200 مل - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب كامل الدسم 200 مل - موقوف",
"Product_EN": "Al Marai Full Cream Milk 200 ml",
"Product_Id": "00006050 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8070,
"name": "بيتى عصير اناناس 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير اناناس 235 مل",
"Product_EN": "Beyti Pineapple Juice 250 ml",
"Product_Id": "00006052 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8071,
"name": "كادبورى شوكولاتة فايف ستار ",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى شوكولاتة فايف ستار ",
"Product_EN": "Cadbury Chocolate Five Star ",
"Product_Id": "00006053 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8072,
"name": "على كافيه قهوة تحميص فرنسى 3*1 ظرف 20 جم",
"price": 28.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "على كافيه قهوة تحميص فرنسى 3*1 ظرف 20 جم",
"Product_EN": null,
"Product_Id": "00006054 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8073,
"name": "زاهر سينابون - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سينابون - موقوف",
"Product_EN": null,
"Product_Id": "00006055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8074,
"name": "دريم شيكولاتة خام 200 جم - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم شيكولاتة خام 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006056 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8075,
"name": "دريم شيكولاته للطبخ غامق 200 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم شيكولاته للطبخ غامق 200 جم",
"Product_EN": "Dreem Cooking Chocolate Dark 200 gm",
"Product_Id": "00006057 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8076,
"name": "جلاكسى شوكولاتة دايجيستيف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة دايجيستيف",
"Product_EN": "Galaxy Chocolate Digestive ",
"Product_Id": "00006058 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8077,
"name": "سنيكرز شوكولاتة بالبندق 40 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سنيكرز شوكولاتة بالبندق 40 جم",
"Product_EN": "Snickers Chocolate Hazelnut 40 gm",
"Product_Id": "00006059 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8078,
"name": "اللحيمي رومى مدخن وزن",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمي رومى مدخن وزن",
"Product_EN": "Elleheimy Smoked Turkey - Scalable ",
"Product_Id": "00006060 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8079,
"name": "ريتش روز بيف لحم بقرى مدخن وزن",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش روز بيف لحم بقرى مدخن وزن",
"Product_EN": "Rich Rose Beef Smoked Beef - Scalable ",
"Product_Id": "00006061 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8080,
"name": "فيتراك مربى فراولة 245 جم - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراولة 245 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006062 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8081,
"name": "برانش كروسان كبير فراولة",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش كروسان كبير فراولة",
"Product_EN": null,
"Product_Id": "00006063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8082,
"name": "برانش كرواسون جبنة اسطمبولى",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش كرواسون جبنة اسطمبولى",
"Product_EN": null,
"Product_Id": "00006064 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8083,
"name": "برسيل مسحوق ابيض 2.5 ك - موقوف",
"price": 99.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق ابيض 2.5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8084,
"name": "برسيل جيل بلاك 900 جم - موقوف",
"price": 33.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جيل بلاك 900 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8085,
"name": "برسيل جل اتوماتيك 1 لتر - موقوف",
"price": 33.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00006067 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8086,
"name": "جاردين كمبوت خوخ 850 جرام",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جاردين كمبوت خوخ 850 جرام",
"Product_EN": null,
"Product_Id": "00006068 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8087,
"name": "سيكم ينسون اعشاب 25 فتلة - موقوف",
"price": 20.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيكم ينسون اعشاب 25 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00006070 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8088,
"name": "دايجيستيف بسكويت شوفان ذهبي شيكولاتة 37.5 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجيستيف بسكويت شوفان ذهبي شيكولاتة 37.5 جم",
"Product_EN": null,
"Product_Id": "00006071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8089,
"name": "دايجيستيف بسكويت شوفان ذهبى الاصلى 28.6جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجيستيف بسكويت شوفان ذهبى الاصلى 28.6جم",
"Product_EN": null,
"Product_Id": "00006072 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8090,
"name": "دايجيستيف بسكويت قمح شيكولاتة بالحليب 33.3 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجيستيف بسكويت قمح شيكولاتة بالحليب 33.3 جم",
"Product_EN": null,
"Product_Id": "00006073 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8091,
"name": "دايجيستيف بسكويت قمح شيكولاته دارك 37.5 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجيستيف بسكويت قمح شيكولاته دارك 37.5 جم",
"Product_EN": null,
"Product_Id": "00006074 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8092,
"name": "تايد مسحوق يدوى ياسمسن 400جم - موقوف",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى ياسمسن 400جم - موقوف",
"Product_EN": null,
"Product_Id": "00006076 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8093,
"name": "افانتى جبنه فلمنك وزن",
"price": 128.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى جبنه فلمنك وزن",
"Product_EN": null,
"Product_Id": "00006077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8094,
"name": "زاهر كاروت كب كيك - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كاروت كب كيك - موقوف",
"Product_EN": null,
"Product_Id": "00006078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8095,
"name": "تشيزا جبن فلمنك وزن",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تشيزا جبن فلمنك وزن",
"Product_EN": null,
"Product_Id": "00006079 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8096,
"name": "اكياس نايلون زبدة وزن - موقوف",
"price": 34.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اكياس نايلون زبدة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00006080 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8097,
"name": "لاكتيل حليب كيس 500 مل",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لاكتيل حليب كيس 500 مل",
"Product_EN": "Lactel Milk Bag 500 ml",
"Product_Id": "00006082 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8098,
"name": "دايجستيف اوريجينال بسكويت 500جم",
"price": 37.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستيف اوريجينال بسكويت 500جم",
"Product_EN": null,
"Product_Id": "00006083 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8099,
"name": "زاهر كنافة بالكنتالوب كوب - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة بالكنتالوب كوب - موقوف",
"Product_EN": null,
"Product_Id": "00006084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8100,
"name": "زاهر كنافة بالرمان كوب - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة بالرمان كوب - موقوف",
"Product_EN": null,
"Product_Id": "00006085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8101,
"name": "اندومى سوبرمى شعريه سريعه التحضير خضار 120 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى سوبرمى شعريه سريعه التحضير خضار 120 جم",
"Product_EN": null,
"Product_Id": "00006091 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8102,
"name": "اندومى شعريه سريعه التحضير لحمه 70 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير لحمه 70 جم",
"Product_EN": null,
"Product_Id": "00006092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8103,
"name": "نستلة ميجا شيكولاتة بندق - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة ميجا شيكولاتة بندق - موقوف",
"Product_EN": null,
"Product_Id": "00006093 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8104,
"name": "مونجينى بابيتا باتيه جبنه رومى - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مونجينى بابيتا باتيه جبنه رومى - موقوف",
"Product_EN": null,
"Product_Id": "00006095 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8105,
"name": "مونجينى بابيتا كرواسون شيكولاتة - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مونجينى بابيتا كرواسون شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00006096 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8106,
"name": "مونجينى توست ناشف رجيم - موقوف",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مونجينى توست ناشف رجيم - موقوف",
"Product_EN": null,
"Product_Id": "00006097 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8107,
"name": "مونجينى بابيتا باتيه خضار - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مونجينى بابيتا باتيه خضار - موقوف",
"Product_EN": null,
"Product_Id": "00006098 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8108,
"name": "زاهر باباظ فواكهة - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر باباظ فواكهة - موقوف",
"Product_EN": null,
"Product_Id": "00006099 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8109,
"name": "الرشيدى الميزان حلاوه طحينية 850 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان حلاوه طحينية 850 جم",
"Product_EN": "El Rashidi El Mizan Halawa Tahini 850 gm",
"Product_Id": "00006100 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8110,
"name": "ريتش بيك بتى بان 5 ق",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك بتى بان 5 ق",
"Product_EN": null,
"Product_Id": "00006101 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8111,
"name": "ريتش بيك بتى بان 8 ق",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك بتى بان 8 ق",
"Product_EN": null,
"Product_Id": "00006102 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8112,
"name": "الطاهية لانشون لحم 250جم - موقوف",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الطاهية لانشون لحم 250جم - موقوف",
"Product_EN": null,
"Product_Id": "00006103 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8113,
"name": "زاهر عملاء ايس كريم فئة 7 ج وزن - موقوف",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عملاء ايس كريم فئة 7 ج وزن - موقوف",
"Product_EN": null,
"Product_Id": "00006104 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8114,
"name": "زاهر ايس كريم فئه 12 ج - وزن",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم فئه 12 ج - وزن",
"Product_EN": null,
"Product_Id": "00006105 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8115,
"name": "زاهر ايس كريم فئه 15 ج - وزن",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم فئه 15 ج - وزن",
"Product_EN": null,
"Product_Id": "00006106 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8116,
"name": "كنور فاين فودز صلصه طماطم ظرف 50 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فاين فودز صلصه طماطم ظرف 50 جم",
"Product_EN": "Knorr Fine Foods Tomato Paste 50 gm",
"Product_Id": "00006107 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8117,
"name": "جهينة زبادى 190 جم 2 ق عرض",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى 190 جم 2 ق عرض",
"Product_EN": null,
"Product_Id": "00006108 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8118,
"name": "المطبخ سكر ابيض 1 كجم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ سكر ابيض 1 كجم",
"Product_EN": "ElMatbakh white sugar 1 kg",
"Product_Id": "00006109 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8119,
"name": "ليبون دجاج مجمد 1.100 ك - موقوف",
"price": 22.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ليبون دجاج مجمد 1.100 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006110 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8120,
"name": "ليبون دجاج مجمد 1.200 ك - موقوف",
"price": 24.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ليبون دجاج مجمد 1.200 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006111 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8121,
"name": "جلاكسى شوكولاتة جواهر 900جم",
"price": 268,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة جواهر 900جم",
"Product_EN": "Galaxy Chocolate Jewels 900 gm",
"Product_Id": "00006112 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8122,
"name": "شاهين بن محوج حبهان 200 جم - موقوف",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شاهين بن محوج حبهان 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8123,
"name": "حدائق كاليفورنيا تونه قطعه واحده زيت زيتون 185 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونه قطعه واحده زيت زيتون 185 جم",
"Product_EN": "California Light Solid Tuna In Olive Oil 185 gm",
"Product_Id": "00006114 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8124,
"name": "امريكانا خضار مشكل 3 صنف مجمد 400 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا خضار مشكل 3 صنف مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00006115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8125,
"name": "امريكانا خرشوف مجمد 400 جم",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا خرشوف مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00006116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8126,
"name": "امريكانا شوربة خضار مجمد 400 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "امريكانا شوربة خضار مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00006117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8127,
"name": "مونجينى بابيتا باتية بالجبنة - موقوف",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مونجينى بابيتا باتية بالجبنة - موقوف",
"Product_EN": null,
"Product_Id": "00006118 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8128,
"name": "ليبتون شاى 100 فتلة خربش - موقوف",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 100 فتلة خربش - موقوف",
"Product_EN": null,
"Product_Id": "00006120 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8129,
"name": "ليبتون شاى 50 فتلة خربش - موقوف",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 50 فتلة خربش - موقوف",
"Product_EN": null,
"Product_Id": "00006121 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8130,
"name": "حلوانى شيش طاووق دجاج 400 جم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى شيش طاووق دجاج 400 جم",
"Product_EN": "Halwani Chicken Shish Tawooq 400 gm",
"Product_Id": "00006122 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8131,
"name": "حلوانى دبوس دجاج حار 700 جم",
"price": 58.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى دبوس دجاج حار 700 جم",
"Product_EN": "Halwani Spicy Chicken DrumSticks 700 gm",
"Product_Id": "00006123 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8132,
"name": "نستله زبادى فواكه فراولة 105 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى فواكه فراولة 105 جم",
"Product_EN": "Nestle Strawberry Fruit Yogurt 105 gm",
"Product_Id": "00006124 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8133,
"name": "مزارع دينا حليب بالقهوه 250 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا حليب بالقهوه 250 مل",
"Product_EN": "Dina Farms Coffee Milkshake 250 ml ",
"Product_Id": "00006125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8134,
"name": "فيرى مركز سائل تنطيف اطباق اصلى 450 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى مركز سائل تنطيف اطباق اصلى 450 جم",
"Product_EN": null,
"Product_Id": "00006126 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8135,
"name": "فاين مناديل 550 م",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين مناديل 550 م",
"Product_EN": null,
"Product_Id": "00006127 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8136,
"name": "كرودو ستيكس شيكولاتة 1 ق - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرودو ستيكس شيكولاتة 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006128 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8137,
"name": "كرودو ستيكس فانيليا 1 ق - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرودو ستيكس فانيليا 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8138,
"name": "كرودو ستيكس كراميل 1 ق - موقوف",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرودو ستيكس كراميل 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8139,
"name": "كرودو ستيكس بالحلاوه 1 ق - موقوف",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرودو ستيكس بالحلاوه 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006131 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8140,
"name": "زاهر كيك براونيز سادة - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كيك براونيز سادة - موقوف",
"Product_EN": null,
"Product_Id": "00006132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8141,
"name": "اريال مسحوق يدوى ياسمين 50 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 50 جم",
"Product_EN": null,
"Product_Id": "00006133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8142,
"name": "اريال مسحوق يدوى البركه 90 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى البركه 90 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8143,
"name": "اريال مسحوق يدوى توفير 1000 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى توفير 1000 جم",
"Product_EN": null,
"Product_Id": "00006135 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8144,
"name": "اريال مسحوق يدوى ياسمين 625 جم - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 625 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8145,
"name": "زيتون اخضر سليم جامبو وزن",
"price": 40.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زيتون اخضر سليم جامبو وزن",
"Product_EN": null,
"Product_Id": "00006137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8146,
"name": "ايزيس اعشاب قرفه بالزنجبيل 20 فلتر",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس اعشاب قرفه بالزنجبيل 20 فلتر",
"Product_EN": "iSiS Cinnamon & Ginger 12 Bags",
"Product_Id": "00006138 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8147,
"name": "زاهر كعب الغزال - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كعب الغزال - موقوف",
"Product_EN": null,
"Product_Id": "00006139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8148,
"name": "زاهر حلاوة سادة وزن",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر حلاوة سادة وزن",
"Product_EN": null,
"Product_Id": "00006140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8149,
"name": "زاهر حلاوة شيكولاتة ممتازة وزن",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر حلاوة شيكولاتة ممتازة وزن",
"Product_EN": null,
"Product_Id": "00006141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8150,
"name": "رانى مشروب حبيبات فراولة وموز كان 240 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب حبيبات فراولة وموز كان 240 مل",
"Product_EN": null,
"Product_Id": "00006143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8151,
"name": "رانى مشروب حبيبات جوافة كان 240 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب حبيبات جوافة كان 240 مل",
"Product_EN": null,
"Product_Id": "00006144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8152,
"name": "رانى مشروب حبيبات فاكهة مانجو كانز 240",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب حبيبات فاكهة مانجو كانز 240",
"Product_EN": null,
"Product_Id": "00006145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8153,
"name": "رانى مشروب فاكهة كوكتيل كانز 240",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب فاكهة كوكتيل كانز 240",
"Product_EN": null,
"Product_Id": "00006146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8154,
"name": "باربيكان شراب شعير رمان 250 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باربيكان شراب شعير رمان 250 مل",
"Product_EN": null,
"Product_Id": "00006147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8155,
"name": "بربيكان شراب شعير 250 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بربيكان شراب شعير 250 مل",
"Product_EN": null,
"Product_Id": "00006148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8156,
"name": "بربيكان شراب شعير تفاح 250 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بربيكان شراب شعير تفاح 250 مل",
"Product_EN": null,
"Product_Id": "00006149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8157,
"name": "رانى عصير جوافة تتراباك 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى عصير جوافة تتراباك 235 مل",
"Product_EN": null,
"Product_Id": "00006150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8158,
"name": "رانى عصير تفاح تتراباك 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى عصير تفاح تتراباك 235 مل",
"Product_EN": null,
"Product_Id": "00006151 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8159,
"name": "رانى عصير مانجو تتراباك 235 مل",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى عصير مانجو تتراباك 235 مل",
"Product_EN": null,
"Product_Id": "00006152 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8160,
"name": "رانى مشروب فاكهة تفاح بلاستيك 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب فاكهة تفاح بلاستيك 1 لتر",
"Product_EN": null,
"Product_Id": "00006153 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8161,
"name": "رانى مشروب فاكهة جوافة بلاستيك 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مشروب فاكهة جوافة بلاستيك 1 لتر",
"Product_EN": null,
"Product_Id": "00006154 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8162,
"name": "رانى سبارك نعنشة الخوخ 330 مل",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى سبارك نعنشة الخوخ 330 مل",
"Product_EN": null,
"Product_Id": "00006155 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8163,
"name": "رانى سبارك فروت مكس 330 مل",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى سبارك فروت مكس 330 مل",
"Product_EN": null,
"Product_Id": "00006156 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8164,
"name": "رانى سبارك فرفشة العنب 330 مل",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى سبارك فرفشة العنب 330 مل",
"Product_EN": null,
"Product_Id": "00006157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8165,
"name": "رانى سبارك حلاوة التفاح 330 مل",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى سبارك حلاوة التفاح 330 مل",
"Product_EN": null,
"Product_Id": "00006158 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8166,
"name": "لافاش جبنة فيتا تتراباك 200 جم",
"price": 5.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة فيتا تتراباك 200 جم",
"Product_EN": "LaVache Feta Cheese 200 gm",
"Product_Id": "00006159 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8167,
"name": "لافاش جبنة فيتا تتراباك 400 جم",
"price": 11.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة فيتا تتراباك 400 جم",
"Product_EN": "LaVache Feta Cheese 400 gm",
"Product_Id": "00006160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8168,
"name": "لافاش جبنة اسطمبولى تتراباك 200 جم",
"price": 5.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة اسطمبولى تتراباك 200 جم",
"Product_EN": "LaVache Istanbul Cheese 200 gm",
"Product_Id": "00006161 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8169,
"name": "لافاش جبنة اسطمبولى تتراباك 400جم",
"price": 11.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة اسطمبولى تتراباك 400جم",
"Product_EN": "LaVache Istanbul Cheese 200 gm",
"Product_Id": "00006162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8170,
"name": "لافاش جبنة كريمى قشطه 200 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنة كريمى قشطه 200 جم",
"Product_EN": "La Vache QuiRi Cream Cheese 200 gm",
"Product_Id": "00006163 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8171,
"name": "ميلكانا الترا كريم 5ك - موقوف",
"price": 475,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلكانا الترا كريم 5ك - موقوف",
"Product_EN": null,
"Product_Id": "00006164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8172,
"name": "فيتراك مربى تين 245 جم - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى تين 245 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006165 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8173,
"name": "فيتراك مربى فراوله كريمى 380 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله كريمى 380 جم",
"Product_EN": null,
"Product_Id": "00006166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8174,
"name": "تايد مسحوق يدوى ياسمين 40 جم - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى ياسمين 40 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006167 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8175,
"name": "زاهر كاروت كيك جزر - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كاروت كيك جزر - موقوف",
"Product_EN": null,
"Product_Id": "00006168 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8176,
"name": "زاهر مولتن كيك - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مولتن كيك - موقوف",
"Product_EN": null,
"Product_Id": "00006169 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8177,
"name": "زاهر سنيكرز كيك - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سنيكرز كيك - موقوف",
"Product_EN": null,
"Product_Id": "00006170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8178,
"name": "زاهر جلاكسى كيك - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جلاكسى كيك - موقوف",
"Product_EN": null,
"Product_Id": "00006171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8179,
"name": "زاهر مارس كيك - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مارس كيك - موقوف",
"Product_EN": null,
"Product_Id": "00006172 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8180,
"name": "زاهر تارت عين جمل - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تارت عين جمل - موقوف",
"Product_EN": null,
"Product_Id": "00006173 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8181,
"name": "زاهر تارت تفاح - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تارت تفاح - موقوف",
"Product_EN": null,
"Product_Id": "00006174 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8182,
"name": "زاهر تورته ايس كريم م 24 - موقوف",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم م 24 - موقوف",
"Product_EN": null,
"Product_Id": "00006175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8183,
"name": "زاهر تورته ايس كريم م 26 - موقوف",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم م 26 - موقوف",
"Product_EN": null,
"Product_Id": "00006176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8184,
"name": "البوادى طحينه 450 جم + البوادى خل 1 لتر",
"price": 31.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى طحينه 450 جم + البوادى خل 1 لتر",
"Product_EN": null,
"Product_Id": "00006177 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8185,
"name": "ماسك طعام",
"price": 30.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "ماسك طعام",
"Product_EN": null,
"Product_Id": "00006178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8186,
"name": "المراعى كريمة طهى 1 لتر",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى كريمة طهى 1 لتر",
"Product_EN": "Almarai Cooking Cream 1 L",
"Product_Id": "00006179 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8187,
"name": "زاهر علبة ايس كريم 4 اونز",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر علبة ايس كريم 4 اونز",
"Product_EN": null,
"Product_Id": "00006180 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8188,
"name": "زاهر غطاء علبة ايس كريم - 4 اونز - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر غطاء علبة ايس كريم - 4 اونز - موقوف",
"Product_EN": null,
"Product_Id": "00006181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8189,
"name": "زاهر علبة ايس كريم 6 اونز",
"price": 0.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر علبة ايس كريم 6 اونز",
"Product_EN": null,
"Product_Id": "00006182 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8190,
"name": "زاهر غطاء ايس كريم 6-8 اونز P576PET ",
"price": 0.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر غطاء ايس كريم 6-8 اونز P576PET ",
"Product_EN": null,
"Product_Id": "00006183 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8191,
"name": "زاهر قاعدة عبوة ورق 40 اونز CS040GL01",
"price": 1.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر قاعدة عبوة ورق 40 اونز CS040GL01",
"Product_EN": null,
"Product_Id": "00006184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8192,
"name": "زاهر غطاء على عبوة ورق 40 اونز - p598ppt",
"price": 1.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر غطاء على عبوة ورق 40 اونز - p598ppt",
"Product_EN": null,
"Product_Id": "00006185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8193,
"name": "زاهر مناديل مطبوع - موقوف",
"price": 33.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر مناديل مطبوع - موقوف",
"Product_EN": null,
"Product_Id": "00006187 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8194,
"name": "زاهر لبن بالمانجو كبير 1 لتر - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر لبن بالمانجو كبير 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00006189 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8195,
"name": "زاهر بودى كاستر - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بودى كاستر - موقوف",
"Product_EN": null,
"Product_Id": "00006191 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8196,
"name": "زاهر بودى مهلبية - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بودى مهلبية - موقوف",
"Product_EN": null,
"Product_Id": "00006192 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8197,
"name": "طازة فايش كركم حبة البركة صغير - موقوف",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة فايش كركم حبة البركة صغير - موقوف",
"Product_EN": null,
"Product_Id": "00006193 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8198,
"name": "طازة فايش كركم صغير - موقوف",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة فايش كركم صغير - موقوف",
"Product_EN": null,
"Product_Id": "00006194 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8199,
"name": "طازة بقسماط شامى - موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط شامى - موقوف",
"Product_EN": null,
"Product_Id": "00006195 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8200,
"name": "طازة بقسماط سن شوفان - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط سن شوفان - موقوف",
"Product_EN": null,
"Product_Id": "00006196 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8201,
"name": "طازة بقسماط سن سادة - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط سن سادة - موقوف",
"Product_EN": null,
"Product_Id": "00006197 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8202,
"name": "طازة بقسماط سماسم - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط سماسم - موقوف",
"Product_EN": null,
"Product_Id": "00006198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8203,
"name": "طازة باتون سالية سادة - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة باتون سالية سادة - موقوف",
"Product_EN": null,
"Product_Id": "00006199 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8204,
"name": "طازة باتون سالية رومى - موقوف",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة باتون سالية رومى - موقوف",
"Product_EN": null,
"Product_Id": "00006200 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8205,
"name": "طازة باتون سالية حبة البركة - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة باتون سالية حبة البركة - موقوف",
"Product_EN": null,
"Product_Id": "00006201 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8206,
"name": "طازة شرائح سن 7 حبوب - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة شرائح سن 7 حبوب - موقوف",
"Product_EN": null,
"Product_Id": "00006202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8207,
"name": "طازة شرائح سن شوفان - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة شرائح سن شوفان - موقوف",
"Product_EN": null,
"Product_Id": "00006203 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8208,
"name": "طازة باتون سالية سن كبير - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة باتون سالية سن كبير - موقوف",
"Product_EN": null,
"Product_Id": "00006204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8209,
"name": "طازة باتون سالية شوفان - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة باتون سالية شوفان - موقوف",
"Product_EN": null,
"Product_Id": "00006205 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8210,
"name": "طازة كيس عيش سن 1\/2ك - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة كيس عيش سن 1\/2ك - موقوف",
"Product_EN": null,
"Product_Id": "00006206 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8211,
"name": "طازة علبة سوارية دونتس فانيليا - موقوف",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة سوارية دونتس فانيليا - موقوف",
"Product_EN": null,
"Product_Id": "00006207 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8212,
"name": "طازة علبة سوارية دونتس شيكولاتة - موقوف",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة سوارية دونتس شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00006208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8213,
"name": "طازة فطير بلدى صغير - موقوف",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة فطير بلدى صغير - موقوف",
"Product_EN": null,
"Product_Id": "00006209 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8214,
"name": "طازة علبة سوارية مينى بيتزا - موقوف",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة سوارية مينى بيتزا - موقوف",
"Product_EN": null,
"Product_Id": "00006210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8215,
"name": "طازة رقائق فريسكا - موقوف",
"price": 12.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة رقائق فريسكا - موقوف",
"Product_EN": null,
"Product_Id": "00006211 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8216,
"name": "طازة بسكويت كوكيز شيكولاتة - موقوف",
"price": 38.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بسكويت كوكيز شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00006212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8217,
"name": "طازة علبة باتون سالية بالزبدة - موقوف",
"price": 30.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة باتون سالية بالزبدة - موقوف",
"Product_EN": null,
"Product_Id": "00006213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8218,
"name": "طازة علبة سوارية مينى دنش - موقوف",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:53",
"updated_at": "2021-11-01 19:45:53",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة سوارية مينى دنش - موقوف",
"Product_EN": null,
"Product_Id": "00006214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8219,
"name": "طازة بسكويت نشادر سادة - موقوف",
"price": 38.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بسكويت نشادر سادة - موقوف",
"Product_EN": null,
"Product_Id": "00006215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8220,
"name": "طازة قرص شمر - موقوف",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة قرص شمر - موقوف",
"Product_EN": null,
"Product_Id": "00006216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8221,
"name": "طازة قالب توست سادة - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة قالب توست سادة - موقوف",
"Product_EN": null,
"Product_Id": "00006217 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8222,
"name": "طازة قالب توست سن - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة قالب توست سن - موقوف",
"Product_EN": null,
"Product_Id": "00006218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8223,
"name": "طازة بيتى بان سن كيس - موقوف",
"price": 7.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بيتى بان سن كيس - موقوف",
"Product_EN": null,
"Product_Id": "00006219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8224,
"name": "طازة تمر سعودى فاخر 1 ك - موقوف",
"price": 77.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة تمر سعودى فاخر 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006221 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8225,
"name": "طازة تمر سعودى فاخر 1\/2 ك - موقوف",
"price": 51.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة تمر سعودى فاخر 1\/2 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006222 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8226,
"name": "طازة تمر سعودى فاخر 1\/4 ك - موقوف",
"price": 28.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة تمر سعودى فاخر 1\/4 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006223 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8227,
"name": "طازة بقسماط سماسم سادة - موقوف",
"price": 14.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط سماسم سادة - موقوف",
"Product_EN": null,
"Product_Id": "00006224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8228,
"name": "ليبتون شاى خربش 75 فتلة - موقوف",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى خربش 75 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00006225 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8229,
"name": "زاهر عسل ابيض صافى وزن",
"price": 74,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عسل ابيض صافى وزن",
"Product_EN": "Zaher Honey - Scalable ",
"Product_Id": "00006226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8230,
"name": "زاهر نوتيلا شيكولاتة وزن - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر نوتيلا شيكولاتة وزن - موقوف",
"Product_EN": null,
"Product_Id": "00006227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8231,
"name": "برسيل عالى الرغوه يدوى 60 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل عالى الرغوه يدوى 60 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006228 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8232,
"name": "برسيل مسحوق يدوى لافندر 350 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى لافندر 350 جم",
"Product_EN": null,
"Product_Id": "00006229 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8233,
"name": "برسيل مسحوق اتوماتيك 800 جم - موقوف",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك 800 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006230 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8234,
"name": "برسيل مسحوق اتوماتيك 2.5 ك+ بريل 675 مل - موقوف",
"price": 97,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك 2.5 ك+ بريل 675 مل - موقوف",
"Product_EN": null,
"Product_Id": "00006231 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8235,
"name": "جينرال منظف سائل عادى 730مل عرض - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف سائل عادى 730مل عرض - موقوف",
"Product_EN": null,
"Product_Id": "00006232 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8236,
"name": "ماكينة استريتش استنليس",
"price": 90.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "ماكينة استريتش استنليس",
"Product_EN": null,
"Product_Id": "00006233 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8237,
"name": "زاهرقاعده اوفال 8 اونز - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهرقاعده اوفال 8 اونز - موقوف",
"Product_EN": null,
"Product_Id": "00006234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8238,
"name": "زاهرغطاء اوفال 8 - 12 اونز - موقوف",
"price": 1.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهرغطاء اوفال 8 - 12 اونز - موقوف",
"Product_EN": null,
"Product_Id": "00006235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8239,
"name": "زاهر صوص توت وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر صوص توت وزن",
"Product_EN": "Zaher Blueberry Sauce - Scalable",
"Product_Id": "00006236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8240,
"name": "زاهر صوص كراميل وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر صوص كراميل وزن",
"Product_EN": "Zaher Caramel Sauce - Scalable ",
"Product_Id": "00006238 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8241,
"name": "طازة علبة سوارية كرواسون شيكولاتة - موقوف",
"price": 19.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة سوارية كرواسون شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00006239 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8242,
"name": "طازة علبة ساليزون حوادق و نواشف - موقوف",
"price": 34.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة ساليزون حوادق و نواشف - موقوف",
"Product_EN": null,
"Product_Id": "00006240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8243,
"name": "طازة بقسماط عين صلصة - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط عين صلصة - موقوف",
"Product_EN": null,
"Product_Id": "00006242 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8244,
"name": "طازة بسكويت ينسون انس ربع ك - موقوف",
"price": 18.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بسكويت ينسون انس ربع ك - موقوف",
"Product_EN": null,
"Product_Id": "00006243 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8245,
"name": "طازة باتون سالية سن صغير - موقوف",
"price": 8.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة باتون سالية سن صغير - موقوف",
"Product_EN": null,
"Product_Id": "00006244 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8246,
"name": "طازة بقسماط عين يمامة - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط عين يمامة - موقوف",
"Product_EN": null,
"Product_Id": "00006245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8247,
"name": "طازة علبة منين سادة - موقوف",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة منين سادة - موقوف",
"Product_EN": null,
"Product_Id": "00006246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8248,
"name": "طازة عيش سن طرى - موقوف",
"price": 7.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة عيش سن طرى - موقوف",
"Product_EN": null,
"Product_Id": "00006247 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8249,
"name": "طازة بقسماط زبدة صفراء - موقوف",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط زبدة صفراء - موقوف",
"Product_EN": null,
"Product_Id": "00006248 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8250,
"name": "طازة بقسماط محلب كمون - موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط محلب كمون - موقوف",
"Product_EN": "7 Up Can 330 ml",
"Product_Id": "00006249 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8251,
"name": "لامورينا شاور جيل 1لتر ( احساس الانتعاش)",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1لتر ( احساس الانتعاش)",
"Product_EN": null,
"Product_Id": "00011986 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8252,
"name": "لامورينا شاور جيل 1لتر (المسك الابيض)",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1لتر (المسك الابيض)",
"Product_EN": null,
"Product_Id": "00011987 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8253,
"name": "لامورينا شاور جيل 1لتر ( العود )",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1لتر ( العود )",
"Product_EN": null,
"Product_Id": "00011988 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8254,
"name": "لامورينا شاور جيل 1لتر ( كاموميل )",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1لتر ( كاموميل )",
"Product_EN": null,
"Product_Id": "00011989 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8255,
"name": "لامورينا شاور جيل 1لتر ( روز )",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1لتر ( روز )",
"Product_EN": null,
"Product_Id": "00011990 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8256,
"name": "لامورينا شاور جيل 1لتر ( لافندر )",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1لتر ( لافندر )",
"Product_EN": null,
"Product_Id": "00011991 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8257,
"name": "لامورينا شاور جيل 1لتر ( عسل ولبن )",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1لتر ( عسل ولبن )",
"Product_EN": null,
"Product_Id": "00011992 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8258,
"name": "لامورينا شاور جيل 1لتر ( دوفانا )",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 1لتر ( دوفانا )",
"Product_EN": null,
"Product_Id": "00011993 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8259,
"name": "لامورينا شاور جيل 2لتر (العطر المميز)",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر (العطر المميز)",
"Product_EN": null,
"Product_Id": "00011994 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8260,
"name": "لامورينا شاور جيل 2لتر (بطيخ)",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر (بطيخ)",
"Product_EN": null,
"Product_Id": "00011995 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8261,
"name": "لامورينا شاور جيل 2لتر (خوخ)",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر (خوخ)",
"Product_EN": null,
"Product_Id": "00011996 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8262,
"name": "لامورينا شاور جيل 2 لتر (رمان)",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2 لتر (رمان)",
"Product_EN": null,
"Product_Id": "00011997 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8263,
"name": "لامورينا شاور جيل 2لتر ( احساس الانتعاش)",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر ( احساس الانتعاش)",
"Product_EN": null,
"Product_Id": "00011998 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8264,
"name": "لامورينا شاور جيل 2لتر (المسك الابيض)",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر (المسك الابيض)",
"Product_EN": null,
"Product_Id": "00011999 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8265,
"name": "لامورينا شاور جيل 2لتر ( العود )",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر ( العود )",
"Product_EN": null,
"Product_Id": "00012000 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8266,
"name": "لامورينا شاور جيل 2لتر ( كاموميل )",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر ( كاموميل )",
"Product_EN": null,
"Product_Id": "00012001 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8267,
"name": "لامورينا شاور جيل 2لتر ( روز )",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر ( روز )",
"Product_EN": null,
"Product_Id": "00012002 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8268,
"name": "لامورينا شاور جيل 2لتر ( لافندر )",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر ( لافندر )",
"Product_EN": null,
"Product_Id": "00012003 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8269,
"name": "لامورينا شاور جيل 2لتر ( عسل ولبن )",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر ( عسل ولبن )",
"Product_EN": null,
"Product_Id": "00012004 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8270,
"name": "لامورينا شاور جيل 2لتر ( دوفانا )",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لامورينا شاور جيل 2لتر ( دوفانا )",
"Product_EN": null,
"Product_Id": "00012005 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8271,
"name": "المراعى زبادى فراوله ستارز 105 جم 3 + 1 ق - عرض ",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى فراوله ستارز 105 جم 3 + 1 ق - عرض ",
"Product_EN": "Almarai Yogurt Light 3+1 Pieces - Offer ",
"Product_Id": "00012006 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8272,
"name": "ريكسونا مزيل عرق مضاد للبكتريا رجالى 50 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق مضاد للبكتريا رجالى 50 مل",
"Product_EN": "Rexona Men Deodorant Antibacterial Defense 50 ml",
"Product_Id": "00012007 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8273,
"name": "ريكسونا مزيل عرق حمايه ضد البكتيريا 50 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل عرق حمايه ضد البكتيريا 50 مل",
"Product_EN": "Rexona Anti-Bacterial Deodorant 50 ml",
"Product_Id": "00012008 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8274,
"name": "سيجنال معجون اسنان وايتنج مضاعف 50 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان وايتنج مضاعف 50 مل",
"Product_EN": "Signal Toothpaste Double Whitening 50 ml",
"Product_Id": "00012010 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8275,
"name": "ليبتون شاى اخضر بدون مراره 100 فتله + مج",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر بدون مراره 100 فتله + مج",
"Product_EN": "Lipton green tea without bitterness 100 bags + mug",
"Product_Id": "00012012 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8276,
"name": "برينجلز بالطعم الملح الاصلي 130 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برينجلز بالطعم الملح الاصلي 130 جم",
"Product_EN": "Pringles Original Salt 130 gm",
"Product_Id": "00012013 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8277,
"name": "برينجلز بالشواء 130جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برينجلز بالشواء 130جم",
"Product_EN": "Pringles Barbegue 130 gm ",
"Product_Id": "00012014 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8278,
"name": "برينجلز بالبصل والروبة 130 جم ",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برينجلز بالبصل والروبة 130 جم ",
"Product_EN": "Pringles Sour Cream & Onion 130 gm",
"Product_Id": "00012015 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8279,
"name": "برينجلز بابريكا 130جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برينجلز بابريكا 130جم",
"Product_EN": "Pringles Paprika 130 gm",
"Product_Id": "00012016 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8280,
"name": "برينجلز بالطعم الحراق 130جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برينجلز بالطعم الحراق 130جم",
"Product_EN": "Pringles Hot & Spicy 130 gm",
"Product_Id": "00012017 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8281,
"name": "عطاره . ذره اسبانى وزن",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ذره اسبانى وزن",
"Product_EN": "Attara Spanish Corn - Scalable",
"Product_Id": "00012018 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8282,
"name": "عطاره . فول سودانى بشوكولاتة وزن",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فول سودانى بشوكولاتة وزن",
"Product_EN": "Attara Chocolate Peanuts - Scalable",
"Product_Id": "00012019 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8283,
"name": "عطاره . شوكولاتة شيبس وزن",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوكولاتة شيبس وزن",
"Product_EN": "Attara Chocolate Chips - Scalable ",
"Product_Id": "00012020 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8284,
"name": "فيروز تفاح و بطيخ كان 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز تفاح و بطيخ كان 250 مل",
"Product_EN": null,
"Product_Id": "00012022 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8285,
"name": "فيروز مانجو وخوخ كان 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز مانجو وخوخ كان 250 مل",
"Product_EN": "Fayrouz Mango and Peach Can 250 ml",
"Product_Id": "00012023 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8286,
"name": "فيروز خوخ كان 250 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز خوخ كان 250 مل",
"Product_EN": null,
"Product_Id": "00012024 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8287,
"name": "الويز الترا تربو ليلى 12*16 فوطه",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز الترا تربو ليلى 12*16 فوطه",
"Product_EN": null,
"Product_Id": "00012025 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8288,
"name": "الويز ملمس قطنى نعومه فريش 9*16",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ملمس قطنى نعومه فريش 9*16",
"Product_EN": null,
"Product_Id": "00012026 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8289,
"name": "الويز ملمس قطنى نعومه فريش 6*24 اكسترا",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ملمس قطنى نعومه فريش 6*24 اكسترا",
"Product_EN": null,
"Product_Id": "00012027 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8290,
"name": "الويز ماكس دوبل 16*18 - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ماكس دوبل 16*18 - موقوف",
"Product_EN": null,
"Product_Id": "00012028 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8291,
"name": "اولويز فوط صحيه ماكسي سميكه 32 فوطه",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز فوط صحيه ماكسي سميكه 32 فوطه",
"Product_EN": null,
"Product_Id": "00012029 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8292,
"name": "اولويز فوط صحية ماكسي سميكة طويل 9 فوط",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز فوط صحية ماكسي سميكة طويل 9 فوط",
"Product_EN": null,
"Product_Id": "00012031 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8293,
"name": "فيرى تفاح احمر 500 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى تفاح احمر 500 مل",
"Product_EN": null,
"Product_Id": "00012032 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8294,
"name": "فيرى تفاح احمر 1 لتر",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى تفاح احمر 1 لتر",
"Product_EN": null,
"Product_Id": "00012033 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8295,
"name": "بامبرز بانتس حفاضات اطفال مقاس 6 - 48 حفاظه",
"price": 151,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز بانتس حفاضات اطفال مقاس 6 - 48 حفاظه",
"Product_EN": null,
"Product_Id": "00012036 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8296,
"name": "بانتين شامبو صحى ونظيف 600 مل",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو صحى ونظيف 600 مل",
"Product_EN": null,
"Product_Id": "00012037 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8297,
"name": "عطاره . فول سودانى اسوانى وزن",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فول سودانى اسوانى وزن",
"Product_EN": "Attara Peanuts Aswany - Scalable ",
"Product_Id": "00012039 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8298,
"name": "عطاره . فول سودانى حلوانى وزن",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فول سودانى حلوانى وزن",
"Product_EN": "Attara Halwani Peanut - Scalable ",
"Product_Id": "00012040 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8299,
"name": "زاهر مخبوزات دانش لوكس 1 ق 150 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات دانش لوكس 1 ق 150 جم",
"Product_EN": "Zaher Danish Luxe 1 Pieces 150 g",
"Product_Id": "00012041 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8300,
"name": "طيبات الوادى ماء ورد 250 مل",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى ماء ورد 250 مل",
"Product_EN": null,
"Product_Id": "00012042 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8301,
"name": "طيبات الوادى ماء زهر 250 مل",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى ماء زهر 250 مل",
"Product_EN": null,
"Product_Id": "00012043 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8302,
"name": "طيبات الوادى خل تفاح 250 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى خل تفاح 250 مل",
"Product_EN": null,
"Product_Id": "00012044 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8303,
"name": "طيبات الوادى دبس رمان 250 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى دبس رمان 250 مل",
"Product_EN": null,
"Product_Id": "00012045 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8304,
"name": "طيبات الوادى صوص باربيكيو 250 مل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى صوص باربيكيو 250 مل",
"Product_EN": null,
"Product_Id": "00012046 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8305,
"name": "طيبات الوادى بديل ليمون 250 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى بديل ليمون 250 مل",
"Product_EN": null,
"Product_Id": "00012047 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8306,
"name": "الرشيدى الميزان طحينة 780 جم",
"price": 51.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان طحينة 780 جم",
"Product_EN": "El Rashidi Tahina 780 gm",
"Product_Id": "00012049 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8307,
"name": "طيبات الوادى صويا صوص 250 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى صويا صوص 250 مل",
"Product_EN": null,
"Product_Id": "00012050 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8308,
"name": "تشويس صوص باربكيو 320 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس صوص باربكيو 320 جم",
"Product_EN": null,
"Product_Id": "00012051 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8309,
"name": "فيروز مشروب بطيخ 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز مشروب بطيخ 1 لتر",
"Product_EN": null,
"Product_Id": "00012052 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8310,
"name": "هيرشيز ريسيز توب اكواب شيكولاتة بزبدة الفول السودا",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرشيز ريسيز توب اكواب شيكولاتة بزبدة الفول السودا",
"Product_EN": "Hershey's Reese's Top Peanut Butter Chocolate ",
"Product_Id": "00012053 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8311,
"name": "زاهر تورتة ايس كريم شيكولاته KROCCO MILK",
"price": 200,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم شيكولاته KROCCO MILK",
"Product_EN": "Zaher Chocolate KROCCO MILK Ice Cream Torte",
"Product_Id": "00012054 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8312,
"name": "زاهر تورتة ايس كريم باونتي KROCCO MILK",
"price": 245,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم باونتي KROCCO MILK",
"Product_EN": "Zaher Bounty KROCCO MILK Ice Cream Torte",
"Product_Id": "00012055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8313,
"name": "زاهر تورتة ايس كريم نوتيلا KROCCO MILK",
"price": 255,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم نوتيلا KROCCO MILK",
"Product_EN": "Zaher Nutella KROCCO MILK Ice Cream Torte",
"Product_Id": "00012056 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8314,
"name": "كويكر حبوب الشوفان الكاملة 400 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كويكر حبوب الشوفان الكاملة 400 جم",
"Product_EN": "Quaker Whole Oat Flakes 400 gm",
"Product_Id": "00012057 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8315,
"name": "الخير خل ابيض 1 لتر 5 %",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الخير خل ابيض 1 لتر 5 %",
"Product_EN": null,
"Product_Id": "00012058 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8316,
"name": "كوفى ميكس خمسينه محوجه ظرف 6 جم ",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوفى ميكس خمسينه محوجه ظرف 6 جم ",
"Product_EN": "Coffee Mix Fifties Mahwag Sachet 6 gm",
"Product_Id": "00012059 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8317,
"name": "بونجورنو قرفه وكاكاو ظرف 36 جم ",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بونجورنو قرفه وكاكاو ظرف 36 جم ",
"Product_EN": "Bonjorno Cinnamon & Cocoa Sachet 36 gm",
"Product_Id": "00012060 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8318,
"name": "الشمعدان مينى اوتو بسكويت ويفر 13 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان مينى اوتو بسكويت ويفر 13 جم",
"Product_EN": null,
"Product_Id": "00012061 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8319,
"name": "الشمعدان مينى كتاكيتو بالكراميل 18 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان مينى كتاكيتو بالكراميل 18 جم",
"Product_EN": null,
"Product_Id": "00012062 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8320,
"name": "زاهر دانش قرفه 1 ق 125جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر دانش قرفه 1 ق 125جم",
"Product_EN": "Zaher Danish w Cinnamon 1 Pieces 125 g",
"Product_Id": "00012063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8321,
"name": "كواليتى تمر اورينتــــــال 700جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر اورينتــــــال 700جم",
"Product_EN": null,
"Product_Id": "00012064 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8322,
"name": "كواليتى تمر كواليتي 1500جم",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر كواليتي 1500جم",
"Product_EN": null,
"Product_Id": "00012065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8323,
"name": "كواليتى تمرسادة فوم 300جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمرسادة فوم 300جم",
"Product_EN": null,
"Product_Id": "00012066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8324,
"name": "كواليتى تمر باللـــــــوز مدور 16 ق",
"price": 13.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر باللـــــــوز مدور 16 ق",
"Product_EN": null,
"Product_Id": "00012067 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8325,
"name": "كواليتى تمر كواليتي 250 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر كواليتي 250 جم",
"Product_EN": null,
"Product_Id": "00012068 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8326,
"name": "كواليتى تمر الوادي مميز 500 جم ",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر الوادي مميز 500 جم ",
"Product_EN": "Quality Al Wadi Dates Special 500 gm",
"Product_Id": "00012069 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8327,
"name": " كواليتى تمر بعين الجمل 12 قطعة",
"price": 13.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": " كواليتى تمر بعين الجمل 12 قطعة",
"Product_EN": null,
"Product_Id": "00012070 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8328,
"name": "كواليتى تمر بالسـمسـم 12 قطعة",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر بالسـمسـم 12 قطعة",
"Product_EN": null,
"Product_Id": "00012071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8329,
"name": "كواليتى تمر محشي باللوز علبة خشب",
"price": 21.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر محشي باللوز علبة خشب",
"Product_EN": null,
"Product_Id": "00012072 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8330,
"name": "كواليتى تمر محشي بعين الجمل علبة خشب",
"price": 21.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر محشي بعين الجمل علبة خشب",
"Product_EN": null,
"Product_Id": "00012073 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8331,
"name": "كواليتى تمر محشي بالسمسم علبة خشب",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر محشي بالسمسم علبة خشب",
"Product_EN": null,
"Product_Id": "00012074 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8332,
"name": "كواليتى تمر بوكيــــــــه 1كجم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر بوكيــــــــه 1كجم",
"Product_EN": null,
"Product_Id": "00012075 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8333,
"name": " كواليتى عسل اسود 750 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": " كواليتى عسل اسود 750 جم",
"Product_EN": null,
"Product_Id": "00012076 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8334,
"name": "كواليتى شوفان سريع التحضير 500 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى شوفان سريع التحضير 500 جم",
"Product_EN": "Quality Instant Oats 500 gm",
"Product_Id": "00012077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8335,
"name": "كواليتى أرز بسمتي هندى فاخر 900جم",
"price": 40.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى أرز بسمتي هندى فاخر 900جم",
"Product_EN": null,
"Product_Id": "00012078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8336,
"name": "كواليتى أرز بسمتي تايلاندى فاخر900 جم",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى أرز بسمتي تايلاندى فاخر900 جم",
"Product_EN": "Quality Thai Basmati Rice 900 gm",
"Product_Id": "00012079 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8337,
"name": "كواليتى فول سوداني أسواني 250جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى فول سوداني أسواني 250جم",
"Product_EN": null,
"Product_Id": "00012080 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8338,
"name": "كواليتى فول سوداني أسواني 500جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى فول سوداني أسواني 500جم",
"Product_EN": null,
"Product_Id": "00012081 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8339,
"name": "اوكسى مسحوق اوتوماتيك لافندر 10 كجم",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى مسحوق اوتوماتيك لافندر 10 كجم",
"Product_EN": null,
"Product_Id": "00012082 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8340,
"name": "باب الشام بهارات مشاوى 40جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باب الشام بهارات مشاوى 40جم",
"Product_EN": null,
"Product_Id": "00012083 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8341,
"name": "باب الشام مأكولات بحريه 30 جم ",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باب الشام مأكولات بحريه 30 جم ",
"Product_EN": null,
"Product_Id": "00012084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8342,
"name": "باب الشام دقه 35 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باب الشام دقه 35 جم",
"Product_EN": null,
"Product_Id": "00012085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8343,
"name": "باب الشام تشانكى وسط عرض 2 قطعه",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باب الشام تشانكى وسط عرض 2 قطعه",
"Product_EN": null,
"Product_Id": "00012086 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8344,
"name": "باب الشام تشانكى حار عرض 2قطعه",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باب الشام تشانكى حار عرض 2قطعه",
"Product_EN": null,
"Product_Id": "00012087 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8345,
"name": "باب الشام تشانكى بارد عرض 2 قطعه",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باب الشام تشانكى بارد عرض 2 قطعه",
"Product_EN": null,
"Product_Id": "00012088 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8346,
"name": "نيدو زبادى فراولة 105 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نيدو زبادى فراولة 105 جم",
"Product_EN": "NIDO Strawberry Yogurt 105 gm",
"Product_Id": "00012089 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8347,
"name": "نيدو زبادى موز 105 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نيدو زبادى موز 105 جم",
"Product_EN": "NIDO Banana Yogurt 105 gm",
"Product_Id": "00012090 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8348,
"name": "ميلكا بسكويت بالشوكولاتة والبرتقال",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بسكويت بالشوكولاتة والبرتقال",
"Product_EN": "Milka Chocolate & Orange Biscuits",
"Product_Id": "00012091 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8349,
"name": "شيفى خلطة الارز البريانى 50 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى خلطة الارز البريانى 50 جم",
"Product_EN": null,
"Product_Id": "00012092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8350,
"name": "طيبات الوادى خل عنب 250مل",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طيبات الوادى خل عنب 250مل",
"Product_EN": null,
"Product_Id": "00012093 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8351,
"name": "لوتس كريمة برطمان 400 جم",
"price": 94,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس كريمة برطمان 400 جم",
"Product_EN": "LOTUS Cream Jar 400 gm",
"Product_Id": "00012094 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8352,
"name": "زاهر بوليف مشكل مخلل طبيعى زجاج 400 جم ",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بوليف مشكل مخلل طبيعى زجاج 400 جم ",
"Product_EN": null,
"Product_Id": "00012096 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8353,
"name": "زاهر بوليف مشكل مخلل طبيعى زجاج 600 جم ",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بوليف مشكل مخلل طبيعى زجاج 600 جم ",
"Product_EN": null,
"Product_Id": "00012099 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8354,
"name": "كورونا شيكولاتة سبريد جولد 180 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة سبريد جولد 180 جم",
"Product_EN": null,
"Product_Id": "00012100 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8355,
"name": "ابو عوف قهوه سريعه التحضير كلاسيك 200 جم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف قهوه سريعه التحضير كلاسيك 200 جم",
"Product_EN": "Abu Auf Instant Coffee Classic 200 gm",
"Product_Id": "00012101 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8356,
"name": "ابو عوف قهوه سريعه التحضير انتنس 200 جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف قهوه سريعه التحضير انتنس 200 جم",
"Product_EN": "Abu Auf Intense Instant Coffee 200 gm",
"Product_Id": "00012102 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8357,
"name": "ابو عوف قهوه سريعه التحضير جولد 200 جم",
"price": 81,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف قهوه سريعه التحضير جولد 200 جم",
"Product_EN": "Abu Auf Instant Coffee Gold 200 gm",
"Product_Id": "00012103 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8358,
"name": "عبد المعطى جبنه فيتا وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبد المعطى جبنه فيتا وزن",
"Product_EN": null,
"Product_Id": "00012104 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8359,
"name": "عبد المعطى جبنه ملح خفيف وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبد المعطى جبنه ملح خفيف وزن",
"Product_EN": null,
"Product_Id": "00012105 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8360,
"name": "زاهر جبنه كيرى ساده وزن",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر جبنه كيرى ساده وزن",
"Product_EN": "Zaher Cheese Curry Plain - Scalable ",
"Product_Id": "00012106 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8361,
"name": "جينرال منظف زهور الربيع 730مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف زهور الربيع 730مل",
"Product_EN": null,
"Product_Id": "00012107 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8362,
"name": "سفن اب الهضبة زجاج 350 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب الهضبة زجاج 350 مل",
"Product_EN": "7 Up El Hadaba Bottle 300 ml",
"Product_Id": "00012108 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8363,
"name": "زاهر ايس كريم جوافة - وزن",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم جوافة - وزن",
"Product_EN": "Zaher Guava Ice Cream - Scalable ",
"Product_Id": "00012110 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8364,
"name": "شادى باك غطاء فلات 500-600 مل بدون كروس",
"price": 0.34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شادى باك غطاء فلات 500-600 مل بدون كروس",
"Product_EN": null,
"Product_Id": "00012111 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8365,
"name": "شادى باك كوب 250 مل شفاف",
"price": 0.63,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شادى باك كوب 250 مل شفاف",
"Product_EN": null,
"Product_Id": "00012112 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8366,
"name": "زاهر كافى - شاى اسطف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - شاى اسطف",
"Product_EN": null,
"Product_Id": "00012113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8367,
"name": "زاهر كافى - قهوه اسطف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر كافى - قهوه اسطف",
"Product_EN": null,
"Product_Id": "00012114 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8368,
"name": "عطاره . الكابتن زيت زنجبيل 30 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الكابتن زيت زنجبيل 30 مل",
"Product_EN": "Attara - El Captain Ginger Oil 30 ml",
"Product_Id": "00012115 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8369,
"name": "باميرز مناديل مبلله 24*12 منديل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "باميرز مناديل مبلله 24*12 منديل",
"Product_EN": null,
"Product_Id": "00012116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8370,
"name": "دايجستيف شوكو ساندوتش جامبو",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستيف شوكو ساندوتش جامبو",
"Product_EN": null,
"Product_Id": "00012117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8371,
"name": "اولكر ويفر شيكو كرانشى 26 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر ويفر شيكو كرانشى 26 جم",
"Product_EN": null,
"Product_Id": "00012118 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8372,
"name": "جلاكسى شيكولاته ساده 22 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شيكولاته ساده 22 جم",
"Product_EN": "Galaxy Chocolate Plain 22 gm",
"Product_Id": "00012119 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8373,
"name": "سنيكرز شيكولاته كرسبى 40 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سنيكرز شيكولاته كرسبى 40 جم",
"Product_EN": "Snickers Chocolate Crispy 40 gm",
"Product_Id": "00012120 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8374,
"name": "عطاره . حمص طبيخ وزن",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . حمص طبيخ وزن",
"Product_EN": "Attara Cooked Hummus - Scalable ",
"Product_Id": "00012121 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8375,
"name": "دريم كريم باتيسيرى 100 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كريم باتيسيرى 100 جم",
"Product_EN": "Dreem Patisserie Pastry Cream 100 gm",
"Product_Id": "00012122 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8376,
"name": "دريم وندر سبريد شوكولاتة 330 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم وندر سبريد شوكولاتة 330 جم",
"Product_EN": "Dreem Wonder Chocolate Spread 330 gm",
"Product_Id": "00012123 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8377,
"name": "دريم وندر شيكولاته سبريد 900 جم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم وندر شيكولاته سبريد 900 جم",
"Product_EN": "Dreem Wonder Chocolate Spread 900 gm",
"Product_Id": "00012124 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8378,
"name": "كيندر شيكولاتة كريمى 19 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيندر شيكولاتة كريمى 19 جم",
"Product_EN": "Kinder Creamy Chocolate 19 gm",
"Product_Id": "00012125 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8379,
"name": "عطاره . مقرمشات صيني متبلة وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مقرمشات صيني متبلة وزن",
"Product_EN": "Attara Chinese Spiced Crackers - Scalable ",
"Product_Id": "00012126 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8380,
"name": "عطاره . جيلي اسبانى مشكل كيس - موقوف",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . جيلي اسبانى مشكل كيس - موقوف",
"Product_EN": null,
"Product_Id": "00012129 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8381,
"name": "كوفى جوي بسكويت القهوه 45 جم",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوفى جوي بسكويت القهوه 45 جم",
"Product_EN": null,
"Product_Id": "00012130 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8382,
"name": "ايرلى سبرينج مشروب بذور الريحان بنكهه الفراوله",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايرلى سبرينج مشروب بذور الريحان بنكهه الفراوله",
"Product_EN": "Early Spring Basil Seed Drink Strawberry Flavor",
"Product_Id": "00012131 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8383,
"name": "ايرلى سبرنج مشروب بذور الريحان بنكهه البطيخ",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايرلى سبرنج مشروب بذور الريحان بنكهه البطيخ",
"Product_EN": "Early Spring Basil Seed Drink Watermelon Flavor",
"Product_Id": "00012132 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8384,
"name": "ايرلى سبرنج مشروب بذور الريحان بنكهه الرمان",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايرلى سبرنج مشروب بذور الريحان بنكهه الرمان",
"Product_EN": "Early Spring Basil Seed Drink Pomegranate Flavor",
"Product_Id": "00012133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8385,
"name": "ايرلى سبرنج مشروب بذور الريحان بنكهه الشمام",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايرلى سبرنج مشروب بذور الريحان بنكهه الشمام",
"Product_EN": "Early Spring Basil Seed Drink With Melon Flavor",
"Product_Id": "00012134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8386,
"name": "زينه تريو مناديل سحب 550 منديل * 3 ق",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه تريو مناديل سحب 550 منديل * 3 ق",
"Product_EN": null,
"Product_Id": "00012136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8387,
"name": "عطاره . بردقوش وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بردقوش وزن",
"Product_EN": "Attara Marjoram - Scalable ",
"Product_Id": "00012137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8388,
"name": "عطاره . قرفه خشب وزن",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . قرفه خشب وزن",
"Product_EN": "Attara Cinnamon Wood - Scalable ",
"Product_Id": "00012138 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8389,
"name": "احمد تي شاي افطار انجليزي ناعم ثقيل 250 جم",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تي شاي افطار انجليزي ناعم ثقيل 250 جم",
"Product_EN": "Ahmad Tea Black Tea Loose Extra Strong 250 gm",
"Product_Id": "00012139 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8390,
"name": "عطاره . ورق جوافة وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ورق جوافة وزن",
"Product_EN": "Attara Guava Leaves - Scalable ",
"Product_Id": "00012140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8391,
"name": "عطاره . جيلي اسبانى مشكل وزن",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . جيلي اسبانى مشكل وزن",
"Product_EN": "Attara Mixed Spanish Jelly - Scalable ",
"Product_Id": "00012141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8392,
"name": "كارمن مناديل علب سحب 200 منديل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كارمن مناديل علب سحب 200 منديل",
"Product_EN": null,
"Product_Id": "00012142 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8393,
"name": "كارمن مناديل تواليت 24 بكره",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كارمن مناديل تواليت 24 بكره",
"Product_EN": null,
"Product_Id": "00012143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8394,
"name": "كارمن مناديل تواليت مضغوط كومبكت 6 بكره",
"price": 29.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كارمن مناديل تواليت مضغوط كومبكت 6 بكره",
"Product_EN": null,
"Product_Id": "00012144 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8395,
"name": "كارمن مناديل مطبخ مضغوط 6 بكرة",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كارمن مناديل مطبخ مضغوط 6 بكرة",
"Product_EN": null,
"Product_Id": "00012145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8396,
"name": "كارمن ميجا باك 600 منديل",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كارمن ميجا باك 600 منديل",
"Product_EN": null,
"Product_Id": "00012146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8397,
"name": "كارمن سمارت باك 160 منديل 6 ق",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كارمن سمارت باك 160 منديل 6 ق",
"Product_EN": null,
"Product_Id": "00012147 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8398,
"name": "كارمن جامبو باك 450 منديل + 1 ق باكيت جيب عرض",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كارمن جامبو باك 450 منديل + 1 ق باكيت جيب عرض",
"Product_EN": null,
"Product_Id": "00012148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8399,
"name": "كارمن رول مطبخ جامبو 1 كجم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كارمن رول مطبخ جامبو 1 كجم",
"Product_EN": null,
"Product_Id": "00012149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8400,
"name": "باب الشام مسحوق البصل 40 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باب الشام مسحوق البصل 40 جم",
"Product_EN": null,
"Product_Id": "00012150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8401,
"name": "جرين لاند جبنه فيتا مشطشطه 500جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند جبنه فيتا مشطشطه 500جم",
"Product_EN": "Green Land Feta Cheese Chili 500 gm",
"Product_Id": "00012151 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8402,
"name": "فاست منظف سائل للسجاد و المفروشات 795 مل * 2 ق",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاست منظف سائل للسجاد و المفروشات 795 مل * 2 ق",
"Product_EN": null,
"Product_Id": "00012153 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8403,
"name": "كامينا سائل الاستحمام 750 مل + 400 مل عرض",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كامينا سائل الاستحمام 750 مل + 400 مل عرض",
"Product_EN": null,
"Product_Id": "00012154 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8404,
"name": "لوتس بسكويت 250 جم ",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت 250 جم ",
"Product_EN": "LOTUS Biscuits 250 gm",
"Product_Id": "00012155 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8405,
"name": "لواكر جاردينا ويفر بالبندق 38 جم 4+1 مجانا",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر جاردينا ويفر بالبندق 38 جم 4+1 مجانا",
"Product_EN": "Loacker Gardena Wafer Hazelnut 38gm 4+1 Free",
"Product_Id": "00012156 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8406,
"name": "لواكر جاردينا ويفر بالشوكولاته 38 جم 4+1 مجانا",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لواكر جاردينا ويفر بالشوكولاته 38 جم 4+1 مجانا",
"Product_EN": "Loacker Gardena Wafer Chocolate 38 gm 4+1 Free",
"Product_Id": "00012157 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8407,
"name": "كارمن مناديل تواليت 9 بكرة + 1 باكت مناديل جيب عرض",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كارمن مناديل تواليت 9 بكرة + 1 باكت مناديل جيب عرض",
"Product_EN": null,
"Product_Id": "00012158 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8408,
"name": "مارتى مناديل ابيض ناعمة 550 منديل * 3 ق",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مارتى مناديل ابيض ناعمة 550 منديل * 3 ق",
"Product_EN": null,
"Product_Id": "00012159 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8409,
"name": "برينجلز بطعم الجبنه 40 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برينجلز بطعم الجبنه 40 جم",
"Product_EN": "Pringles Cheesy Cheese 40 gm",
"Product_Id": "00012160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8410,
"name": "توفيفي شيكولاته بالبندق علبه 125 جم ",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توفيفي شيكولاته بالبندق علبه 125 جم ",
"Product_EN": "Toffee Chocolate with Hazelnuts125 gm ",
"Product_Id": "00012162 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8411,
"name": "جلاكسي مشروب شيكولاته 350 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جلاكسي مشروب شيكولاته 350 جم",
"Product_EN": "Galaxy Drink Chocolate 350 gm",
"Product_Id": "00012163 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8412,
"name": "سنيكرز مشروب شوكولاته كراميل 350 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "سنيكرز مشروب شوكولاته كراميل 350 جم",
"Product_EN": "Snickers Caramel Chocolate Drink 350 gm",
"Product_Id": "00012164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8413,
"name": "مالتيزرس مشروب شيكولاته 350 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مالتيزرس مشروب شيكولاته 350 جم",
"Product_EN": "Maltesers Chocolate Drink 350 ml",
"Product_Id": "00012165 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8414,
"name": "مارس مشروب شيكولاته باللبن 350 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مارس مشروب شيكولاته باللبن 350 جم",
"Product_EN": "Mars Milk Chocolate Drink 350 gm",
"Product_Id": "00012166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8415,
"name": "تويكس مشروب شيكولاته كراميل 350 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تويكس مشروب شيكولاته كراميل 350 جم",
"Product_EN": "Twix Caramel Chocolate Drink 350 gm",
"Product_Id": "00012167 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8416,
"name": "نوتيلا بي ريدى ويفر محشو بكريمة البندق كاكاو 22 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوتيلا بي ريدى ويفر محشو بكريمة البندق كاكاو 22 جم",
"Product_EN": "Nutella B-ready Wafer Hazelnut Cream Cocoa 22 gm",
"Product_Id": "00012168 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8417,
"name": "اوريو بسكويت مغطى بالشوكولاته 246 جم 6 ق",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريو بسكويت مغطى بالشوكولاته 246 جم 6 ق",
"Product_EN": "OREO Biscuits Covered Chocolate 246 gm 6 Pieces ",
"Product_Id": "00012169 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8418,
"name": "اوريو بسكويت مغطى بالشوكولاتة البيضاء 246 جم 6 ق",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوريو بسكويت مغطى بالشوكولاتة البيضاء 246 جم 6 ق",
"Product_EN": "OREO Biscuits Covered With White Chocolate 246 gm ",
"Product_Id": "00012170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8419,
"name": "ستاربكس مشروب قهوه بنكهه الفانيليا 250 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس مشروب قهوه بنكهه الفانيليا 250 مل",
"Product_EN": "Starbucks Coffee Drink Vanilla Flavor 250 ml",
"Product_Id": "00012171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8420,
"name": "ستاربكس مشروب قهوه مع حليب ارابيكا 250 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس مشروب قهوه مع حليب ارابيكا 250 مل",
"Product_EN": "Starbucks Coffee Drink With Milk 250 ml",
"Product_Id": "00012172 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8421,
"name": "ستاربكس مشروب قهوه ارابيكا 250 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس مشروب قهوه ارابيكا 250 مل",
"Product_EN": "Starbucks Coffee Drink ArabiKa 250 ml",
"Product_Id": "00012173 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8422,
"name": "لوتس بسكويت محشو شوكولاته 162 جم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت محشو شوكولاته 162 جم",
"Product_EN": "LOTUS Biscuits Filled With Chocolate 162 gm",
"Product_Id": "00012174 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8423,
"name": "نستله شوكولاته بجوز الهند 70 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله شوكولاته بجوز الهند 70 جم",
"Product_EN": "Nestle Coconut Chocolate 70 gm",
"Product_Id": "00012175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8424,
"name": "نستله شوكولاته براونيز 70 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله شوكولاته براونيز 70 جم",
"Product_EN": "Nestle Chocolate Brownies 70 gm",
"Product_Id": "00012176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8425,
"name": "سمارتيز شوكولاتة 100 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سمارتيز شوكولاتة 100 جم",
"Product_EN": "Smarties Chocolate 100 gm",
"Product_Id": "00012177 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8426,
"name": "ريتر سبورت شوكولاته حليب محشوه بكريمه الكاكاو100جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شوكولاته حليب محشوه بكريمه الكاكاو100جم",
"Product_EN": "Ritter Sport Milk Chocolate & Cocoa Cream 100gm",
"Product_Id": "00012178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8427,
"name": "ريتر سبورت شوكولاته غامقه 61% 100 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شوكولاته غامقه 61% 100 جم",
"Product_EN": "Ritter Sport Dark chocolate 61% 100 gm",
"Product_Id": "00012181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8428,
"name": "ريتر سبورت شوكولاته بالحليب كريمه جوز الهند 100جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شوكولاته بالحليب كريمه جوز الهند 100جم",
"Product_EN": "Ritter Sport Milk Chocolate Coconut Cream 100gm",
"Product_Id": "00012182 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8429,
"name": "مالتيزرز تيزرز شيكولاته بقطع كرانشى 35 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مالتيزرز تيزرز شيكولاته بقطع كرانشى 35 جم",
"Product_EN": "Maltesers Tears Chocolate Crunchy 35gm",
"Product_Id": "00012185 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8430,
"name": "هالك بسكويت الشاي 400 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هالك بسكويت الشاي 400 جم",
"Product_EN": null,
"Product_Id": "00012186 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8431,
"name": "تشويس مايونيز برطمان 250 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس مايونيز برطمان 250 مل",
"Product_EN": null,
"Product_Id": "00012187 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8432,
"name": "ديلي فريش كاتشب طماطم 340 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلي فريش كاتشب طماطم 340 جم",
"Product_EN": null,
"Product_Id": "00012188 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8433,
"name": "تشويس كمبوت فواكه مشكله 820 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس كمبوت فواكه مشكله 820 جم",
"Product_EN": null,
"Product_Id": "00012189 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8434,
"name": "تشويس مشروم شرائح 400 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس مشروم شرائح 400 جم",
"Product_EN": null,
"Product_Id": "00012190 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8435,
"name": "ليندانا جبنه جوده معتقة هولندى وزن",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ليندانا جبنه جوده معتقة هولندى وزن",
"Product_EN": null,
"Product_Id": "00012192 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8436,
"name": "ريفولى شاور 3 لتر _ موقوف",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريفولى شاور 3 لتر _ موقوف",
"Product_EN": null,
"Product_Id": "00012193 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8437,
"name": "ريفولى شاور 3 لتر",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريفولى شاور 3 لتر",
"Product_EN": null,
"Product_Id": "00012194 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8438,
"name": "زاهر كيزر صغير حبة البركة 6 ق - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كيزر صغير حبة البركة 6 ق - موقوف",
"Product_EN": "Zaher Burger Buns w Nigella Sativa 6 pieces",
"Product_Id": "00012195 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8439,
"name": "رويال جبنه جوده بالشطة هولندى وزن",
"price": 222,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رويال جبنه جوده بالشطة هولندى وزن",
"Product_EN": null,
"Product_Id": "00012196 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8440,
"name": "الشروق تمر سعودي بالشوكولاتة 250 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر سعودي بالشوكولاتة 250 جم",
"Product_EN": "Al Shorouk Saudi Dates Chocolate 250 gm",
"Product_Id": "00012197 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8441,
"name": "الشروق تمر الوادى 1 كجم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر الوادى 1 كجم",
"Product_EN": "Al-Shorouk Dates Al Wadi 1 kg",
"Product_Id": "00012198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8442,
"name": "ريماس لاند جبنه مطبوخه جبنه شيدر 250 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريماس لاند جبنه مطبوخه جبنه شيدر 250 جم",
"Product_EN": null,
"Product_Id": "00012199 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8443,
"name": "ريماس لاند جبنه مطبوخه جبنه رومي 250 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريماس لاند جبنه مطبوخه جبنه رومي 250 جم",
"Product_EN": null,
"Product_Id": "00012200 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8444,
"name": "ريماس لاند جبنه مطبوخه جبنه ريكفورد 250 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريماس لاند جبنه مطبوخه جبنه ريكفورد 250 جم",
"Product_EN": null,
"Product_Id": "00012201 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8445,
"name": "ريماس لاند جبنه مطبوخه قشطه 250 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريماس لاند جبنه مطبوخه قشطه 250 جم",
"Product_EN": null,
"Product_Id": "00012202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8446,
"name": "نسكافيه اوريجنال قهوة سريعه التحضير 3*1 18 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه اوريجنال قهوة سريعه التحضير 3*1 18 جم",
"Product_EN": null,
"Product_Id": "00012203 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8447,
"name": "كارمن تو جو باك 300 منديل * 3 قطعه + 1 وايبس 24 من",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كارمن تو جو باك 300 منديل * 3 قطعه + 1 وايبس 24 من",
"Product_EN": null,
"Product_Id": "00012204 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8448,
"name": "سبايسي خلطة حواوشي 90 جم ",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة حواوشي 90 جم ",
"Product_EN": "Spysi Seasoning Hawashi 90 gm",
"Product_Id": "00012205 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8449,
"name": "القرشي معمول بالشوكولاته 125 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشي معمول بالشوكولاته 125 جم",
"Product_EN": "Al Qurashi Maamoul Chocolate 125 gm",
"Product_Id": "00012206 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8450,
"name": "ديفا سائل غسيل ايدي نعومه الجلسرين 500 مل",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديفا سائل غسيل ايدي نعومه الجلسرين 500 مل",
"Product_EN": null,
"Product_Id": "00012207 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8451,
"name": "فلفيتا منعم ومعطر المنسوجات 1 كجم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفيتا منعم ومعطر المنسوجات 1 كجم",
"Product_EN": null,
"Product_Id": "00012208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8452,
"name": "ماكسيل ماجيك منظف ارضيات طارد للحشرات 1.8 لتر",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ماكسيل ماجيك منظف ارضيات طارد للحشرات 1.8 لتر",
"Product_EN": null,
"Product_Id": "00012210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8453,
"name": "عليا سبرنك للمعجنات",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عليا سبرنك للمعجنات",
"Product_EN": null,
"Product_Id": "00012211 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8454,
"name": "الملكة لازانيا 400 جم ",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة لازانيا 400 جم ",
"Product_EN": "El Maleka Lasagna 400 gm",
"Product_Id": "00012212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8455,
"name": "نيو كابيتال بكر كاشير مطبوع 70 م",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "نيو كابيتال بكر كاشير مطبوع 70 م",
"Product_EN": null,
"Product_Id": "00012213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8456,
"name": "نيو كابيتال بكر كاشير مطبوع 25 م",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "نيو كابيتال بكر كاشير مطبوع 25 م",
"Product_EN": null,
"Product_Id": "00012214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8457,
"name": "نيو كابيتال بكر كاشير مطبوع 35 م",
"price": 5.6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "نيو كابيتال بكر كاشير مطبوع 35 م",
"Product_EN": null,
"Product_Id": "00012215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8458,
"name": "نيو كابيتال بكر كاشير مطبوع 40 م",
"price": 6.4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "نيو كابيتال بكر كاشير مطبوع 40 م",
"Product_EN": null,
"Product_Id": "00012216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8459,
"name": "الشروق تمر سكرى سعودى بالشكولاتة و اللوز 250 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر سكرى سعودى بالشكولاتة و اللوز 250 جم",
"Product_EN": "Al Shorouk Dates Saudi Chocolate & Almonds 250 gm ",
"Product_Id": "00012218 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8460,
"name": "زاهر ديزيرت - مافن كيك",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - مافن كيك",
"Product_EN": null,
"Product_Id": "00012219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8461,
"name": "زاهر ديزيرت - سابيلية علبة 500 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - سابيلية علبة 500 جم",
"Product_EN": null,
"Product_Id": "00012220 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8462,
"name": "زاهر سلطة كولو سلو وزن",
"price": 59.9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطة كولو سلو وزن",
"Product_EN": null,
"Product_Id": "00012221 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8463,
"name": "روباريل زبده فول سودانى عسل340 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روباريل زبده فول سودانى عسل340 جم",
"Product_EN": null,
"Product_Id": "00012222 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8464,
"name": "روباريل زبده فول سودانى شيكولاتة 340 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روباريل زبده فول سودانى شيكولاتة 340 جم",
"Product_EN": null,
"Product_Id": "00012223 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8465,
"name": "اريا ل جل اوتوماتيك داونى 1.8 كجم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريا ل جل اوتوماتيك داونى 1.8 كجم",
"Product_EN": null,
"Product_Id": "00012224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8466,
"name": "القرشي تمر بالشوكولاته 125 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشي تمر بالشوكولاته 125 جم",
"Product_EN": "Al Qurashi Dates Chocolate 125 gm",
"Product_Id": "00012226 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8467,
"name": "القرشى تمر باللوز 125 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر باللوز 125 جم",
"Product_EN": "Al Qurashi Dates With Almonds 125 gm",
"Product_Id": "00012227 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8468,
"name": "هاينز صلصة برطمان 2 ق + زجاجة خل 1\/2 لتر",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصة برطمان 2 ق + زجاجة خل 1\/2 لتر",
"Product_EN": "Heinz Sauce Jar 2 Pieces + Vinegar Bottle 1\/2 L",
"Product_Id": "00012228 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8469,
"name": "زاهر ايس كريم كنتالوب - وزن",
"price": 56.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم كنتالوب - وزن",
"Product_EN": "Zaher Cantaloupe Ice Cream - Scalable ",
"Product_Id": "00012230 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8470,
"name": "كبدة رومى صافى وزن",
"price": 64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كبدة رومى صافى وزن",
"Product_EN": null,
"Product_Id": "00012231 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8471,
"name": "فرولا توفى كريز",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فرولا توفى كريز",
"Product_EN": null,
"Product_Id": "00012232 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8472,
"name": "فرولا توفي فراوله",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فرولا توفي فراوله",
"Product_EN": null,
"Product_Id": "00012233 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8473,
"name": "لاكتيل مشروب رايب فراوله 220 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل مشروب رايب فراوله 220 جم",
"Product_EN": "Lactel Strawberry Rayeb Drink 220 gm",
"Product_Id": "00012235 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8474,
"name": "سيجنال معجون اسنان وايتنج مفعول مضاعف 100مل",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان وايتنج مفعول مضاعف 100مل",
"Product_EN": "Signal Toothpaste Whitening Double Action 100 ml",
"Product_Id": "00012236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8475,
"name": "صن لايت مسحوق اتوماتيك انتعاش نسيم البحر 1كجم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "صن لايت مسحوق اتوماتيك انتعاش نسيم البحر 1كجم",
"Product_EN": "Sunlight Automatic Powder Sea Breeze Fresh 1 kg",
"Product_Id": "00012237 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8476,
"name": "عطاره . فول سودانى مملح وزن",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فول سودانى مملح وزن",
"Product_EN": "Attara Salted Peanuts - Scalable ",
"Product_Id": "00012238 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8477,
"name": "ايون شيكولاته دارك فواكه 90 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شيكولاته دارك فواكه 90 جم",
"Product_EN": "Ion Dark Chocolate Super Fruits 90 gm",
"Product_Id": "00012239 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8478,
"name": "ايون شيكولاته دارك برتقال 90 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شيكولاته دارك برتقال 90 جم",
"Product_EN": "ION Orange Dark Chocolate 90 gm",
"Product_Id": "00012240 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8479,
"name": "ايون شيكولاته دارك اسبرسو 90 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شيكولاته دارك اسبرسو 90 جم",
"Product_EN": "ION Espresso Dark Chocolate 90 gm",
"Product_Id": "00012241 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8480,
"name": "ايون شيكولاته باللوز والكراميل 90 جم ",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شيكولاته باللوز والكراميل 90 جم ",
"Product_EN": "ION Almonds & Caramel Dark Chocolate 90 gm",
"Product_Id": "00012242 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8481,
"name": "ايون شيكولاته دارك 70% كاكاو 90 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شيكولاته دارك 70% كاكاو 90 جم",
"Product_EN": "ION 70% Cocoa Dark Chocolate 90 gm",
"Product_Id": "00012243 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8482,
"name": "ايون شيكولاته دارك كلاسيك 90 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون شيكولاته دارك كلاسيك 90 جم",
"Product_EN": "Aeon Chocolate Dark Classic 90 gm",
"Product_Id": "00012244 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8483,
"name": "وايت كاسل لوكسري ويفر شيكولاته 300 جم",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل لوكسري ويفر شيكولاته 300 جم",
"Product_EN": "White Castle Luxury Creamy Wafers Chocolate 100 gm",
"Product_Id": "00012245 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8484,
"name": "وايت كاسل لوكسري ويفر فراوله 300 جم",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل لوكسري ويفر فراوله 300 جم",
"Product_EN": "White Castle Luxury Creamy Wafers strawberry100 gm",
"Product_Id": "00012246 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8485,
"name": "وايت كاسل لوكسري ويفر بندق 300 جم",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل لوكسري ويفر بندق 300 جم",
"Product_EN": "White Castle Luxury Wafer Hazelnut 300 gm",
"Product_Id": "00012247 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8486,
"name": "وايت كاسل لوكسري ويفر فانيليا 100 جم",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل لوكسري ويفر فانيليا 100 جم",
"Product_EN": "White Castle Luxury Wafer Vanilla 100 gm",
"Product_Id": "00012248 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8487,
"name": "وايت كاسل لوكسري ويفر كوكيز وكريمه 100 جم",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاسل لوكسري ويفر كوكيز وكريمه 100 جم",
"Product_EN": "White Castle Luxury Wafer Cookies & Cream 100gm",
"Product_Id": "00012249 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8488,
"name": "وايت كاستل اصابع ويفر بالشوكولاتة 100 جم",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "وايت كاستل اصابع ويفر بالشوكولاتة 100 جم",
"Product_EN": "White Castle Wafer Fingers Chocolate 100 gm",
"Product_Id": "00012250 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8489,
"name": "ميلكا شوكولاتة مومنت ميكس 97 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة مومنت ميكس 97 جم",
"Product_EN": "Milka Chocolate Moments Mix 97 gm",
"Product_Id": "00012251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8490,
"name": "ميلكا شوكولاتة مومنت اوريو 97 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة مومنت اوريو 97 جم",
"Product_EN": "Milka Chocolate Moments OREO 97 gm",
"Product_Id": "00012252 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8491,
"name": "ميلكا شوكولاتة مومنت بالكراميل واللوز 97 جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة مومنت بالكراميل واللوز 97 جم",
"Product_EN": "Milka Moment Chocolate Caramel & Almond 97 gm",
"Product_Id": "00012253 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8492,
"name": "ميلكا شوكولاتة مومنت طوفى وبندق 97جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة مومنت طوفى وبندق 97جم",
"Product_EN": "Milka Moment Toffee Chocolate & Hazelnut 97 gm",
"Product_Id": "00012254 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8493,
"name": "تويكس شيكولاته سبريد 200 جم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تويكس شيكولاته سبريد 200 جم",
"Product_EN": "Twix Chocolate Spread 200 gm",
"Product_Id": "00012255 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8494,
"name": "ام اند ام شيكولاته سبريد حليب 200جم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ام اند ام شيكولاته سبريد حليب 200جم",
"Product_EN": "M&M Milk Chocolate Spread 200 gm",
"Product_Id": "00012256 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8495,
"name": "مالتيزرز شيكولاته سبريد عسل 200 جم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مالتيزرز شيكولاته سبريد عسل 200 جم",
"Product_EN": "Maltesers Chocolate Honey Spread 200 gm",
"Product_Id": "00012257 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8496,
"name": "باونتى جوز الهند بالحليب 200 جم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باونتى جوز الهند بالحليب 200 جم",
"Product_EN": "Bounty Coconut Milk 200 gm",
"Product_Id": "00012258 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8497,
"name": "لوتس بسكويت رولز بالشوكولاته 150 جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت رولز بالشوكولاته 150 جم",
"Product_EN": "LOTUS Biscuit Rolls Chocolate 150 gm",
"Product_Id": "00012259 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8498,
"name": "لوتس بسكويت رولز 150 جم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت رولز 150 جم",
"Product_EN": "LOTUS Biscuits Rolls 150 gm",
"Product_Id": "00012260 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8499,
"name": "لوتس بسكويت بالشوكولاته والحليب 180 جم",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس بسكويت بالشوكولاته والحليب 180 جم",
"Product_EN": "LOTUS Biscuits Milk Chocolate 180 gm",
"Product_Id": "00012261 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8500,
"name": "لوتس شوكولاته بالحليب والكريمه 180 جم",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوتس شوكولاته بالحليب والكريمه 180 جم",
"Product_EN": "LOTUS Milk Chocolate & Cream 180 gm",
"Product_Id": "00012262 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8501,
"name": "ميلكا بولز شوكولاتة 100 جم",
"price": 77,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بولز شوكولاتة 100 جم",
"Product_EN": "Milka Balls Chocolate 100 gm",
"Product_Id": "00012263 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8502,
"name": "ميلكا بولز شوكولاتة كرسبى 100 جم",
"price": 77,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بولز شوكولاتة كرسبى 100 جم",
"Product_EN": "Milka Balls Crispy Chocolate 100 gm",
"Product_Id": "00012264 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8503,
"name": "ايون ويفر الشوكولاتة بالبندق 38جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون ويفر الشوكولاتة بالبندق 38جم",
"Product_EN": "Ion Wafer Hazelnut Chocofreta 38 gm",
"Product_Id": "00012265 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8504,
"name": "ايون بسكويت ويفر شوكولاته 38 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايون بسكويت ويفر شوكولاته 38 جم",
"Product_EN": "Aeon Biscuits Wafer Chocolate 38 gm",
"Product_Id": "00012266 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8505,
"name": "هيرشيز ريسيز شوكولاتة بالحليب والفول السودانى 39جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرشيز ريسيز شوكولاتة بالحليب والفول السودانى 39جم",
"Product_EN": "Hershey's Reese's Milk Chocolate Peanut 39 gm",
"Product_Id": "00012267 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8506,
"name": "ميلكا شوكولاتة اوريو 37 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة اوريو 37 جم",
"Product_EN": "Milka Oreo Chocolate 37 gm",
"Product_Id": "00012268 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8507,
"name": "ميلكا بسكويت بالشوكولاتة 260 جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بسكويت بالشوكولاتة 260 جم",
"Product_EN": "Milka Chocolate Biscuits 260 gm",
"Product_Id": "00012269 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8508,
"name": "ميلكا بسكويت بالشوكولاتة 150 جم ",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بسكويت بالشوكولاتة 150 جم ",
"Product_EN": "Milka Chocolate Biscuits 150 gm",
"Product_Id": "00012270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8509,
"name": "ميلكا شوكو مو بسكويت شوكولاتة 120 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكو مو بسكويت شوكولاتة 120 جم",
"Product_EN": "Milka Choco Moo Chocolate 120 gm",
"Product_Id": "00012271 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8510,
"name": "ميلكا كوكيز 185 جم XL ",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا كوكيز 185 جم XL ",
"Product_EN": "Milka cookies XL184 gm",
"Product_Id": "00012272 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8511,
"name": "مارس بسكويت كوكيز 162جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مارس بسكويت كوكيز 162جم",
"Product_EN": "Mars Biscuits Cookies 162 gm",
"Product_Id": "00012273 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8512,
"name": "مارس بسكويت كوكيز اكسترا شوكولاته وكراميل",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مارس بسكويت كوكيز اكسترا شوكولاته وكراميل",
"Product_EN": "Mars Cookies Extra Chocolate & Caramel",
"Product_Id": "00012275 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8513,
"name": "شانكى خلطه دحاج حار 400جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شانكى خلطه دحاج حار 400جم",
"Product_EN": null,
"Product_Id": "00012276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8514,
"name": "شانكى خلطه دجاج وسط 400جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شانكى خلطه دجاج وسط 400جم",
"Product_EN": null,
"Product_Id": "00012277 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8515,
"name": "شانكى خلطه دجاج عادى 400جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شانكى خلطه دجاج عادى 400جم",
"Product_EN": null,
"Product_Id": "00012278 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8516,
"name": "زاهر سمنه بلدى جاموسى وزن ( عميل خاص ) - موقوف",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر سمنه بلدى جاموسى وزن ( عميل خاص ) - موقوف",
"Product_EN": "Zaher Buffalo Native Ghee - Scalable",
"Product_Id": "00012279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8517,
"name": "فان داى فشار بالكراميل 60 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى فشار بالكراميل 60 جم",
"Product_EN": "FunDay Popcorn Caramel 60 gm",
"Product_Id": "00012280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8518,
"name": "فان داي فشار بالملح 60 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داي فشار بالملح 60 جم",
"Product_EN": "FunDay Popcorn Salt 60 gm",
"Product_Id": "00012282 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8519,
"name": "فان داى كيك فانيلا بقطع الفاكهه 50 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى كيك فانيلا بقطع الفاكهه 50 جم",
"Product_EN": "FunDay Cake Vanilla Fruit 50 gm",
"Product_Id": "00012283 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8520,
"name": "عطاره . ملبس دامل فواكه مشكله وزن - موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ملبس دامل فواكه مشكله وزن - موقوف",
"Product_EN": "Attara Candied Damel Fruits - Scalable ",
"Product_Id": "00012284 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8521,
"name": "عطاره . كونو مشكل وزن - موقوف",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كونو مشكل وزن - موقوف",
"Product_EN": "Attara Cono Issue - Scalable ",
"Product_Id": "00012285 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8522,
"name": "جرين لاند فيتا بالزيتون 250 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند فيتا بالزيتون 250 جم",
"Product_EN": "Greenland Feta Olives 250 gm",
"Product_Id": "00012286 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8523,
"name": "جرين لاند فيتا بالبسطرمه 250 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جرين لاند فيتا بالبسطرمه 250 جم",
"Product_EN": "Greenland Feta Pastrami 250 gm",
"Product_Id": "00012287 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8524,
"name": "نستله زبادى جولد بطعم اللوز 105 جم ",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستله زبادى جولد بطعم اللوز 105 جم ",
"Product_EN": "Nestle Gold Almond Yogurt 105 gm",
"Product_Id": "00012288 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8525,
"name": "تيست بيور لانشون رول ساده 500جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تيست بيور لانشون رول ساده 500جم",
"Product_EN": null,
"Product_Id": "00012289 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8526,
"name": "تيست بيور لانشون رول فلفل اسود 500 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تيست بيور لانشون رول فلفل اسود 500 جم",
"Product_EN": null,
"Product_Id": "00012290 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8527,
"name": "تيست بيور لانشون رول زيتون 500جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تيست بيور لانشون رول زيتون 500جم",
"Product_EN": null,
"Product_Id": "00012291 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8528,
"name": "تيست بيور لانشون قطع لحم 500جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تيست بيور لانشون قطع لحم 500جم",
"Product_EN": null,
"Product_Id": "00012292 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8529,
"name": "تيست بيور لانشون قطع بسطرمه رول 500 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تيست بيور لانشون قطع بسطرمه رول 500 جم",
"Product_EN": null,
"Product_Id": "00012293 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8530,
"name": "كافى ليون بن اسبرسو وزن",
"price": 330,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كافى ليون بن اسبرسو وزن",
"Product_EN": null,
"Product_Id": "00012294 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8531,
"name": "عطاره . لب بطيخ وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . لب بطيخ وزن",
"Product_EN": "Attara Watermelon Pulp - Scalable ",
"Product_Id": "00012295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8532,
"name": "عطاره . ملبس فواكة دهب وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . ملبس فواكة دهب وزن",
"Product_EN": "Attara Candied Fruit Dahab - Scalable ",
"Product_Id": "00012296 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8533,
"name": "عطاره . بيكان نى وزن",
"price": 600,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بيكان نى وزن",
"Product_EN": "Attara Pecan Ne - Scalable ",
"Product_Id": "00012297 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8534,
"name": "عطاره . مكاديميا محمص وزن",
"price": 800,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مكاديميا محمص وزن",
"Product_EN": "Attara Macadamia Roasted - Scalable ",
"Product_Id": "00012298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8535,
"name": "كبريت مصرى وسط 120عود",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "كبريت مصرى وسط 120عود",
"Product_EN": null,
"Product_Id": "00012299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8536,
"name": "SAHRNE شيكولاتة",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "SAHRNE شيكولاتة",
"Product_EN": null,
"Product_Id": "00012300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8537,
"name": "عبد المعبود بن بالشوكولاته 125 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود بن بالشوكولاته 125 جم",
"Product_EN": "Abd El Maaboud Coffee with Chocolate 125 gm",
"Product_Id": "00012301 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8538,
"name": "عبد المعبود قهوه بالفانيليا 125جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود قهوه بالفانيليا 125جم",
"Product_EN": "Abd El Maaboud Coffee With Vanilla 125 gm",
"Product_Id": "00012302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8539,
"name": "عبد المعبود قهوه بالبندق 125 جم ",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:54",
"updated_at": "2021-11-01 19:45:54",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود قهوه بالبندق 125 جم ",
"Product_EN": "Abd El Maaboud Coffee With Hazelnut 125 gm",
"Product_Id": "00012303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8540,
"name": "عبد المعبود قهوه فرنساوى 125 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود قهوه فرنساوى 125 جم",
"Product_EN": "Abd El Maaboud French Coffee 125 gm",
"Product_Id": "00012304 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8541,
"name": "عبد المعبود قهوه اسبريسو 250 جم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عبد المعبود قهوه اسبريسو 250 جم",
"Product_EN": "Abd El Maaboud Espresso Coffee 250 gm",
"Product_Id": "00012305 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8542,
"name": "مزارع دينا زبادى 3+1ق",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا زبادى 3+1ق",
"Product_EN": "Dina Farms Yogurt 3 +1 Pieces ",
"Product_Id": "00012306 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8543,
"name": "ايفونى كمامة طبيه 50 ق",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايفونى كمامة طبيه 50 ق",
"Product_EN": null,
"Product_Id": "00012307 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8544,
"name": "اكياس لبن 16 سم * 30 سم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "اكياس لبن 16 سم * 30 سم",
"Product_EN": null,
"Product_Id": "00012308 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8545,
"name": "الفجر اكياس لبن 20 سم * 35 سم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "الفجر اكياس لبن 20 سم * 35 سم",
"Product_EN": null,
"Product_Id": "00012309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8546,
"name": "الفجر شنط وسط 28 سم * 45 سم",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "الفجر شنط وسط 28 سم * 45 سم",
"Product_EN": null,
"Product_Id": "00012311 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8547,
"name": "الفجر شنط وسط 35 سم * 60 سم",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "الفجر شنط وسط 35 سم * 60 سم",
"Product_EN": null,
"Product_Id": "00012312 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8548,
"name": "اكسترا جيل اتوماتيك منخفض الرغوه زهورالربيع 2.5كجم",
"price": 69,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اكسترا جيل اتوماتيك منخفض الرغوه زهورالربيع 2.5كجم",
"Product_EN": null,
"Product_Id": "00012313 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8549,
"name": "تمر سكرى مفتل سعودي 3 كجم",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمر سكرى مفتل سعودي 3 كجم",
"Product_EN": "Saudi Sukkari Muftel Dates 3 kg",
"Product_Id": "00012314 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8550,
"name": "الكبوس شاى ناعم 250 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس شاى ناعم 250 جم",
"Product_EN": null,
"Product_Id": "00012315 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8551,
"name": "الكبوس شاى ناعم 100 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس شاى ناعم 100 جم",
"Product_EN": null,
"Product_Id": "00012316 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8552,
"name": "الكبوس شاى 25 فتله",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس شاى 25 فتله",
"Product_EN": null,
"Product_Id": "00012317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8553,
"name": "مالتي ستارز نوجا بجوز هند",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مالتي ستارز نوجا بجوز هند",
"Product_EN": null,
"Product_Id": "00012318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8554,
"name": "مالتي ستارز كرسب بالكراميل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مالتي ستارز كرسب بالكراميل",
"Product_EN": null,
"Product_Id": "00012319 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8555,
"name": "مالتي ستارز نوجا بالكراميل والفول السوداني",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مالتي ستارز نوجا بالكراميل والفول السوداني",
"Product_EN": null,
"Product_Id": "00012320 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8556,
"name": "تاوتاو اوريو شوكولاتة محشو كريمة وبسكوت بالكاكاو",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تاوتاو اوريو شوكولاتة محشو كريمة وبسكوت بالكاكاو",
"Product_EN": null,
"Product_Id": "00012324 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8557,
"name": "جولدن كاكاو",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جولدن كاكاو",
"Product_EN": null,
"Product_Id": "00012325 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8558,
"name": "كيك كاكاو مغطس",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك كاكاو مغطس",
"Product_EN": null,
"Product_Id": "00012326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8559,
"name": "كيك موز",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك موز",
"Product_EN": null,
"Product_Id": "00012327 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8560,
"name": "كيك فراولة مغطس",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك فراولة مغطس",
"Product_EN": null,
"Product_Id": "00012328 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8561,
"name": "كيك ديكور فراولة",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك ديكور فراولة",
"Product_EN": null,
"Product_Id": "00012329 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8562,
"name": "كيك ديكور موز",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك ديكور موز",
"Product_EN": null,
"Product_Id": "00012330 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8563,
"name": "كيك ديكور بندق",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك ديكور بندق",
"Product_EN": null,
"Product_Id": "00012331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8564,
"name": "فولكانو كيك مغطس فراولة",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فولكانو كيك مغطس فراولة",
"Product_EN": null,
"Product_Id": "00012332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8565,
"name": "فولكانو كيك مغطس كاكاو",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فولكانو كيك مغطس كاكاو",
"Product_EN": null,
"Product_Id": "00012333 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8566,
"name": "فولكانو كيك مغطس شوكولاتة بيضاء",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فولكانو كيك مغطس شوكولاتة بيضاء",
"Product_EN": null,
"Product_Id": "00012334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8567,
"name": "جراند كب كيك زبدة",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراند كب كيك زبدة",
"Product_EN": null,
"Product_Id": "00012335 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8568,
"name": "هالك بيتى بير بسكويت 1000 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هالك بيتى بير بسكويت 1000 جم",
"Product_EN": null,
"Product_Id": "00012336 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8569,
"name": "هالك بسكويت فينجر 700 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هالك بسكويت فينجر 700 جم",
"Product_EN": null,
"Product_Id": "00012337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8570,
"name": "تشويس مايونيز سكويز 300 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس مايونيز سكويز 300 جم",
"Product_EN": null,
"Product_Id": "00012338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8571,
"name": "تشويس مسترده سكويز 250 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس مسترده سكويز 250 جم",
"Product_EN": null,
"Product_Id": "00012339 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8572,
"name": "تشويس درسينج 275 مل",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس درسينج 275 مل",
"Product_EN": null,
"Product_Id": "00012340 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8573,
"name": "تشويس دريسنج فرنس 275 مل",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس دريسنج فرنس 275 مل",
"Product_EN": null,
"Product_Id": "00012341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8574,
"name": "تشويس دريسنج ايطاليه 275مل",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس دريسنج ايطاليه 275مل",
"Product_EN": null,
"Product_Id": "00012342 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8575,
"name": "تشويس دريسنج المزرعه 275مل",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس دريسنج المزرعه 275مل",
"Product_EN": null,
"Product_Id": "00012343 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8576,
"name": "تشويس خوخ انصاف 820 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس خوخ انصاف 820 جم",
"Product_EN": null,
"Product_Id": "00012344 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8577,
"name": "تشويس زيت حار 500 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس زيت حار 500 مل",
"Product_EN": "Choice Flaxseed Oil 500 ml ",
"Product_Id": "00012345 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8578,
"name": "تشويس زيت سمسم 500 مل",
"price": 77,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس زيت سمسم 500 مل",
"Product_EN": "Choice Sesame Oil 500 ml ",
"Product_Id": "00012346 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8579,
"name": "هنز سريع الذوبان جولد 50 مل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هنز سريع الذوبان جولد 50 مل",
"Product_EN": null,
"Product_Id": "00012347 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8580,
"name": "جراند كب كيك كاكاو",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جراند كب كيك كاكاو",
"Product_EN": null,
"Product_Id": "00012348 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8581,
"name": "هابي كب كيك زبده",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هابي كب كيك زبده",
"Product_EN": null,
"Product_Id": "00012349 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8582,
"name": "هابي كب كيك كريمة البندق",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هابي كب كيك كريمة البندق",
"Product_EN": null,
"Product_Id": "00012350 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8583,
"name": "رورو كب كيك",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رورو كب كيك",
"Product_EN": null,
"Product_Id": "00012351 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8584,
"name": "تورنيدو سويسرول بندق مغطي",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تورنيدو سويسرول بندق مغطي",
"Product_EN": null,
"Product_Id": "00012352 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8585,
"name": "تورنيدو سويسرول قهوة مغطي",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تورنيدو سويسرول قهوة مغطي",
"Product_EN": null,
"Product_Id": "00012353 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8586,
"name": "تورنيدو سويسرول فراولة",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تورنيدو سويسرول فراولة",
"Product_EN": null,
"Product_Id": "00012354 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8587,
"name": "تورنيدو كمارا سويسرول قهوة مغطي 3 ق",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تورنيدو كمارا سويسرول قهوة مغطي 3 ق",
"Product_EN": null,
"Product_Id": "00012355 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8588,
"name": "تورنيدو كمارا سويسرول فراولة 3 ق",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تورنيدو كمارا سويسرول فراولة 3 ق",
"Product_EN": null,
"Product_Id": "00012356 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8589,
"name": "طازة بقسماط سماسم صغيرة - موقوف",
"price": 7.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط سماسم صغيرة - موقوف",
"Product_EN": null,
"Product_Id": "00006250 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8590,
"name": "طازة بقسماط سماسم سادة صغيرة - موقوف",
"price": 7.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط سماسم سادة صغيرة - موقوف",
"Product_EN": null,
"Product_Id": "00006251 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8591,
"name": "طازة شرائح دوريتوس - موقوف",
"price": 18.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة شرائح دوريتوس - موقوف",
"Product_EN": null,
"Product_Id": "00006252 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8592,
"name": "طازة علبة كوكيز - موقوف",
"price": 38.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة كوكيز - موقوف",
"Product_EN": null,
"Product_Id": "00006253 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8593,
"name": "طازة بسكويت شطرنج - موقوف",
"price": 38.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بسكويت شطرنج - موقوف",
"Product_EN": null,
"Product_Id": "00006254 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8594,
"name": "طازة علبة برازق صغيرة - موقوف",
"price": 30.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة برازق صغيرة - موقوف",
"Product_EN": null,
"Product_Id": "00006255 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8595,
"name": "زاهر حلويات جيلى مهلبية",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حلويات جيلى مهلبية",
"Product_EN": null,
"Product_Id": "00006256 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8596,
"name": "زاهر تارت بالبلح - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تارت بالبلح - موقوف",
"Product_EN": null,
"Product_Id": "00006257 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8597,
"name": "طازة بسيسة وزن - موقوف",
"price": 41.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "طازة بسيسة وزن - موقوف",
"Product_EN": "59",
"Product_Id": "00006258 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8598,
"name": "فيروز مشروب خوخ 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز مشروب خوخ 1 لتر",
"Product_EN": null,
"Product_Id": "00006259 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8599,
"name": "زاهر حليب مبستر كامل السم 1 لتر - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب مبستر كامل السم 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00006260 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8600,
"name": "زاهر حليب مبستر خالى السم 1 لتر - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب مبستر خالى السم 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00006261 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8601,
"name": "برسيل مسحوق الوان 2.5 ك - موقوف",
"price": 91.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق الوان 2.5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006262 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8602,
"name": "علبة صوص 2 اونز بالغطاء - موقوف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علبة صوص 2 اونز بالغطاء - موقوف",
"Product_EN": null,
"Product_Id": "00006263 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8603,
"name": "علبة دستة فضى 21*17\/ 7 - موقوف",
"price": 91.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علبة دستة فضى 21*17\/ 7 - موقوف",
"Product_EN": null,
"Product_Id": "00006264 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8604,
"name": "علبة دستة ونصف فضى مصرى - موقوف",
"price": 1.35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "علبة دستة ونصف فضى مصرى - موقوف",
"Product_EN": null,
"Product_Id": "00006265 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8605,
"name": "كادبورى شوكولاتة بابلى 40 جم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كادبورى شوكولاتة بابلى 40 جم",
"Product_EN": "Cadbury Chocolate Bubbly 40 gm",
"Product_Id": "00006266 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8606,
"name": "نستلة زبادى جولد 120 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة زبادى جولد 120 جم",
"Product_EN": "Nestle Gold Yogurt 120 gm",
"Product_Id": "00006267 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8607,
"name": "نستلة زبادى طبيعى 105جم 5+1ق عرض",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة زبادى طبيعى 105جم 5+1ق عرض",
"Product_EN": "Nestle Natural Yogurt 105 gm ( 5+1 ) Pieces -Offer",
"Product_Id": "00006268 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8608,
"name": "طازة منين حشو عجوة - موقوف",
"price": 36.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة منين حشو عجوة - موقوف",
"Product_EN": null,
"Product_Id": "00006269 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8609,
"name": "طازة بقسماط سكر صغير - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط سكر صغير - موقوف",
"Product_EN": null,
"Product_Id": "00006270 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8610,
"name": "طازة باتون سالية رومى صغير - موقوف",
"price": 9.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة باتون سالية رومى صغير - موقوف",
"Product_EN": null,
"Product_Id": "00006271 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8611,
"name": "طازة باتون سالية سادة صغير - موقوف",
"price": 8.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة باتون سالية سادة صغير - موقوف",
"Product_EN": null,
"Product_Id": "00006272 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8612,
"name": "طازة باتون سالية حبة البركة صغير - موقوف",
"price": 8.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة باتون سالية حبة البركة صغير - موقوف",
"Product_EN": null,
"Product_Id": "00006273 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8613,
"name": "طازة شرائح سليز سن - موقوف",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة شرائح سليز سن - موقوف",
"Product_EN": null,
"Product_Id": "00006274 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8614,
"name": "طازة بقسماط عين يمامة صغير - موقوف",
"price": 7.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط عين يمامة صغير - موقوف",
"Product_EN": null,
"Product_Id": "00006275 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8615,
"name": "طازة بقسماط عين صلصة صغيرة - موقوف",
"price": 7.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط عين صلصة صغيرة - موقوف",
"Product_EN": null,
"Product_Id": "00006276 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8616,
"name": "رومبي بسكويت فانيليا _ موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رومبي بسكويت فانيليا _ موقوف",
"Product_EN": null,
"Product_Id": "00006278 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8617,
"name": "رومبي بسكويت فانيليا - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رومبي بسكويت فانيليا - موقوف",
"Product_EN": null,
"Product_Id": "00006279 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8618,
"name": "رومبي بسكويت فراوله - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رومبي بسكويت فراوله - موقوف",
"Product_EN": null,
"Product_Id": "00006280 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8619,
"name": "رومبي بسكويت شيكولاتة - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رومبي بسكويت شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00006281 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8620,
"name": "زاهر تارت كراميل - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تارت كراميل - موقوف",
"Product_EN": null,
"Product_Id": "00006282 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8621,
"name": "اندومى سوبرمى شعريه سريعه التحضير خضار 70 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى سوبرمى شعريه سريعه التحضير خضار 70 جم",
"Product_EN": null,
"Product_Id": "00006284 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8622,
"name": "جلاكسى شوكولاتة ميلك 250 جم - كيس",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة ميلك 250 جم - كيس",
"Product_EN": "Galaxy Chocolate Milk 250 gm - Sachet",
"Product_Id": "00006285 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8623,
"name": "جلاكسى شوكولاتة كراميل 250 جم - كيس",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة كراميل 250 جم - كيس",
"Product_EN": "Galaxy Chocolate Caramel 250 gm - Sachet",
"Product_Id": "00006286 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8624,
"name": "جلاكسى شوكولاتة سنيكرز 150جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة سنيكرز 150جم",
"Product_EN": "Galaxy Chocolate Snickers 150 gm",
"Product_Id": "00006287 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8625,
"name": "جلاكسى شوكولاتة ميلك 56جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة ميلك 56جم",
"Product_EN": "Galaxy Milk Chocolate 56 gm",
"Product_Id": "00006288 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8626,
"name": "شيبسى فورنو ريحان وتوابل 44 جم",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى فورنو ريحان وتوابل 44 جم",
"Product_EN": null,
"Product_Id": "00006289 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8627,
"name": "شيبسى عائلى ميكس توابل حاره",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى عائلى ميكس توابل حاره",
"Product_EN": null,
"Product_Id": "00006290 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8628,
"name": "طازة بقسماط سماسم الشرق كيس - موقوف",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بقسماط سماسم الشرق كيس - موقوف",
"Product_EN": null,
"Product_Id": "00006291 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8629,
"name": "طازة علبة سوارية كرواسون جبنة بيضاء - موقوف",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة سوارية كرواسون جبنة بيضاء - موقوف",
"Product_EN": null,
"Product_Id": "00006292 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8630,
"name": "طازة عيش فينو سمسم 10 ق كيس - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة عيش فينو سمسم 10 ق كيس - موقوف",
"Product_EN": null,
"Product_Id": "00006293 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8631,
"name": "طازة عيش فينو سادة 10 ق كيس - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة عيش فينو سادة 10 ق كيس - موقوف",
"Product_EN": null,
"Product_Id": "00006294 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8632,
"name": "طازة بيتى بان 20 ق كيس - موقوف",
"price": 6.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة بيتى بان 20 ق كيس - موقوف",
"Product_EN": null,
"Product_Id": "00006295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8633,
"name": "فيبا منظف سائل 730 جم 1+1 ق عرض",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا منظف سائل 730 جم 1+1 ق عرض",
"Product_EN": null,
"Product_Id": "00006296 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8634,
"name": "فلفليتا منعم ومعطر ملابس نسيم البحر 400 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفليتا منعم ومعطر ملابس نسيم البحر 400 جم",
"Product_EN": null,
"Product_Id": "00006297 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8635,
"name": "فيبا منظف سائل ليمون 200ملى - موقوف",
"price": 3.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا منظف سائل ليمون 200ملى - موقوف",
"Product_EN": null,
"Product_Id": "00006298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8636,
"name": "طازة علبة سوارية كرواسون رومى - موقوف",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة سوارية كرواسون رومى - موقوف",
"Product_EN": null,
"Product_Id": "00006299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8637,
"name": "زاهر رايب فراولة - موقوف",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر رايب فراولة - موقوف",
"Product_EN": null,
"Product_Id": "00006300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8638,
"name": "تانج قمر الدين ظرف 25 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تانج قمر الدين ظرف 25 جم",
"Product_EN": "Tang Qamar El Din Sachet 25 gm",
"Product_Id": "00006301 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8639,
"name": "حدائق كاليفورنيا فول بالطحينة 2ق - موقوف",
"price": 16.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا فول بالطحينة 2ق - موقوف",
"Product_EN": null,
"Product_Id": "00006302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8640,
"name": "حدائق كاليفورنيا فول مدمس مقشور حار 450 جم 1+1ق",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا فول مدمس مقشور حار 450 جم 1+1ق",
"Product_EN": "California Fava Beans Peeled Chili 450 gm 1+1 ",
"Product_Id": "00006303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8641,
"name": "حدائق كاليفورنيا فول مقشور 1+1 ق عرض",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا فول مقشور 1+1 ق عرض",
"Product_EN": "California Garden Fava Beans Peeled 450 gm 1+1 ",
"Product_Id": "00006304 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8642,
"name": "حدائق كاليفورنيا فول بالخلطة اللبنانية 2ق - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا فول بالخلطة اللبنانية 2ق - موقوف",
"Product_EN": null,
"Product_Id": "00006305 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8643,
"name": "حدائق كاليفورنيا فول بالخلطة المصرية 2ق - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا فول بالخلطة المصرية 2ق - موقوف",
"Product_EN": null,
"Product_Id": "00006306 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8644,
"name": "زاهر فطير مشلتت بالسمنه البلدي وسط",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر فطير مشلتت بالسمنه البلدي وسط",
"Product_EN": "Zaher Feteer Meshaltet w Local Ghee Medium Size",
"Product_Id": "00006307 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8645,
"name": "زاهر نوجا بالمكسرات - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر نوجا بالمكسرات - موقوف",
"Product_EN": null,
"Product_Id": "00006308 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8646,
"name": "هاينز صلصة طماطم 360 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز صلصة طماطم 360 جم",
"Product_EN": "Heinz Tomato Sauce 360 gm ",
"Product_Id": "00006309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8647,
"name": "ديتول ماك لافندر 900مل عرض",
"price": 42.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول ماك لافندر 900مل عرض",
"Product_EN": null,
"Product_Id": "00006310 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8648,
"name": "بسكريم بسكويت بالشيكولاتة 110 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكريم بسكويت بالشيكولاتة 110 جم",
"Product_EN": null,
"Product_Id": "00006311 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8649,
"name": "فيتراك مربى فراوله وتوت 450 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله وتوت 450 جم",
"Product_EN": null,
"Product_Id": "00006312 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8650,
"name": "فيتراك مربى مشمش 450 جم - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 450 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006313 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8651,
"name": "فيتراك مربى فراوله 900 جم",
"price": 22.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراوله 900 جم",
"Product_EN": null,
"Product_Id": "00006314 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8652,
"name": "زاهر كنافة قطع مثلث - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة قطع مثلث - موقوف",
"Product_EN": null,
"Product_Id": "00006315 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8653,
"name": "زاهر بسبوسة قطع مثلث - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة قطع مثلث - موقوف",
"Product_EN": "`",
"Product_Id": "00006316 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8654,
"name": "اريال مسحوق يدوى ياسمين 1 كجم - موقوف ",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى ياسمين 1 كجم - موقوف ",
"Product_EN": null,
"Product_Id": "00006317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8655,
"name": "كريستال زيت ذره 2.200 لتر _ موقوف",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذره 2.200 لتر _ موقوف",
"Product_EN": null,
"Product_Id": "00006318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8656,
"name": "كرانشى طماطم لارج 73 جرام",
"price": 3.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى طماطم لارج 73 جرام",
"Product_EN": null,
"Product_Id": "00006322 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8657,
"name": "كرانشى جبنه متبله لارج 73 جم",
"price": 3.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى جبنه متبله لارج 73 جم",
"Product_EN": null,
"Product_Id": "00006323 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8658,
"name": "كرانشى شطه وليمون لارج 73 جم",
"price": 3.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى شطه وليمون لارج 73 جم",
"Product_EN": null,
"Product_Id": "00006324 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8659,
"name": "فورنو بالجبنة الفرنسية 50 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فورنو بالجبنة الفرنسية 50 جم",
"Product_EN": null,
"Product_Id": "00006325 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8660,
"name": "ماجى مرقة دجاج 12 مكعب",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى مرقة دجاج 12 مكعب",
"Product_EN": null,
"Product_Id": "00006326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8661,
"name": "نسكويك حليب بالشيكولاتة 5+1 عرض - موقوف",
"price": 24.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك حليب بالشيكولاتة 5+1 عرض - موقوف",
"Product_EN": null,
"Product_Id": "00006327 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8662,
"name": "ليبتون شاى اخضر كلاسيك 25 فتله",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر كلاسيك 25 فتله",
"Product_EN": "Lipton Green Tea Classic 25 Bags",
"Product_Id": "00006328 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8663,
"name": "ليبتون شاى اخضر نعناع 25 فتلة - موقوف",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر نعناع 25 فتلة - موقوف",
"Product_EN": null,
"Product_Id": "00006329 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8664,
"name": "نستله نيدو حليب مجفف 200 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله نيدو حليب مجفف 200 جم",
"Product_EN": null,
"Product_Id": "00006330 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8665,
"name": "طازة علبة سوارية كرواسون سادة - موقوف",
"price": 18.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة علبة سوارية كرواسون سادة - موقوف",
"Product_EN": null,
"Product_Id": "00006331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8666,
"name": "طازة قطعة دنش - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة قطعة دنش - موقوف",
"Product_EN": null,
"Product_Id": "00006332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8667,
"name": "طازة قطعة كرواسون سادة - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة قطعة كرواسون سادة - موقوف",
"Product_EN": null,
"Product_Id": "00006333 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8668,
"name": "طازة قطعة باتية جبنة رومى - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة قطعة باتية جبنة رومى - موقوف",
"Product_EN": null,
"Product_Id": "00006334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8669,
"name": "طازة قطعة باتية جبنة بيضاء - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة قطعة باتية جبنة بيضاء - موقوف",
"Product_EN": null,
"Product_Id": "00006335 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8670,
"name": "زاهر حليب بالفراوله صغير 300 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب بالفراوله صغير 300 مل",
"Product_EN": null,
"Product_Id": "00006336 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8671,
"name": "زاهر حليب بالفراوله كبير1 لتر",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب بالفراوله كبير1 لتر",
"Product_EN": null,
"Product_Id": "00006337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8672,
"name": "طازة كعك بالسكر وزن - موقوف",
"price": 93.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة كعك بالسكر وزن - موقوف",
"Product_EN": null,
"Product_Id": "00006338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8673,
"name": "زاهر حليب بقرى مبستر كامل السم 1 لتر - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر حليب بقرى مبستر كامل السم 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00006339 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8674,
"name": "طازة قطعة باتية سكر - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة قطعة باتية سكر - موقوف",
"Product_EN": null,
"Product_Id": "00006340 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8675,
"name": "طازة قطعة كرواسون شيكولاتة - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طازة قطعة كرواسون شيكولاتة - موقوف",
"Product_EN": null,
"Product_Id": "00006341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8676,
"name": "ليبتون شاى 50 فتلة جديد - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 50 فتلة جديد - موقوف",
"Product_EN": null,
"Product_Id": "00006342 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8677,
"name": "الشروق تمر 2.1 ك ",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشروق تمر 2.1 ك ",
"Product_EN": "Al-Shorouk Dates 2.1 kg",
"Product_Id": "00006343 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8678,
"name": "ريتش لحم مفروم بقرى مجمد 300 جم",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش لحم مفروم بقرى مجمد 300 جم",
"Product_EN": "Frozen Frozen Minced Beef 300 gm",
"Product_Id": "00006344 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8679,
"name": "اللحيمى لحم مفروم بقرى مجمد 600 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اللحيمى لحم مفروم بقرى مجمد 600 جم",
"Product_EN": "Frozen Frozen Minced Beef 600 gm",
"Product_Id": "00006345 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8680,
"name": "فيتراك شربات تفاح 850 مل",
"price": 20.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات تفاح 850 مل",
"Product_EN": null,
"Product_Id": "00006346 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8681,
"name": "فيتراك شربات مانجو 850 مل - موقوف",
"price": 20.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك شربات مانجو 850 مل - موقوف",
"Product_EN": null,
"Product_Id": "00006347 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8682,
"name": "لافاش برتقالى جبنة مثلثات 16 ق",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش برتقالى جبنة مثلثات 16 ق",
"Product_EN": "Lavash Orange Triangles Cheese 16 Pieces",
"Product_Id": "00006348 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8683,
"name": "لافاش برتقالى جبنة مثلثات 24 ق",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش برتقالى جبنة مثلثات 24 ق",
"Product_EN": "Lavash Orange Triangles Cheese 24 Pieces",
"Product_Id": "00006349 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8684,
"name": "لافاش برتقالى جبنة مثلثات 32 ق",
"price": 37.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش برتقالى جبنة مثلثات 32 ق",
"Product_EN": "Lavash Orange Triangles Cheese 32 Pieces",
"Product_Id": "00006350 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8685,
"name": "ابو الولد جبنة مثلثات 32 ق",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ابو الولد جبنة مثلثات 32 ق",
"Product_EN": "Abu El Walad Triangle Cheese 32 Pieces",
"Product_Id": "00006351 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8686,
"name": "كيرى جبنه سبريد 500 جم",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه سبريد 500 جم",
"Product_EN": "Kiri Cheese Spread 500 gm",
"Product_Id": "00006352 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8687,
"name": "جنه سمن نباتى ظرف 350 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جنه سمن نباتى ظرف 350 جم",
"Product_EN": "Ganna Vegetable Ghee 350 gm - Raw",
"Product_Id": "00006353 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8688,
"name": "دانون حليب رايب 400 جم",
"price": 5.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون حليب رايب 400 جم",
"Product_EN": "Danone Rayeb Milk 400 gm",
"Product_Id": "00006354 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8689,
"name": "دانون حليب رايب 400جم",
"price": 8.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون حليب رايب 400جم",
"Product_EN": "Danone Rayeb Milk 400 gm",
"Product_Id": "00006355 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8690,
"name": "ايزيس عصير جوافة 300 مل",
"price": 6.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس عصير جوافة 300 مل",
"Product_EN": "ISIS Guava Juice 300 ml",
"Product_Id": "00006356 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8691,
"name": "ايزيس عصير مانجو 300 مل",
"price": 7.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس عصير مانجو 300 مل",
"Product_EN": "ISIS Mango Juice 300 ml",
"Product_Id": "00006357 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8692,
"name": "ايزيس عصير برتقال 300 مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس عصير برتقال 300 مل",
"Product_EN": "ISIS Orange Juice 300 ml",
"Product_Id": "00006358 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8693,
"name": "ايزيس تمر اورجانيك 900 جم",
"price": 48.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس تمر اورجانيك 900 جم",
"Product_EN": "ISIS Organic Dates 900 gm",
"Product_Id": "00006359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8694,
"name": "مصرية مكرونة 1 ك - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية مكرونة 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006362 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8695,
"name": "ريجينا مكرونة 1 ك - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8696,
"name": "نسكويك مشروب شيكولاتة 330 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك مشروب شيكولاتة 330 جم",
"Product_EN": null,
"Product_Id": "00006365 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8697,
"name": "ماجي خلطة كفتة الحاتي 40 جم",
"price": 49.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجي خلطة كفتة الحاتي 40 جم",
"Product_EN": null,
"Product_Id": "00006366 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8698,
"name": "نسكويك بسكويت باللبن 56 جم",
"price": 41.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك بسكويت باللبن 56 جم",
"Product_EN": "Nesquik Milk Biscuits 56 gm",
"Product_Id": "00006367 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8699,
"name": "تايد مسحوق يدوى ياسمين 350جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى ياسمين 350جم",
"Product_EN": null,
"Product_Id": "00006368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8700,
"name": "زبيب مستورد 2020 وزن",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زبيب مستورد 2020 وزن",
"Product_EN": null,
"Product_Id": "00006369 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8701,
"name": "تشيكلس لبان فاكهة 1ق",
"price": 0.33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشيكلس لبان فاكهة 1ق",
"Product_EN": "Chiclets Gum Fruit 1 Pieces",
"Product_Id": "00006370 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8702,
"name": "قمرالدين سورى 2018 لفة 1ق - موقوف",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قمرالدين سورى 2018 لفة 1ق - موقوف",
"Product_EN": null,
"Product_Id": "00006371 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8703,
"name": "تين رمضان 2018 لفة 1 ق - موقوف",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تين رمضان 2018 لفة 1 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006372 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8704,
"name": "عبور لاند جبنه فيتا 1 كجم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا 1 كجم",
"Product_EN": "Obour Land Feta Cheese 1 Kg",
"Product_Id": "00006373 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8705,
"name": "عبور لاند جبنه اسطنمبولى 1 كجم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه اسطنمبولى 1 كجم",
"Product_EN": "Obour Land Istanbully Cheese 1 Kg",
"Product_Id": "00006374 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8706,
"name": "عبور لاند جبنه فيتا زيتون 1 كجم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبور لاند جبنه فيتا زيتون 1 كجم",
"Product_EN": "Obour Land Feta Cheese Olive 1 Kg",
"Product_Id": "00006375 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8707,
"name": "شنط مخبوزات 21\/50سم - موقوف",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شنط مخبوزات 21\/50سم - موقوف",
"Product_EN": null,
"Product_Id": "00006376 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8708,
"name": "زاهر بيتى فور لوكس 500 جم - 2021",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتى فور لوكس 500 جم - 2021",
"Product_EN": "Zaher Betty Four Lux 500 g ",
"Product_Id": "00006377 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8709,
"name": "زاهر كنافة سادة - طيق - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة سادة - طيق - موقوف",
"Product_EN": null,
"Product_Id": "00006378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8710,
"name": "زاهر بسبوسة سادة - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة سادة - موقوف",
"Product_EN": null,
"Product_Id": "00006379 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8711,
"name": "زاهر كعك عين جمل \/ مكسرات 500 جم - 2021",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كعك عين جمل \/ مكسرات 500 جم - 2021",
"Product_EN": "Zaher Cakes Eayn Camel w Nuts 500 g",
"Product_Id": "00006380 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8712,
"name": "زاهر عصير خروب 1 لتر",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير خروب 1 لتر",
"Product_EN": "Zaher Carob Juice 1 L",
"Product_Id": "00006381 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8713,
"name": "زاهر عصير قمر الدين 1 لتر",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عصير قمر الدين 1 لتر",
"Product_EN": "Zaher Qamar Al-Din Juice 1 L",
"Product_Id": "00006382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8714,
"name": "زاهر بسبوسة كريمة + مكسرات - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة كريمة + مكسرات - موقوف",
"Product_EN": null,
"Product_Id": "00006383 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8715,
"name": "دانون زبادى لايت 2ق 170جم",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى لايت 2ق 170جم",
"Product_EN": "Danone Yogurt Light 2 Pieces 170 gm",
"Product_Id": "00006384 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8716,
"name": "دانون زبادى طبيعى 2 ق 170جم",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى طبيعى 2 ق 170جم",
"Product_EN": "Danone Natural Yogurt 2 Pieces 170 gm",
"Product_Id": "00006385 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8717,
"name": "دانون زبادى بالسوبيا 105 جم - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى بالسوبيا 105 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006386 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8718,
"name": "البيضه السعيده احمر مغلف 30 ق - موقوف",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البيضه السعيده احمر مغلف 30 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006387 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8719,
"name": "البيضه السعيدة ابيض مغلف 30 ق - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البيضه السعيدة ابيض مغلف 30 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8720,
"name": "كريستال زيت عباد الشمس 1.6 لتر",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت عباد الشمس 1.6 لتر",
"Product_EN": "Craystal Sunflower Oil 1.6 L",
"Product_Id": "00006390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8721,
"name": "كريستال زيت عباد الشمس 2.4 لتر",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت عباد الشمس 2.4 لتر",
"Product_EN": "Craystal Sunflower Oil 2.4 L ",
"Product_Id": "00006391 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8722,
"name": "كوكاكولا بلاستيك 1.5 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا بلاستيك 1.5 لتر",
"Product_EN": "Coca-Cola Plastic 1.5 L ",
"Product_Id": "00006392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8723,
"name": "سبرايت بلاستيك 1.5 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت بلاستيك 1.5 لتر",
"Product_EN": "Sprite Plastic 1.5 L ",
"Product_Id": "00006393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8724,
"name": "ايزيس مياة اقتصادى 11 لتر",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس مياة اقتصادى 11 لتر",
"Product_EN": "ISIS Water Economy 11 L",
"Product_Id": "00006394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8725,
"name": "زاهر طبق حلو مشكل لوكس - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر طبق حلو مشكل لوكس - موقوف",
"Product_EN": null,
"Product_Id": "00006395 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8726,
"name": "لامور خبز شامى بلدى كيس - موقوف",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لامور خبز شامى بلدى كيس - موقوف",
"Product_EN": null,
"Product_Id": "00006396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8727,
"name": "حلوانى هوت شوتس دجاج 400 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى هوت شوتس دجاج 400 جم",
"Product_EN": "Halwani Chicken Hot Shots 400 gm",
"Product_Id": "00006397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8728,
"name": "حلوانى فيليه دجاج مشوى 400 جم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى فيليه دجاج مشوى 400 جم",
"Product_EN": "Halwani Grilled Chicken Fillet 400 gm ",
"Product_Id": "00006398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8729,
"name": "حلوانى وجبة دجاج 12 قطعه",
"price": 79.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى وجبة دجاج 12 قطعه",
"Product_EN": "Halwani Fried Chicken 12 Pieces",
"Product_Id": "00006399 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8730,
"name": "حلوانى وجبة دجاج حار 12 قطعه",
"price": 79.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى وجبة دجاج حار 12 قطعه",
"Product_EN": "Halwani Spicy Fried Chicken 12 Pieces",
"Product_Id": "00006400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8731,
"name": "هاينز مايونيز كلاسيك عرض - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز مايونيز كلاسيك عرض - موقوف",
"Product_EN": null,
"Product_Id": "00006401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8732,
"name": "هاينز كاتشب طماطم ظرف 7 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاينز كاتشب طماطم ظرف 7 جم",
"Product_EN": "Heinz Tomato Sauce Sachet 7 gm ",
"Product_Id": "00006402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8733,
"name": "شيبسى جبنه متبله 3 ج 48 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جبنه متبله 3 ج 48 جم",
"Product_EN": null,
"Product_Id": "00006403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8734,
"name": "شيبسى ميكس ليمون 52 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى ميكس ليمون 52 جم",
"Product_EN": null,
"Product_Id": "00006404 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8735,
"name": "شيبسى طماطم 3 ج 48 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى طماطم 3 ج 48 جم",
"Product_EN": null,
"Product_Id": "00006405 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8736,
"name": "شيبسى شطه وليمون 3 ج 48 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى شطه وليمون 3 ج 48 جم",
"Product_EN": null,
"Product_Id": "00006406 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8737,
"name": "فورنو طماطم وزعتر 50 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فورنو طماطم وزعتر 50 جم",
"Product_EN": null,
"Product_Id": "00006407 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8738,
"name": "شيبسى لمه العيله ملح 188 جرام",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى لمه العيله ملح 188 جرام",
"Product_EN": null,
"Product_Id": "00006408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8739,
"name": "شيبسى لمه العيله جبنه متبله 188 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى لمه العيله جبنه متبله 188 جم",
"Product_EN": null,
"Product_Id": "00006409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8740,
"name": "شيبسى لمه العيله طماطم 188جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى لمه العيله طماطم 188جم",
"Product_EN": null,
"Product_Id": "00006410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8741,
"name": "شيبسى لمه العيله شطه وليمون 188جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى لمه العيله شطه وليمون 188جم",
"Product_EN": null,
"Product_Id": "00006411 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8742,
"name": "زاهر عجينة بسكوت ايس كريم وزن",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر عجينة بسكوت ايس كريم وزن",
"Product_EN": null,
"Product_Id": "00006415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8743,
"name": "زاهر ديزيرت - كنافة كب اطعمة 2021",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ديزيرت - كنافة كب اطعمة 2021",
"Product_EN": null,
"Product_Id": "00006416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8744,
"name": "الضحى سكر + الضحى دقيق 1 ك عرض - موقوف",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الضحى سكر + الضحى دقيق 1 ك عرض - موقوف",
"Product_EN": null,
"Product_Id": "00006417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8745,
"name": "دولسيكا بسكويت ويفر براونز - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولسيكا بسكويت ويفر براونز - موقوف",
"Product_EN": null,
"Product_Id": "00006418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8746,
"name": "دولسيكا بسكويت ويفر قشطة - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولسيكا بسكويت ويفر قشطة - موقوف",
"Product_EN": null,
"Product_Id": "00006419 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8747,
"name": "الدلتا نشا 100 جرام",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الدلتا نشا 100 جرام",
"Product_EN": "Al Delta Corn Flour 100 gm ",
"Product_Id": "00006420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8748,
"name": "لوكس صابون سحر الجمال 120م",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون سحر الجمال 120م",
"Product_EN": "Lux Magical Beauty Soap 120 ml",
"Product_Id": "00006423 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8749,
"name": "لوكس صابون سحر الطبيعة 120م",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون سحر الطبيعة 120م",
"Product_EN": "Lux Magical Nature Soap 120 ml",
"Product_Id": "00006424 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8750,
"name": "بريل صابون سائل ليمون 2.5 لتر - موقوف",
"price": 34.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل صابون سائل ليمون 2.5 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00006425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8751,
"name": "بريل جيل 3 لتر + جيل 1 لتر عرض - موقوف",
"price": 87.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل جيل 3 لتر + جيل 1 لتر عرض - موقوف",
"Product_EN": null,
"Product_Id": "00006426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8752,
"name": "كيرى لبنه كريمى 500 جم",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى لبنه كريمى 500 جم",
"Product_EN": "Kiri Cream Labneh 500 gm",
"Product_Id": "00006427 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8753,
"name": "تمر جاف علبة 1.5 ك - موقوف",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تمر جاف علبة 1.5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006428 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8754,
"name": "سفن اب كان 330 مل",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب كان 330 مل",
"Product_EN": null,
"Product_Id": "00006429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8755,
"name": "ماونتن ديو كان 330 مل",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماونتن ديو كان 330 مل",
"Product_EN": null,
"Product_Id": "00006430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8756,
"name": "كواليتى تمر مصرى فاخر 700 جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى تمر مصرى فاخر 700 جم",
"Product_EN": null,
"Product_Id": "00006431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8757,
"name": "كيت كات شوكولاته 4 أصابع 4 ق + 1 عرض",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاته 4 أصابع 4 ق + 1 عرض",
"Product_EN": "Kit Kat Chocolate 4 Fingers 4 Pieces + 1 Offer",
"Product_Id": "00006432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8758,
"name": "كيت كات شوكولاته 2 اصابع 4 ق + 1 عرض",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاته 2 اصابع 4 ق + 1 عرض",
"Product_EN": "Kit Kat Chocolate 2 Fingers 4 Pieces + 1 Offer",
"Product_Id": "00006433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8759,
"name": "زاهر كنافة كريمة - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة كريمة - موقوف",
"Product_EN": null,
"Product_Id": "00006434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8760,
"name": "زاهر كنافة كريمة + مكسرات - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة كريمة + مكسرات - موقوف",
"Product_EN": null,
"Product_Id": "00006435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8761,
"name": "زاهر بسبوسة بالبندق - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة بالبندق - موقوف",
"Product_EN": null,
"Product_Id": "00006436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8762,
"name": "جهينة زبادى كامل الدسم 170جم",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى كامل الدسم 170جم",
"Product_EN": null,
"Product_Id": "00006437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8763,
"name": "فاين فلافى مناديل سحب 550 منديل",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين فلافى مناديل سحب 550 منديل",
"Product_EN": null,
"Product_Id": "00006439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8764,
"name": "رانى مانجو عصير بلاستيك 1 لتر",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى مانجو عصير بلاستيك 1 لتر",
"Product_EN": null,
"Product_Id": "00006440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8765,
"name": "كريستال زيت ذره 1.6 لتر",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذره 1.6 لتر",
"Product_EN": "Craystal Corn Oil 1.6 L ",
"Product_Id": "00006441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8766,
"name": "زاهر بسكويت فانيليا \/ شيكولاتة 500 جم - 2021",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسكويت فانيليا \/ شيكولاتة 500 جم - 2021",
"Product_EN": "Zaher Biscuits Vanilla w Chocolate 500 g ",
"Product_Id": "00006442 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8767,
"name": "زاهر بيتى فور لوكس 1 ك - موقوف",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتى فور لوكس 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8768,
"name": "زاهر غريبة بلدى فاخر 500 جم - 2020 - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر غريبة بلدى فاخر 500 جم - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00006444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8769,
"name": "زاهر منين بلدى فاخر 1 ك - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر منين بلدى فاخر 1 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8770,
"name": "حدائق كاليفورنيا تونة قطع فاتح 185جم",
"price": 23.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونة قطع فاتح 185جم",
"Product_EN": "California Garden Light Tuna Chunks 185 gm",
"Product_Id": "00006446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8771,
"name": "فينيش 6 اقراص",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فينيش 6 اقراص",
"Product_EN": null,
"Product_Id": "00006447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8772,
"name": "بيبسى كان 330 مل",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى كان 330 مل",
"Product_EN": "Pepsi Can 330 ml ",
"Product_Id": "00006448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8773,
"name": "بيبسى كان دايت 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى كان دايت 330 مل",
"Product_EN": "Pepsi Diet Can 330 ml ",
"Product_Id": "00006449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8774,
"name": "لوكس صابون حلم السعادة 175 جم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:55",
"updated_at": "2021-11-01 19:45:55",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون حلم السعادة 175 جم",
"Product_EN": "Lifebuoy Dream Delight Soap 175 gm",
"Product_Id": "00006450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8775,
"name": "لوكس صابون حلم السعادة 175جم 4 ق عرض",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون حلم السعادة 175جم 4 ق عرض",
"Product_EN": "Lifebuoy Dream Delight Soap 175 gm 4 Pieces Offer",
"Product_Id": "00006451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8776,
"name": "لوكس صابون حلم السعادة 85 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون حلم السعادة 85 جم",
"Product_EN": "Lifebuoy Dream Delight Soap 85 gm",
"Product_Id": "00006452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8777,
"name": "لوكس صابون كريمة 85 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون كريمة 85 جم",
"Product_EN": "LUX Cream Soap 85 gm",
"Product_Id": "00006453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8778,
"name": "فيتنس مقرمشات شوفان طماطم واعشاب 36 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتنس مقرمشات شوفان طماطم واعشاب 36 جم",
"Product_EN": "Fitness Toasties Oats Tomatoes & Herbs 36 gm",
"Product_Id": "00006454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8779,
"name": "فيتنس رقائق شوفان مخبوزة خلطة توابل 36 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتنس رقائق شوفان مخبوزة خلطة توابل 36 جم",
"Product_EN": "Fitness Toasties Oats Mix Spices 36 gm",
"Product_Id": "00006455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8780,
"name": "فيتنس رقائق شوفان مخبوزة كمون وليمون 36 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتنس رقائق شوفان مخبوزة كمون وليمون 36 جم",
"Product_EN": "Fitness Toasties Oats Cumin & Lemon 36 gm",
"Product_Id": "00006456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8781,
"name": "فيتنس مقرمشات شوفان خلطة توابل 36 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتنس مقرمشات شوفان خلطة توابل 36 جم",
"Product_EN": "Fitness Toasties Oats Spice Mix 36 gm",
"Product_Id": "00006457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8782,
"name": "كبريت مصرى صغير 30 عود",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "كبريت مصرى صغير 30 عود",
"Product_EN": null,
"Product_Id": "00006458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8783,
"name": "ديمه بسكويت بكريمة الكاستر 110جم - موقوف",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت بكريمة الكاستر 110جم - موقوف",
"Product_EN": null,
"Product_Id": "00006459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8784,
"name": "ديمه بسكويت ساندوتش بكريمة جوز الهند 110جم",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت ساندوتش بكريمة جوز الهند 110جم",
"Product_EN": null,
"Product_Id": "00006460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8785,
"name": "ديمه بسكويت بكريمه فانيلا 110جم - موقوف",
"price": 5.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت بكريمه فانيلا 110جم - موقوف",
"Product_EN": null,
"Product_Id": "00006461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8786,
"name": "ديمه بسكويت ساندوتش بكريمة شيكولاته 110جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت ساندوتش بكريمة شيكولاته 110جم",
"Product_EN": null,
"Product_Id": "00006462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8787,
"name": "ديمه بسكويت تمر كبير 150جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت تمر كبير 150جم - موقوف",
"Product_EN": null,
"Product_Id": "00006463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8788,
"name": "ديمه بسكويت تين كبير 126جم - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت تين كبير 126جم - موقوف",
"Product_EN": null,
"Product_Id": "00006464 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8789,
"name": "ديمه بسكويت كراكى ملح بالكمون 48جم - موقوف",
"price": 35.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت كراكى ملح بالكمون 48جم - موقوف",
"Product_EN": null,
"Product_Id": "00006465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8790,
"name": "زاهر بلاك فوريست - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بلاك فوريست - موقوف",
"Product_EN": null,
"Product_Id": "00006466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8791,
"name": "مزارع دينا حليب بالشيكولاته 400 مل",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا حليب بالشيكولاته 400 مل",
"Product_EN": "Dina Farms Chocolate Milk 400 ml",
"Product_Id": "00006467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8792,
"name": "فيتراك مربى فراولة 450 جم - موقوف",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى فراولة 450 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8793,
"name": "نستلة زبادى طبيعى 170جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "نستلة زبادى طبيعى 170جم",
"Product_EN": "Nestle Natural Yogurt 170 gm",
"Product_Id": "00006469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8794,
"name": "لاكتيل زبادى طبيعى 170جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى طبيعى 170جم",
"Product_EN": "Lactel Natural Yogurt 170 gm ",
"Product_Id": "00006470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8795,
"name": "كلوريل منظف و مطهر عادى 1050 مل",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل منظف و مطهر عادى 1050 مل",
"Product_EN": null,
"Product_Id": "00006471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8796,
"name": "ايزيس مياة معدنية 600 مل",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس مياة معدنية 600 مل",
"Product_EN": "ISIS Mineral Water 600 ml",
"Product_Id": "00006472 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8797,
"name": "ايزيس مياة معدنية 1.5 لتر",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس مياة معدنية 1.5 لتر",
"Product_EN": "ISIS Mineral Water 1.5 L",
"Product_Id": "00006473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8798,
"name": "هيلثى دبس رمان 250 مل",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى دبس رمان 250 مل",
"Product_EN": null,
"Product_Id": "00006474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8799,
"name": "هيلثى خل تفاح 350 مل",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى خل تفاح 350 مل",
"Product_EN": null,
"Product_Id": "00006475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8800,
"name": "جهينة زبادى لايت 170 جم",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى لايت 170 جم",
"Product_EN": "Juhayna Light Yogurt 170 gm",
"Product_Id": "00006476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8801,
"name": "ليبتون شاى 75 فتلة + مج - موقوف",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 75 فتلة + مج - موقوف",
"Product_EN": null,
"Product_Id": "00006478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8802,
"name": "خلطة توابل والثوم + كيس حرارى 37جم - موقوف",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "خلطة توابل والثوم + كيس حرارى 37جم - موقوف",
"Product_EN": null,
"Product_Id": "00006479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8803,
"name": "خلطة بالزعتر والسمسم + كيس حرارى 37جم - موقوف",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "خلطة بالزعتر والسمسم + كيس حرارى 37جم - موقوف",
"Product_EN": null,
"Product_Id": "00006480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8804,
"name": "جيف كريم تنظيف ليمون 15% 750مل - موقوف",
"price": 49.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "جيف كريم تنظيف ليمون 15% 750مل - موقوف",
"Product_EN": null,
"Product_Id": "00006481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8805,
"name": "اكس مزيل عرق مارين 150ملل - موقوف",
"price": 37.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس مزيل عرق مارين 150ملل - موقوف",
"Product_EN": null,
"Product_Id": "00006482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8806,
"name": "اكس مزيل عرق بلاك 150ملل - موقوف",
"price": 37.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس مزيل عرق بلاك 150ملل - موقوف",
"Product_EN": null,
"Product_Id": "00006483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8807,
"name": "اكس مزيل عرق يو 150ملل - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس مزيل عرق يو 150ملل - موقوف",
"Product_EN": null,
"Product_Id": "00006484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8808,
"name": "جيف كريم تنظيف ليمون 15% 750مل _ موقوف",
"price": 49.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "جيف كريم تنظيف ليمون 15% 750مل _ موقوف",
"Product_EN": null,
"Product_Id": "00006485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8809,
"name": "العراقى ليمون محشى حمص وزن - موقوف",
"price": 19.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "العراقى ليمون محشى حمص وزن - موقوف",
"Product_EN": null,
"Product_Id": "00006486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8810,
"name": "الويز الترا سوبر دوبل 8*16 فوطه",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز الترا سوبر دوبل 8*16 فوطه",
"Product_EN": null,
"Product_Id": "00006487 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8811,
"name": "تايد مسحوق يدوى 80 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى 80 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8812,
"name": "تايد مسحوق يدوى ياسمين 1 كجم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى ياسمين 1 كجم",
"Product_EN": null,
"Product_Id": "00006489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8813,
"name": "بريل منظف اطباق 600 مل - موقوف",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق 600 مل - موقوف",
"Product_EN": null,
"Product_Id": "00006490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8814,
"name": "بريل سائل تنطيف اطباق ليمون 2.5 لتر",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل سائل تنطيف اطباق ليمون 2.5 لتر",
"Product_EN": null,
"Product_Id": "00006491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8815,
"name": "برسيل جيل 2.5 + جيل لافتدر 900مل - موقوف",
"price": 112,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جيل 2.5 + جيل لافتدر 900مل - موقوف",
"Product_EN": null,
"Product_Id": "00006492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8816,
"name": "برسيل جيل بلاك 900مل + بريل 465مل - موقوف",
"price": 35.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جيل بلاك 900مل + بريل 465مل - موقوف",
"Product_EN": null,
"Product_Id": "00006493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8817,
"name": "برسيل جل اوتوماتيك لافندر 1 لتر",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اوتوماتيك لافندر 1 لتر",
"Product_EN": null,
"Product_Id": "00006494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8818,
"name": "برسيل الوان 2.5 ك - موقوف",
"price": 88.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل الوان 2.5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006495 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8819,
"name": "برسيل يدوى 350 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل يدوى 350 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8820,
"name": "كرانشى مقرمشات سجق حار لارج 73 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى مقرمشات سجق حار لارج 73 جم",
"Product_EN": null,
"Product_Id": "00006497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8821,
"name": "كوكاكولا كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا كان 330 مل",
"Product_EN": "Coca-Cola Can 330 ml ",
"Product_Id": "00006498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8822,
"name": "كوكاكولا زيرو كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكاكولا زيرو كان 330 مل",
"Product_EN": "Coca-Cola Zero Can 330 ml ",
"Product_Id": "00006499 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8823,
"name": "فانتا توت كانز 330مل - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا توت كانز 330مل - موقوف",
"Product_EN": null,
"Product_Id": "00006500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8824,
"name": "سبرايت كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرايت كان 330 مل",
"Product_EN": "Sprite Can 330 ml ",
"Product_Id": "00006501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8825,
"name": "شويبس يوسفى كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس يوسفى كان 330 مل",
"Product_EN": "Schweppes Tangerine Can 330 ml",
"Product_Id": "00006502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8826,
"name": "شويبس يوسفى بلاستيك 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس يوسفى بلاستيك 1 لتر",
"Product_EN": "Schweppes Tangerine Plastic 1 L ",
"Product_Id": "00006503 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8827,
"name": "شويبس ليمون نعناع بلاستيك 1 لتر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس ليمون نعناع بلاستيك 1 لتر",
"Product_EN": "Schweppes Lemon Mint Plastic 1 L",
"Product_Id": "00006504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8828,
"name": "فانتا توت بلاستيك 1 لتر",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا توت بلاستيك 1 لتر",
"Product_EN": "Fanta Blueberry Plastic 1 L",
"Product_Id": "00006505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8829,
"name": "ميراندا برتقال كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا برتقال كان 330 مل",
"Product_EN": null,
"Product_Id": "00006506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8830,
"name": "ميراندا تفاح اخضر كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا تفاح اخضر كان 330 مل",
"Product_EN": null,
"Product_Id": "00006507 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8831,
"name": "سفن اب دايت كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب دايت كان 330 مل",
"Product_EN": "7 Up Free Can 1 L",
"Product_Id": "00006508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8832,
"name": "عباد الرحمن شنط 45*45 م وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "عباد الرحمن شنط 45*45 م وزن",
"Product_EN": null,
"Product_Id": "00006509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8833,
"name": "عباد الرحمن شنط 40*30 م وزن",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "عباد الرحمن شنط 40*30 م وزن",
"Product_EN": null,
"Product_Id": "00006510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8834,
"name": "عباد الرحمن شنط 45*20 م وزن",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "عباد الرحمن شنط 45*20 م وزن",
"Product_EN": null,
"Product_Id": "00006512 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8835,
"name": "فيروز بطيخ كانز 330 مل",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز بطيخ كانز 330 مل",
"Product_EN": null,
"Product_Id": "00006514 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8836,
"name": "ابو الليل ارز بلدى 1 كجم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو الليل ارز بلدى 1 كجم",
"Product_EN": "Abu Al-layl Rice 1 Kg ",
"Product_Id": "00006515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8837,
"name": "فانتا تفاح اخضر كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا تفاح اخضر كان 330 مل",
"Product_EN": "Fanta Green Apple Can 330 ml",
"Product_Id": "00006516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8838,
"name": "فانتا برتقال كان 330 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فانتا برتقال كان 330 مل",
"Product_EN": "Fanta Orange Can 330 ml",
"Product_Id": "00006517 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8839,
"name": "دومتى بلس جبنه فيتا 125 جم - موقوف",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى بلس جبنه فيتا 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8840,
"name": "دومتى جبنه اسطمبولى بلس 125 جم",
"price": 3.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه اسطمبولى بلس 125 جم",
"Product_EN": "Domty Istanbolly Cheese Plus 125 gm",
"Product_Id": "00006519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8841,
"name": "دومتى جبنه فيتا بلس 200 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا بلس 200 جم",
"Product_EN": "Domty Feta Cheese Plus 200 gm",
"Product_Id": "00006520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8842,
"name": "تايد مسحوق اوتوماتيك ياسمين 2.5 كجم",
"price": 79.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق اوتوماتيك ياسمين 2.5 كجم",
"Product_EN": null,
"Product_Id": "00006521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8843,
"name": "ايزيس مياة جالون 7 لتر",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايزيس مياة جالون 7 لتر",
"Product_EN": "ISIS Water Gallon 7 L ",
"Product_Id": "00006522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8844,
"name": "فيتراك مربى مشمش 245 جم - موقوف",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 245 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8845,
"name": "فيتراك مربى مشمش 380 جم",
"price": 13.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 380 جم",
"Product_EN": null,
"Product_Id": "00006524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8846,
"name": "بكرة سوليتب 300 سم",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "بكرة سوليتب 300 سم",
"Product_EN": null,
"Product_Id": "00006525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8847,
"name": "ريتش فصوص رومى مدخن وزن",
"price": 250,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش فصوص رومى مدخن وزن",
"Product_EN": "Rich Smoked Turkey Lobes - Scalable",
"Product_Id": "00006526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8848,
"name": "شنط صغيرة شفاف وزن",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شنط صغيرة شفاف وزن",
"Product_EN": null,
"Product_Id": "00006527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8849,
"name": "شنط صيدلية شفاف وزن",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "شنط صيدلية شفاف وزن",
"Product_EN": null,
"Product_Id": "00006528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8850,
"name": "كرانشى لارج جينه",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى لارج جينه",
"Product_EN": null,
"Product_Id": "00006529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8851,
"name": "فورنو فلفل اسود 50 جرام",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فورنو فلفل اسود 50 جرام",
"Product_EN": null,
"Product_Id": "00006530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8852,
"name": "شيتوس بوب بيتزا فشار 30 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس بوب بيتزا فشار 30 جم",
"Product_EN": null,
"Product_Id": "00006531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8853,
"name": "شيتوس بوب بطماطم فشار30 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس بوب بطماطم فشار30 جم",
"Product_EN": null,
"Product_Id": "00006532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8854,
"name": "زاهر بقسماط سادة 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط سادة 500 جم",
"Product_EN": "Zaher Rusk 500 g",
"Product_Id": "00006533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8855,
"name": "زاهر بقسماط سمسم 400جم - علبة - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط سمسم 400جم - علبة - موقوف",
"Product_EN": null,
"Product_Id": "00006534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8856,
"name": "زاهر بقسماط حبة البركة 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط حبة البركة 500 جم",
"Product_EN": "Zaher Rusk w Nigella Sativa 500 g",
"Product_Id": "00006535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8857,
"name": "زاهر مخبوزات باتون سالية 500 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات باتون سالية 500 جم",
"Product_EN": "Zaher Baton Sale 500 g ",
"Product_Id": "00006536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8858,
"name": "زاهر مخبوزات منين ساده 500 جم - علبه",
"price": 28.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات منين ساده 500 جم - علبه",
"Product_EN": "Zaher Plain Menen 500 g ",
"Product_Id": "00006537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8859,
"name": "كلوس اب فريش معجون 25 م",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوس اب فريش معجون 25 م",
"Product_EN": "Close Up Fresh Paste 25 ml",
"Product_Id": "00006538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8860,
"name": "اكس مزيل عرق جولد 150 مل - موقوف",
"price": 42.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس مزيل عرق جولد 150 مل - موقوف",
"Product_EN": null,
"Product_Id": "00006539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8861,
"name": "اكس مزيل عرق بلاك 150 مل - موقوف",
"price": 42.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس مزيل عرق بلاك 150 مل - موقوف",
"Product_EN": null,
"Product_Id": "00006540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8862,
"name": "كلوس اب معجون اسنان احمر 25 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوس اب معجون اسنان احمر 25 مل",
"Product_EN": "Closeup Toothpaste Red 25 ml",
"Product_Id": "00006541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8863,
"name": "زاهر مخبوزات منين عجوه 500 جم - علبه",
"price": 28.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات منين عجوه 500 جم - علبه",
"Product_EN": "Zaher Menen w Ajwa 500 g",
"Product_Id": "00006543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8864,
"name": "زاهر بقسماط سن 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط سن 500 جم",
"Product_EN": "Zaher Brown Rusk 500 g ",
"Product_Id": "00006544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8865,
"name": "زاهر انس نواشف 400 جم - موقوف",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر انس نواشف 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8866,
"name": "زاهر اسبونش فانليا م 26 - موقوف",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر اسبونش فانليا م 26 - موقوف",
"Product_EN": null,
"Product_Id": "00006546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8867,
"name": "زاهر اسبونش شيكولاتة م 26 - موقوف",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر اسبونش شيكولاتة م 26 - موقوف",
"Product_EN": null,
"Product_Id": "00006547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8868,
"name": "روتيلا زيت زيتون 500 مل - موقوف",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روتيلا زيت زيتون 500 مل - موقوف",
"Product_EN": null,
"Product_Id": "00006548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8869,
"name": "زينه مناديل 550 منديل توت",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل 550 منديل توت",
"Product_EN": null,
"Product_Id": "00006549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8870,
"name": "زينه مناديل 550 منديل تفاح",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل 550 منديل تفاح",
"Product_EN": null,
"Product_Id": "00006550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8871,
"name": "طازة بيض احمر- مغلف 30 ق",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طازة بيض احمر- مغلف 30 ق",
"Product_EN": null,
"Product_Id": "00006553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8872,
"name": "طازة بيض ابيض - مغلف 30 ق",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طازة بيض ابيض - مغلف 30 ق",
"Product_EN": null,
"Product_Id": "00006554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8873,
"name": "طازة بيض بلدى مغلف 30 ق",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "طازة بيض بلدى مغلف 30 ق",
"Product_EN": null,
"Product_Id": "00006555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8874,
"name": "زاهر مخبوزات بسكويت مشكل 500 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات بسكويت مشكل 500 جم",
"Product_EN": "Zaher Mixed Biscuits 500 g ",
"Product_Id": "00006556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8875,
"name": "زاهر مخبوزات كراكز ابيض 250 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات كراكز ابيض 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8876,
"name": "ارو الومنيوم فويل 60م * 40سم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو الومنيوم فويل 60م * 40سم",
"Product_EN": null,
"Product_Id": "00006558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8877,
"name": "ارو اكواب ورقية 6.5 اونز 20 ق",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو اكواب ورقية 6.5 اونز 20 ق",
"Product_EN": null,
"Product_Id": "00006559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8878,
"name": "ارو اكواب ورقية 12 اونز للمشروبات الساخنة 20 ق",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو اكواب ورقية 12 اونز للمشروبات الساخنة 20 ق",
"Product_EN": null,
"Product_Id": "00006560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8879,
"name": "ارو اكواب ورقية 12 اونز للمشروبات الباردة 20 ق",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو اكواب ورقية 12 اونز للمشروبات الباردة 20 ق",
"Product_EN": null,
"Product_Id": "00006561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8880,
"name": "ارو كوب ورقي 8 اونز للمشروبات الساخنة +الغطاء 10 ق",
"price": 16.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو كوب ورقي 8 اونز للمشروبات الساخنة +الغطاء 10 ق",
"Product_EN": null,
"Product_Id": "00006562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8881,
"name": "زاهر باتيه بالجبنة البيضاء 4 ق - علبة - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر باتيه بالجبنة البيضاء 4 ق - علبة - موقوف",
"Product_EN": null,
"Product_Id": "00006563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8882,
"name": "زاهر باتية بالجبنة الرومى صغير 10 ق - علبة - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر باتية بالجبنة الرومى صغير 10 ق - علبة - موقوف",
"Product_EN": null,
"Product_Id": "00006564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8883,
"name": "زاهر كرواسون سادة 8 ق - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كرواسون سادة 8 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8884,
"name": "كلوس اب معجون اسنان اخضر 100 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوس اب معجون اسنان اخضر 100 مل",
"Product_EN": "Closeup Toothpaste Green 100 ml",
"Product_Id": "00006566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8885,
"name": "كلوس اب معجون اسنان احمر 100 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كلوس اب معجون اسنان احمر 100 مل",
"Product_EN": "Closeup Toothpaste Red 100 ml",
"Product_Id": "00006567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8886,
"name": "بريل منظف اطباق 1 لتر عرض - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق 1 لتر عرض - موقوف",
"Product_EN": null,
"Product_Id": "00006568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8887,
"name": "برسيل مسحوق الوان 800جم - موقوف",
"price": 31.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق الوان 800جم - موقوف",
"Product_EN": null,
"Product_Id": "00006569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8888,
"name": "برسيل مسحوق اتوماتيك 4 كجم + بريل 1 لتر - موقوف",
"price": 129.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك 4 كجم + بريل 1 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00006570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8889,
"name": "برسيل مسحوق اتوماتيك 2.5 لافندر+بريل 675مل - موقوف",
"price": 95.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك 2.5 لافندر+بريل 675مل - موقوف",
"Product_EN": null,
"Product_Id": "00006571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8890,
"name": "برسيل مسحوق يدوى 100جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى 100جم - موقوف",
"Product_EN": null,
"Product_Id": "00006572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8891,
"name": "برسيل جيل 3 لتر + 1 لتر جيل - موقوف",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جيل 3 لتر + 1 لتر جيل - موقوف",
"Product_EN": null,
"Product_Id": "00006573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8892,
"name": "برسيل عالى الرغوه 60 جم - موقوف",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل عالى الرغوه 60 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8893,
"name": "شيبسى ملح 3 ج 48 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى ملح 3 ج 48 جم",
"Product_EN": null,
"Product_Id": "00006575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8894,
"name": "شيبسى صوص حار 52 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى صوص حار 52 جم",
"Product_EN": null,
"Product_Id": "00006576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8895,
"name": "شيبسى خل وملح 3 ج 48 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى خل وملح 3 ج 48 جم",
"Product_EN": null,
"Product_Id": "00006577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8896,
"name": "شيبسى جبنه 3 ج 48 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى جبنه 3 ج 48 جم",
"Product_EN": null,
"Product_Id": "00006578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8897,
"name": "كل يوم عصير تفاح 200 مل - موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كل يوم عصير تفاح 200 مل - موقوف",
"Product_EN": null,
"Product_Id": "00006579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8898,
"name": "كل يوم عصير مانجو 200 مل _ موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كل يوم عصير مانجو 200 مل _ موقوف",
"Product_EN": null,
"Product_Id": "00006580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8899,
"name": "ارو نيلون شفاف 40م*30سم",
"price": 30.45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "ارو نيلون شفاف 40م*30سم",
"Product_EN": null,
"Product_Id": "00006581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8900,
"name": "دانون اكتيفيا زبادى طبيعى 170جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا زبادى طبيعى 170جم",
"Product_EN": "Danone Activia Natural Yogurt 170 gm",
"Product_Id": "00006582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8901,
"name": "ديمه بسكويت بكريمة الموز110 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسكويت بكريمة الموز110 جم",
"Product_EN": null,
"Product_Id": "00006583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8902,
"name": "ديمه كراكى بسكويت ملح سادة 48 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه كراكى بسكويت ملح سادة 48 جم",
"Product_EN": null,
"Product_Id": "00006584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8903,
"name": "زاهر خبز فينو 4 ق - كيس - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز فينو 4 ق - كيس - موقوف",
"Product_EN": null,
"Product_Id": "00006585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8904,
"name": "زاهر خبز فينو 2 ق - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز فينو 2 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8905,
"name": "زاهر خبز كيزر وسط سادة 6 ق - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز كيزر وسط سادة 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8906,
"name": "زاهر خبز كيزر كبير 4 ق - موقوف",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز كيزر كبير 4 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8907,
"name": "زاهر مينى رول سمسم 12 ق - موقوف",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مينى رول سمسم 12 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8908,
"name": "زاهر خبز بيتى بان ساده 6 ق",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز بيتى بان ساده 6 ق",
"Product_EN": "Zaher Petit Pan Bread 6 pieces",
"Product_Id": "00006590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8909,
"name": "فيتراك مربى مشمش 900 جم _ موقوف",
"price": 23.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتراك مربى مشمش 900 جم _ موقوف",
"Product_EN": null,
"Product_Id": "00006591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8910,
"name": "زاهر خبز كيزر 2 ق - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز كيزر 2 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8911,
"name": "زاهر مينى رول سمسم 6 ق - كيس - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مينى رول سمسم 6 ق - كيس - موقوف",
"Product_EN": null,
"Product_Id": "00006593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8912,
"name": "زاهر خبز كيزر وسط 4 ق - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز كيزر وسط 4 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8913,
"name": "العميد قهوه تركى فاتح ساده 250جم - موقوف",
"price": 144.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العميد قهوه تركى فاتح ساده 250جم - موقوف",
"Product_EN": null,
"Product_Id": "00006595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8914,
"name": "العميد قهوه فرنسى250جم - موقوف",
"price": 144.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العميد قهوه فرنسى250جم - موقوف",
"Product_EN": null,
"Product_Id": "00006596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8915,
"name": "الفتح شيدر1800جم - موقوف",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الفتح شيدر1800جم - موقوف",
"Product_EN": null,
"Product_Id": "00006597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8916,
"name": "الفتح جبنة موزوريلا 200 جم - موقوف",
"price": 10.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الفتح جبنة موزوريلا 200 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8917,
"name": "اريال مسحوق اوتوماتيك داونى 2.5 ك - موقوف",
"price": 91,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اوتوماتيك داونى 2.5 ك - موقوف",
"Product_EN": null,
"Product_Id": "00006599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8918,
"name": "اريال مسحوق يدوى داونى1000 جم - موقوف",
"price": 26.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق يدوى داونى1000 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8919,
"name": "زاهر مخبوزات باتيه جبنه بيضاء 6 ق - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات باتيه جبنه بيضاء 6 ق - موقوف",
"Product_EN": "Zaher Pate w White Cheese 6 pieces",
"Product_Id": "00006601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8920,
"name": "زاهر مخبوزات باتيه جبنه رومى 6 ق - موقوف",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات باتيه جبنه رومى 6 ق - موقوف",
"Product_EN": "Zaher Pate w Roumi Cheese 6 pieces",
"Product_Id": "00006602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8921,
"name": "زاهر كرواسون سادة 6 ق - موقوف",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كرواسون سادة 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006603 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8922,
"name": "زاهر خبز فينو ساده 4 ق",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز فينو ساده 4 ق",
"Product_EN": "Zaher Fino Bread 4 pieces",
"Product_Id": "00006604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8923,
"name": "زاهر خبز كيزر سمسم كبير 4 ق - كيس - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز كيزر سمسم كبير 4 ق - كيس - موقوف",
"Product_EN": null,
"Product_Id": "00006605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8924,
"name": "زاهر بقسماط سادة 250 جم - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط سادة 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8925,
"name": "زاهر بقسماط سمسم 250 جم - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط سمسم 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8926,
"name": "زاهر بقسماط حبة البركة 250جم - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط حبة البركة 250جم - موقوف",
"Product_EN": null,
"Product_Id": "00006608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8927,
"name": "زاهر باتون سالية سادة \/ كمون 250 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر باتون سالية سادة \/ كمون 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8928,
"name": "زاهر منين سادة 250 جم - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر منين سادة 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8929,
"name": "زاهر منين شمر 250 جم - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر منين شمر 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8930,
"name": "زاهر منين عجوة 250 جم - موقوف",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر منين عجوة 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006612 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8931,
"name": "زاهر بقسماط سن 250 جم - موقوف",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط سن 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8932,
"name": "لمار مشروب كوكتيل 1 لتر",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب كوكتيل 1 لتر",
"Product_EN": "LAMAR Red Cocktail Drink - 1L",
"Product_Id": "00006614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8933,
"name": "زاهر خبز فينو سمسم 4 ق",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز فينو سمسم 4 ق",
"Product_EN": "Zaher Fino Bread w Sesame 4 pieces",
"Product_Id": "00006615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8934,
"name": "زاهر خبز كيزر وسط سمسم 6 ق - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز كيزر وسط سمسم 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8935,
"name": "لوكس صابون الكريمة الغنية 120جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون الكريمة الغنية 120جم",
"Product_EN": "LUX Creamy Perbection Soap 120 gm",
"Product_Id": "00006617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8936,
"name": "دوف شامبو + شاور 400مل - موقوف",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو + شاور 400مل - موقوف",
"Product_EN": null,
"Product_Id": "00006618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8937,
"name": "دومتى جبنه فيتا زيتون 500 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا زيتون 500 جم",
"Product_EN": "Domty Feta Cheese Olives 500 gm",
"Product_Id": "00006619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8938,
"name": "دومتى جبنه كريمى بابريكا 220 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه كريمى بابريكا 220 جم",
"Product_EN": "Domty Creamy Cheese Paprika 220 gm",
"Product_Id": "00006620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8939,
"name": "دومتى جبنه كريمى لايت 220 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه كريمى لايت 220 جم",
"Product_EN": "Domty Light Creamy Cheese 220 gm",
"Product_Id": "00006621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8940,
"name": "دانون زبادى 8 ق عرض - موقوف",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادى 8 ق عرض - موقوف",
"Product_EN": null,
"Product_Id": "00006622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8941,
"name": "دانجو زبادى فراوله 4ق 105جم وفر 1ج - موقوف",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو زبادى فراوله 4ق 105جم وفر 1ج - موقوف",
"Product_EN": null,
"Product_Id": "00006623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8942,
"name": "جهينة زبادى لايت 5ق+1 عرض",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى لايت 5ق+1 عرض",
"Product_EN": null,
"Product_Id": "00006625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8943,
"name": "زاهر بقسماط مطحون ناعم 500 جم - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط مطحون ناعم 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00006626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8944,
"name": "زاهر خبز كيزر سادة 6 ق - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز كيزر سادة 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8945,
"name": "زاهر خبز كيزر سمسم 6 ق - موقوف",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز كيزر سمسم 6 ق - موقوف",
"Product_EN": null,
"Product_Id": "00006628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8946,
"name": "كرانشى بالبيتزا 32 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى بالبيتزا 32 جم",
"Product_EN": null,
"Product_Id": "00006630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8947,
"name": "ريتش بيك خبز سوفت رول بالسمسم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك خبز سوفت رول بالسمسم",
"Product_EN": null,
"Product_Id": "00006631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8948,
"name": "كبريت درج مصرى",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "كبريت درج مصرى",
"Product_EN": null,
"Product_Id": "00006632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8949,
"name": "تاوتاو سويسرول محشو كريمة بطعم الفراولة",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تاوتاو سويسرول محشو كريمة بطعم الفراولة",
"Product_EN": null,
"Product_Id": "00012357 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8950,
"name": "تاوتاو سويسرول محشو كريمة بطعم البندق",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تاوتاو سويسرول محشو كريمة بطعم البندق",
"Product_EN": null,
"Product_Id": "00012358 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8951,
"name": "بسكويت بالتمر مغطس 1 ق",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكويت بالتمر مغطس 1 ق",
"Product_EN": null,
"Product_Id": "00012359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8952,
"name": "بسكويت بالتمر مغطس 2 ق",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكويت بالتمر مغطس 2 ق",
"Product_EN": null,
"Product_Id": "00012360 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8953,
"name": "باي لاك بسكوت بالتمر",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باي لاك بسكوت بالتمر",
"Product_EN": null,
"Product_Id": "00012361 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8954,
"name": "باى لاك بسكويت بالتمر",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باى لاك بسكويت بالتمر",
"Product_EN": null,
"Product_Id": "00012362 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8955,
"name": "باى لاك بسكويت ويفر مغطس شيكولاتة",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باى لاك بسكويت ويفر مغطس شيكولاتة",
"Product_EN": null,
"Product_Id": "00012363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8956,
"name": "تاوتاو بسكوت بالكاكاو",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تاوتاو بسكوت بالكاكاو",
"Product_EN": null,
"Product_Id": "00012364 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8957,
"name": "تاوتاو بسكويت بالكاكاو",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تاوتاو بسكويت بالكاكاو",
"Product_EN": null,
"Product_Id": "00012365 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8958,
"name": "كيكو باى قطعتين كاكاو",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيكو باى قطعتين كاكاو",
"Product_EN": null,
"Product_Id": "00012368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8959,
"name": "سى كمارا بسكويت محشو بالمارشيملو شوكولاتة",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سى كمارا بسكويت محشو بالمارشيملو شوكولاتة",
"Product_EN": null,
"Product_Id": "00012369 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8960,
"name": "سى كمارا كاكاو بسكويت بالمارشيملو مغطى شيكولاتة",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سى كمارا كاكاو بسكويت بالمارشيملو مغطى شيكولاتة",
"Product_EN": null,
"Product_Id": "00012370 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8961,
"name": "سى كمارا بسكويت محشو بالمارشمالو شكولاته",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سى كمارا بسكويت محشو بالمارشمالو شكولاته",
"Product_EN": null,
"Product_Id": "00012371 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8962,
"name": "كمارا بسكويت كاكاو مغطى شيكولاتة بيضاء",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كمارا بسكويت كاكاو مغطى شيكولاتة بيضاء",
"Product_EN": null,
"Product_Id": "00012372 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8963,
"name": "كيك تاوتاو 3× 1 فراولة",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك تاوتاو 3× 1 فراولة",
"Product_EN": null,
"Product_Id": "00012373 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8964,
"name": "كيك تاوتاو 3× 1 بندق",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك تاوتاو 3× 1 بندق",
"Product_EN": null,
"Product_Id": "00012374 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8965,
"name": "كيك تاوتاو 3× 1 كاكاو",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيك تاوتاو 3× 1 كاكاو",
"Product_EN": null,
"Product_Id": "00012375 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8966,
"name": "تاوتاو فينجر بسكوت محشو حلاوة مغطي شوكولاتة",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تاوتاو فينجر بسكوت محشو حلاوة مغطي شوكولاتة",
"Product_EN": null,
"Product_Id": "00012376 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8967,
"name": "تاوتاو فينجر بسكوت محشو ملبن",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تاوتاو فينجر بسكوت محشو ملبن",
"Product_EN": null,
"Product_Id": "00012377 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8968,
"name": "باى لاك كريسب",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باى لاك كريسب",
"Product_EN": null,
"Product_Id": "00012378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8969,
"name": "باى لاك كريسب * 12 ق",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باى لاك كريسب * 12 ق",
"Product_EN": null,
"Product_Id": "00012379 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8970,
"name": "كمارا ستار شوكولاتة حليب",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كمارا ستار شوكولاتة حليب",
"Product_EN": null,
"Product_Id": "00012380 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8971,
"name": "كمارا ستار شيكولاتة بندق",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كمارا ستار شيكولاتة بندق",
"Product_EN": null,
"Product_Id": "00012381 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8972,
"name": "كمارا ستار شيكولاتة كراميل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كمارا ستار شيكولاتة كراميل",
"Product_EN": null,
"Product_Id": "00012382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8973,
"name": "ش استيك حليب",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ش استيك حليب",
"Product_EN": null,
"Product_Id": "00012383 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8974,
"name": "ابو عوف ملح الهيمالايا الصخري ناعم 400 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف ملح الهيمالايا الصخري ناعم 400 جم",
"Product_EN": "Abu Auf Pink Himalayan Salt Crystal Soft 400 gm",
"Product_Id": "00012384 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8975,
"name": "ابو عوف سحلب بالمكسرات 250جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف سحلب بالمكسرات 250جم",
"Product_EN": "Abu Auf Sahlab With Nuts100 gm",
"Product_Id": "00012385 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8976,
"name": "كوكى فيليه الدجاج الجولد 9 ق",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى فيليه الدجاج الجولد 9 ق",
"Product_EN": "Koki Chicken Fillet Gold 9 Pieces",
"Product_Id": "00012386 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8977,
"name": "كوكى وجبه الدجاج جولد 9 ق",
"price": 82,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى وجبه الدجاج جولد 9 ق",
"Product_EN": "Koki Chicken Meal Gold 9 Pieces ",
"Product_Id": "00012387 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8978,
"name": "كوكى جولد تندر الدجاج 400 جم",
"price": 49.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى جولد تندر الدجاج 400 جم",
"Product_EN": "Koki Tender Chicken 400 gm",
"Product_Id": "00012388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8979,
"name": "كوكى بيف برجر جولد 600 جم",
"price": 73.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى بيف برجر جولد 600 جم",
"Product_EN": "Koki Beef Burger Gold 600 gm",
"Product_Id": "00012389 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8980,
"name": "كوكى بيف هوت دوج جولد 500 جم",
"price": 49.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى بيف هوت دوج جولد 500 جم",
"Product_EN": "Koki Beef Hot Dog Gold 500 gm",
"Product_Id": "00012390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8981,
"name": "كوكى سمك فيليه جولد 500 جم",
"price": 73,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى سمك فيليه جولد 500 جم",
"Product_EN": "Koki fish fillet gold 500 gm",
"Product_Id": "00012391 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8982,
"name": "كوكى جمبري جولد 400 جم",
"price": 95.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى جمبري جولد 400 جم",
"Product_EN": "Koki Shrimp Gold 400 gm",
"Product_Id": "00012392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8983,
"name": "الكبوس شاى 100 فتلة",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس شاى 100 فتلة",
"Product_EN": null,
"Product_Id": "00012393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8984,
"name": "الكبوس شاى 24 فتلة",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الكبوس شاى 24 فتلة",
"Product_EN": null,
"Product_Id": "00012394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8985,
"name": "كمارا شيكولاته استيك بطعم البندق",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كمارا شيكولاته استيك بطعم البندق",
"Product_EN": null,
"Product_Id": "00012395 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8986,
"name": "كريستال زيت عباد الشمس 2.2 لتر",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت عباد الشمس 2.2 لتر",
"Product_EN": "Crystal Sunflower Oil 2.2 L",
"Product_Id": "00012396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8987,
"name": "كريستال زيت ذره 800 مل ",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذره 800 مل ",
"Product_EN": "Crystal Corn Oil 800 ml",
"Product_Id": "00012397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8988,
"name": "كريستال زيت عباد الشمس 800 مل ",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت عباد الشمس 800 مل ",
"Product_EN": "Crystal Sunflower Oil 800 ml ",
"Product_Id": "00012398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8989,
"name": "ميموريز بسكويت شاى 150جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميموريز بسكويت شاى 150جم",
"Product_EN": null,
"Product_Id": "00012399 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8990,
"name": "جلاكسى شيكولاته جوز هند 36 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شيكولاته جوز هند 36 جم",
"Product_EN": "Galaxy Chocolate Coconut 36 gm",
"Product_Id": "00012400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8991,
"name": "جلاكسى شيكولاته بالبرتقال 36جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شيكولاته بالبرتقال 36جم",
"Product_EN": "Galaxy Chocolate Orange 36 gm",
"Product_Id": "00012401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8992,
"name": "زاهر تورتة ايس كريم شيكولاته & زبادي ",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم شيكولاته & زبادي ",
"Product_EN": "Zaher Yogurt & Mango Ice Cream Torte",
"Product_Id": "00012402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8993,
"name": "زاهر تورتة ايس كريم مانجو & زبادي توت - موقوف",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم مانجو & زبادي توت - موقوف",
"Product_EN": "Zaher Berry & Mango Yogurt Ice Cream Torte",
"Product_Id": "00012403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8994,
"name": "دايجستيف بسكويت دارك كوكيز 36جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستيف بسكويت دارك كوكيز 36جم",
"Product_EN": null,
"Product_Id": "00012404 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8995,
"name": "ماكفيتيز دارك بسكويت كوكيز 63جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكفيتيز دارك بسكويت كوكيز 63جم",
"Product_EN": null,
"Product_Id": "00012405 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8996,
"name": "دايجستف بسكويت مينى شوفان ذهبى 45 جم ",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستف بسكويت مينى شوفان ذهبى 45 جم ",
"Product_EN": null,
"Product_Id": "00012406 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8997,
"name": "زاهر ايس كريم كيت كات kitkat وزن",
"price": 111,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم كيت كات kitkat وزن",
"Product_EN": "Zaher KITKAT Ice Cream - Scalable ",
"Product_Id": "00012408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8998,
"name": "زاهر جبنه دوبل كريم وزن new - موقوف",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جبنه دوبل كريم وزن new - موقوف",
"Product_EN": "Zaher Cheese Double Cream New - Scalable",
"Product_Id": "00012409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 8999,
"name": "كمارا شيكولاتة مغطى",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كمارا شيكولاتة مغطى",
"Product_EN": null,
"Product_Id": "00012410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9000,
"name": "سمرمون بطارخ رنجه 330 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سمرمون بطارخ رنجه 330 جم",
"Product_EN": null,
"Product_Id": "00012411 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9001,
"name": "دوبيلا دقيق ارز بنى وزن",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوبيلا دقيق ارز بنى وزن",
"Product_EN": null,
"Product_Id": "00012412 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9002,
"name": "لمار مشروب أناناس 1 لتر ",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار مشروب أناناس 1 لتر ",
"Product_EN": "LAMAR Pineapple Drink 1 L ",
"Product_Id": "00012413 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9003,
"name": "نوتيلا شيكولاته 3 كجم",
"price": 485,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوتيلا شيكولاته 3 كجم",
"Product_EN": null,
"Product_Id": "00012414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9004,
"name": "زمزم ارز مصرى 5 كجم",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زمزم ارز مصرى 5 كجم",
"Product_EN": "ZamZam Egyptian Rice 5 Kg ",
"Product_Id": "00012415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9005,
"name": "زمزم ارز بسمتى 1 كجم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زمزم ارز بسمتى 1 كجم",
"Product_EN": "ZamZam Basmati Rice 1 Kg",
"Product_Id": "00012416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9006,
"name": "القرشى تمر مجدول جامبو 1 كجم",
"price": 145,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "القرشى تمر مجدول جامبو 1 كجم",
"Product_EN": "Al Qurashi Dates Majdool Jumbo 1 kg",
"Product_Id": "00012417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9007,
"name": "عطاره . فسدق نى وزن",
"price": 225,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فسدق نى وزن",
"Product_EN": "Attara Pistachio Ne - Scalable ",
"Product_Id": "00012418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9008,
"name": "عطاره . الدلتا حمص وزن - موقوف",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . الدلتا حمص وزن - موقوف",
"Product_EN": "Attara Al Delta Hummus - Scalable ",
"Product_Id": "00012419 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9009,
"name": "زاهر بقسماط مطحون وزن - موقوف ",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقسماط مطحون وزن - موقوف ",
"Product_EN": "Zaher Bread Crumbs - Scalable ",
"Product_Id": "00012420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9010,
"name": "دريم كريم كراميل شيكولاته & قهوة 112 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم كريم كراميل شيكولاته & قهوة 112 جم",
"Product_EN": "Dreem Cream Caramel Chocolate & Coffee 112 gm",
"Product_Id": "00012421 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9011,
"name": "دريم هوت شوكليت لاتية 85 جم",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم هوت شوكليت لاتية 85 جم",
"Product_EN": "Dreem Hot Chocolate Latte 85 gm",
"Product_Id": "00012422 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9012,
"name": "عطاره . فانيليا 1 ق",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فانيليا 1 ق",
"Product_EN": "Attara - Vanilla 1 Pieces ",
"Product_Id": "00012423 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9013,
"name": "عطاره . بهارات كفتة وزن",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بهارات كفتة وزن",
"Product_EN": "Attara Kofta Spices - Scalable ",
"Product_Id": "00012424 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9014,
"name": "عطاره . بهارات برجر وزن",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بهارات برجر وزن",
"Product_EN": "Attara Burger Spices - Scalable ",
"Product_Id": "00012425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9015,
"name": "عطاره . توابل سجق وزن",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . توابل سجق وزن",
"Product_EN": "Attara Sausage Spices - Scalable ",
"Product_Id": "00012426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9016,
"name": "عطاره . شوفان سايب وزن",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شوفان سايب وزن",
"Product_EN": "Attara Oats Sayb - Scalable ",
"Product_Id": "00012427 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9017,
"name": "زاهر تورته ايس كريم فانيليا",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورته ايس كريم فانيليا",
"Product_EN": "Zaher Vanilla Ice Cream Torte",
"Product_Id": "00012428 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9018,
"name": "نسكويك مشروب شيكولاته 880 جم",
"price": 77,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك مشروب شيكولاته 880 جم",
"Product_EN": null,
"Product_Id": "00012429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9019,
"name": "بونكس مسحوق اتوماتيك 2.5 كجم",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بونكس مسحوق اتوماتيك 2.5 كجم",
"Product_EN": null,
"Product_Id": "00012430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9020,
"name": "تايد مسحوق يدوى عطر اصلى 150جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد مسحوق يدوى عطر اصلى 150جم",
"Product_EN": null,
"Product_Id": "00012431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9021,
"name": "سيلا ورق زبده 40 سم + ورق فويل 40 سم + كلينج فيلم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا ورق زبده 40 سم + ورق فويل 40 سم + كلينج فيلم",
"Product_EN": null,
"Product_Id": "00012432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9022,
"name": "لاندانا جبنه جوده بلو وزن",
"price": 290,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جوده بلو وزن",
"Product_EN": null,
"Product_Id": "00012433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9023,
"name": "لاندانا جبنه برمادونا وزن",
"price": 360,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:56",
"updated_at": "2021-11-01 19:45:56",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه برمادونا وزن",
"Product_EN": null,
"Product_Id": "00012434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9024,
"name": "لاندانا جبنه اورجانيك وزن",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه اورجانيك وزن",
"Product_EN": null,
"Product_Id": "00012435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9025,
"name": "لاندانا جبنه ماعز معتق وزن",
"price": 375,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه ماعز معتق وزن",
"Product_EN": null,
"Product_Id": "00012436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9026,
"name": "لاندانا جبنه جودة معتق بل دولوند وزن",
"price": 146,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جودة معتق بل دولوند وزن",
"Product_EN": null,
"Product_Id": "00012437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9027,
"name": "لاندانا جبنه جوده بالمشروم وزن",
"price": 320,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جوده بالمشروم وزن",
"Product_EN": null,
"Product_Id": "00012438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9028,
"name": "لاندانا جبنه جوده تعتيق 1000يوم وزن",
"price": 375,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جوده تعتيق 1000يوم وزن",
"Product_EN": null,
"Product_Id": "00012439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9029,
"name": "لاندانا جبنه جرين بيستو وزن",
"price": 290,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جرين بيستو وزن",
"Product_EN": null,
"Product_Id": "00012440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9030,
"name": "لاندانا جبنه ريد بيستو وزن",
"price": 290,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه ريد بيستو وزن",
"Product_EN": null,
"Product_Id": "00012441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9031,
"name": "لاندانا جبنه جوده بالكراميل وزن",
"price": 399,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاندانا جبنه جوده بالكراميل وزن",
"Product_EN": null,
"Product_Id": "00012442 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9032,
"name": "بسكو لوكس بسكويت محشو بالتمر",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بسكو لوكس بسكويت محشو بالتمر",
"Product_EN": null,
"Product_Id": "00012443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9033,
"name": "صانسيلك بديل زيت طبيعى بجوز الهند 300 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "صانسيلك بديل زيت طبيعى بجوز الهند 300 مل",
"Product_EN": "Sunsilk Coconut Oil Replacement 300 ml",
"Product_Id": "00012444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9034,
"name": "جيف سبراي فائق السرعه لكل شئ 500 مل",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "جيف سبراي فائق السرعه لكل شئ 500 مل",
"Product_EN": "Jif Ultra Fast Everywhere Spray 500 ml",
"Product_Id": "00012445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9035,
"name": "تريسيمي شامبو تغذيه وتجديد 600 مل",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسيمي شامبو تغذيه وتجديد 600 مل",
"Product_EN": "Tresemme Shamp Botanix Nour 600 ML",
"Product_Id": "00012446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9036,
"name": "تريسيمي شامبو قوه وتحكم بالتساقط 400 مل",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسيمي شامبو قوه وتحكم بالتساقط 400 مل",
"Product_EN": "Tresemme Fall Control &Strengthening Shampoo 400ml",
"Product_Id": "00012447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9037,
"name": "تريسيمي شامبو اصلاح وحمايه 400 مل",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "تريسيمي شامبو اصلاح وحمايه 400 مل",
"Product_EN": "Tresemme Shamp Repair E 400 ml",
"Product_Id": "00012448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9038,
"name": "كمفورت اكياس روز نواعم الزهور 400 مل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت اكياس روز نواعم الزهور 400 مل",
"Product_EN": "Comfort Sachets Of Rose Flowers 400 ml",
"Product_Id": "00012449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9039,
"name": "سيجنال معجون اسنان كومبليت الاصلى 100 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت الاصلى 100 مل",
"Product_EN": "Signal Toothpaste Complete Original 100 ml",
"Product_Id": "00012450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9040,
"name": "سيجنال معجون اسنان كومبليت بخلاصه الفحم 50 مل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال معجون اسنان كومبليت بخلاصه الفحم 50 مل",
"Product_EN": "Signal Toothpaste Complete Charcoal Extract 50 ml",
"Product_Id": "00012452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9041,
"name": "فيس مسك كمامة الوان 50 ق",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فيس مسك كمامة الوان 50 ق",
"Product_EN": null,
"Product_Id": "00012453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9042,
"name": "ايفونى كمامات طبيه 10 ق",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ايفونى كمامات طبيه 10 ق",
"Product_EN": null,
"Product_Id": "00012454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9043,
"name": "فان داى فشار بالفواكه 60 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى فشار بالفواكه 60 جم",
"Product_EN": "FunDay Popcorn Fruits 60 gm",
"Product_Id": "00012455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9044,
"name": "فان داى فشار بالشوكولاتة 60 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى فشار بالشوكولاتة 60 جم",
"Product_EN": "FunDay Chocolate Popcorn 60 gm",
"Product_Id": "00012456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9045,
"name": "فان داى فشار شوكولاتة وتوفي 60 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى فشار شوكولاتة وتوفي 60 جم",
"Product_EN": "FunDay Popcorn Chocolate & Toffee 60 gm",
"Product_Id": "00012457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9046,
"name": "نسكافيه جولد اسبرسو قهوة سريعه التحضير 100 جم ",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكافيه جولد اسبرسو قهوة سريعه التحضير 100 جم ",
"Product_EN": null,
"Product_Id": "00012458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9047,
"name": "لوكس بسكويت شوفان 3 ق",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوكس بسكويت شوفان 3 ق",
"Product_EN": null,
"Product_Id": "00012459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9048,
"name": "كوكو لافرز بسكويت ويفر بالبندق 8 قطع",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوكو لافرز بسكويت ويفر بالبندق 8 قطع",
"Product_EN": null,
"Product_Id": "00012460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9049,
"name": "لوكس بسكويت ساده 12 ق",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لوكس بسكويت ساده 12 ق",
"Product_EN": null,
"Product_Id": "00012461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9050,
"name": "برينجلز كاتشب 40 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برينجلز كاتشب 40 جم",
"Product_EN": "Pringles ketchup 40 gm",
"Product_Id": "00012462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9051,
"name": "هانى امام علب سحلب فارغة",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "هانى امام علب سحلب فارغة",
"Product_EN": null,
"Product_Id": "00012463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9052,
"name": "رودس جبنه قديمه 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه قديمه 125 جم",
"Product_EN": "Rhodes Old Cheese 125 gm",
"Product_Id": "00012464 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9053,
"name": "رودس جبنه شيدر 125 جم",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "رودس جبنه شيدر 125 جم",
"Product_EN": "Rhodes Cheddar Cheese 125 gm",
"Product_Id": "00012465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9054,
"name": "عافيه زيت عباد الشمس 2.2 لتر ",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت عباد الشمس 2.2 لتر ",
"Product_EN": "Afia Sunflower Oil 2.2 L",
"Product_Id": "00012466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9055,
"name": "كورونا مشروب شيكولاته بودر11جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا مشروب شيكولاته بودر11جم",
"Product_EN": null,
"Product_Id": "00012467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9056,
"name": "صن شاين تونه مفتته 185 جم 2 ق + زين شاى 40 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين تونه مفتته 185 جم 2 ق + زين شاى 40 جم",
"Product_EN": "Sunshine Shredded Tuna 185 gm 2 Pieces + Tea 40 gm",
"Product_Id": "00012468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9057,
"name": "زاهر شمع عسل 1 كجم",
"price": 115,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر شمع عسل 1 كجم",
"Product_EN": "Zaher Besswax 1 Kg ",
"Product_Id": "00012469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9058,
"name": "زاهر ايس كريم مكس 155 ج - وزن",
"price": 155,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم مكس 155 ج - وزن",
"Product_EN": "Zaher Mix Ice Cream 155 Pound - Scalable",
"Product_Id": "00012471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9059,
"name": "بريزيدون لبنه 275 جم ",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون لبنه 275 جم ",
"Product_EN": "President Labneh 275 gm ",
"Product_Id": "00012473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9060,
"name": "طعمه شرائح برجر 48 ق",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمه شرائح برجر 48 ق",
"Product_EN": "Teama Burger Cheese Slices 48 Pieces",
"Product_Id": "00012474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9061,
"name": "نستلة مشروب جو مانجو خوخ 400 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستلة مشروب جو مانجو خوخ 400 مل",
"Product_EN": "Nestle Go Mango Peach Drink 400 ml",
"Product_Id": "00012475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9062,
"name": "كورونا كاكاو 45جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا كاكاو 45جم",
"Product_EN": null,
"Product_Id": "00012476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9063,
"name": "المراعى كريمة خفق 1 لتر",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى كريمة خفق 1 لتر",
"Product_EN": "Almarai Whipping Cream 1 L",
"Product_Id": "00012477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9064,
"name": "ميمكس لولليز مصاصات كيس",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميمكس لولليز مصاصات كيس",
"Product_EN": null,
"Product_Id": "00012478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9065,
"name": "فرولا توفى شيكولاتة",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فرولا توفى شيكولاتة",
"Product_EN": null,
"Product_Id": "00012479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9066,
"name": "زاهر ايس كريم سنيكرز وزن",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم سنيكرز وزن",
"Product_EN": "Zaher Ice Cream Snickers - Scalable ",
"Product_Id": "00012480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9067,
"name": "فريدا سائل تنظيف الايدي جرين فالى 520 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا سائل تنظيف الايدي جرين فالى 520 جم",
"Product_EN": null,
"Product_Id": "00012481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9068,
"name": "فريدا سائل تنظيف الايدي جوز هند 520 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا سائل تنظيف الايدي جوز هند 520 جم",
"Product_EN": null,
"Product_Id": "00012482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9069,
"name": "فريدا سائل تنظيف الايدي نورث كوست 520 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا سائل تنظيف الايدي نورث كوست 520 جم",
"Product_EN": null,
"Product_Id": "00012483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9070,
"name": "فريدا سائل تنظيف الايدي توت بري 520 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا سائل تنظيف الايدي توت بري 520 جم",
"Product_EN": null,
"Product_Id": "00012484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9071,
"name": "فريدا معطر جو كنزى 460 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدا معطر جو كنزى 460 مل",
"Product_EN": null,
"Product_Id": "00012485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9072,
"name": "فريدا مطهر لليدين كحول 500 مل",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فريدا مطهر لليدين كحول 500 مل",
"Product_EN": null,
"Product_Id": "00012486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9073,
"name": "فريدا مطهر لليدين كحول 90 مل",
"price": 14.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "فريدا مطهر لليدين كحول 90 مل",
"Product_EN": null,
"Product_Id": "00012487 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9074,
"name": "البوادى خل طبيعى",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "البوادى خل طبيعى",
"Product_EN": null,
"Product_Id": "00012488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9075,
"name": "تشويس ماينويز سكويز 500 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس ماينويز سكويز 500 مل",
"Product_EN": null,
"Product_Id": "00012489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9076,
"name": "ديلى فريش مشروب بان كيك 680 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش مشروب بان كيك 680 جم",
"Product_EN": null,
"Product_Id": "00012490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9077,
"name": "ديلى فريش صلصه بطاطس مقلية 300 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش صلصه بطاطس مقلية 300 مل",
"Product_EN": null,
"Product_Id": "00012491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9078,
"name": "ديلى فريش صوص باربكيو 510 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش صوص باربكيو 510 جم",
"Product_EN": null,
"Product_Id": "00012492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9079,
"name": "كيتشين كلاسيك مشروب فراوله 623 جم",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيتشين كلاسيك مشروب فراوله 623 جم",
"Product_EN": null,
"Product_Id": "00012493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9080,
"name": "تشويس دقيق شوفان 500 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس دقيق شوفان 500 جم",
"Product_EN": null,
"Product_Id": "00012494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9081,
"name": "ديلى فريش صلصه بيتزا 250 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش صلصه بيتزا 250 جم",
"Product_EN": null,
"Product_Id": "00012495 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9082,
"name": "ديلى فريش مايونيز فلفل احمر 500 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديلى فريش مايونيز فلفل احمر 500 جم",
"Product_EN": null,
"Product_Id": "00012496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9083,
"name": "سيلا مفرش سفره 90*110 2ق+1 ق هديه",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "سيلا مفرش سفره 90*110 2ق+1 ق هديه",
"Product_EN": null,
"Product_Id": "00012497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9084,
"name": "كواليتى كسكسى 750 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى كسكسى 750 جم",
"Product_EN": null,
"Product_Id": "00012498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9085,
"name": "الويز تريو ليلى حفاضة 12*26 فوطة",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز تريو ليلى حفاضة 12*26 فوطة",
"Product_EN": null,
"Product_Id": "00012500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9086,
"name": "الويز ماكس ملمس قطنى 16*14 فوطه - موقوف",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ماكس ملمس قطنى 16*14 فوطه - موقوف",
"Product_EN": null,
"Product_Id": "00012501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9087,
"name": "داونى مركز منعم ملابس حساس 1.5 لتر",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى مركز منعم ملابس حساس 1.5 لتر",
"Product_EN": null,
"Product_Id": "00012502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9088,
"name": "فيرى كبسولات غسيل اطباق اول ان وان 20 ق",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى كبسولات غسيل اطباق اول ان وان 20 ق",
"Product_EN": null,
"Product_Id": "00012503 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9089,
"name": "فيرى كبسولات اول ان وان غسيل اطباق 30 ق",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى كبسولات اول ان وان غسيل اطباق 30 ق",
"Product_EN": null,
"Product_Id": "00012504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9090,
"name": "بامبرز حفاضات اطفال مقاس 2 - 48 حفاظه ",
"price": 160,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز حفاضات اطفال مقاس 2 - 48 حفاظه ",
"Product_EN": null,
"Product_Id": "00012505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9091,
"name": "بامبرز عنايه مميزه حفاضات اطفال مقاس 1 - 60 حفاظه",
"price": 155,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز عنايه مميزه حفاضات اطفال مقاس 1 - 60 حفاظه",
"Product_EN": null,
"Product_Id": "00012506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9092,
"name": "جينرال منظف حمامات 50 مل",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جينرال منظف حمامات 50 مل",
"Product_EN": null,
"Product_Id": "00012507 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9093,
"name": "برسيل مسحوق اتوماتيك لافندر 350 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك لافندر 350 جم",
"Product_EN": "Persil Automatic Powder Lavender 350 gm",
"Product_Id": "00012508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9094,
"name": "عافيه زيت ذرة 2.2 لتر ",
"price": 91,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت ذرة 2.2 لتر ",
"Product_EN": "Afia Corn Oil 2.2 L",
"Product_Id": "00012509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9095,
"name": "كنور خلطه كبده اسكندرانى 30 جم ",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور خلطه كبده اسكندرانى 30 جم ",
"Product_EN": "Knorr Liver Mix 30 gm",
"Product_Id": "00012510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9096,
"name": "عطاره . برشام تبخير ",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . برشام تبخير ",
"Product_EN": "Attara - Fumigation Rivet ",
"Product_Id": "00012512 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9097,
"name": "المشرق اكياس لبن مطبوع م20 * 35",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "المشرق اكياس لبن مطبوع م20 * 35",
"Product_EN": null,
"Product_Id": "00012513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9098,
"name": "كلوروكس كلور 950 مل 2 ق",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوروكس كلور 950 مل 2 ق",
"Product_EN": null,
"Product_Id": "00012514 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9099,
"name": "هيد اند شولدرز شامبو نظيف وانيق 1 لتر",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدرز شامبو نظيف وانيق 1 لتر",
"Product_EN": null,
"Product_Id": "00012515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9100,
"name": "هيربال اسينسز بلسم قوه العسل360 مل",
"price": 42.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز بلسم قوه العسل360 مل",
"Product_EN": null,
"Product_Id": "00012516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9101,
"name": "هيربال اسينسز بلسم كثير كثيف360 مل",
"price": 42.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز بلسم كثير كثيف360 مل",
"Product_EN": null,
"Product_Id": "00012517 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9102,
"name": "هيربال اسينسز بلسم لون ورا لون 360 مل",
"price": 42.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز بلسم لون ورا لون 360 مل",
"Product_EN": null,
"Product_Id": "00012518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9103,
"name": "هيربال اسينسز شامبو بخلاصه الرمان700 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز شامبو بخلاصه الرمان700 مل",
"Product_EN": null,
"Product_Id": "00012519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9104,
"name": "هيربال اسينسز بلسم طول على طول360 مل",
"price": 42.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز بلسم طول على طول360 مل",
"Product_EN": null,
"Product_Id": "00012520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9105,
"name": "هيربال اسينسز بلسم بالفراوله 400 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز بلسم بالفراوله 400 مل",
"Product_EN": null,
"Product_Id": "00012521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9106,
"name": "هيربال اسينسز بلسم بالديتوكس 360 مل",
"price": 63,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز بلسم بالديتوكس 360 مل",
"Product_EN": null,
"Product_Id": "00012522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9107,
"name": "هيربال اسينسز بلسم بالمانجو 400 مل",
"price": 146,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز بلسم بالمانجو 400 مل",
"Product_EN": null,
"Product_Id": "00012523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9108,
"name": "هيربال اسينسز شامبو للرجال 400 مل",
"price": 136,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز شامبو للرجال 400 مل",
"Product_EN": null,
"Product_Id": "00012524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9109,
"name": "بانتين ماسك وبلسم للشعر المصبوغ 300 مل",
"price": 97,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين ماسك وبلسم للشعر المصبوغ 300 مل",
"Product_EN": null,
"Product_Id": "00012525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9110,
"name": "بانتين ماسك وبلسم ملكى 300 مل",
"price": 97,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين ماسك وبلسم ملكى 300 مل",
"Product_EN": null,
"Product_Id": "00012526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9111,
"name": "بانتين ماسك وبلسم ناعم وحريرى 300 مل",
"price": 97,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين ماسك وبلسم ناعم وحريرى 300 مل",
"Product_EN": null,
"Product_Id": "00012527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9112,
"name": "بانتين بلسم عنايه مرطبه 360 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بلسم عنايه مرطبه 360 مل",
"Product_EN": null,
"Product_Id": "00012528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9113,
"name": "بانتين شامبو مغزى ناعم وحرير 1 لتر",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو مغزى ناعم وحرير 1 لتر",
"Product_EN": null,
"Product_Id": "00012529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9114,
"name": "بانتين شامبو عنايه مرطبه 200 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو عنايه مرطبه 200 مل",
"Product_EN": null,
"Product_Id": "00012530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9115,
"name": "بانتين بلسم امتزاج الطبيعه 360 مل",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بلسم امتزاج الطبيعه 360 مل",
"Product_EN": null,
"Product_Id": "00012531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9116,
"name": "هيربال اسينسز شامبو بالمانجو للرجال 400 مل",
"price": 146,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال اسينسز شامبو بالمانجو للرجال 400 مل",
"Product_EN": null,
"Product_Id": "00012533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9117,
"name": "كورنو فلات علبه غويطة 750 cc",
"price": 1.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات علبه غويطة 750 cc",
"Product_EN": null,
"Product_Id": "00012534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9118,
"name": "كورنو فلات علبه غويطه 1000 cc",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات علبه غويطه 1000 cc",
"Product_EN": null,
"Product_Id": "00012535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9119,
"name": "صن شاين تونه قطع 185جم 2ق + وادى فود صلصه 320جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "صن شاين تونه قطع 185جم 2ق + وادى فود صلصه 320جم",
"Product_EN": "Sunshine Chunks Diet Tuna 185gm 2 Pieces ",
"Product_Id": "00012537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9120,
"name": "هينرى جبنه جوده فلفل وزن",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هينرى جبنه جوده فلفل وزن",
"Product_EN": null,
"Product_Id": "00012539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9121,
"name": "زاهر ايس كريم حرنكش وزن",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم حرنكش وزن",
"Product_EN": "Zaher Ice Cream Harnash - Scalable ",
"Product_Id": "00012541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9122,
"name": "زاهر ايس كريم تشيز كيك وزن",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم تشيز كيك وزن",
"Product_EN": "Zaher Ice Cream Cheese Cake - Scalable ",
"Product_Id": "00012542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9123,
"name": "برسيل جل اتوماتيك برميوم 2.2 كجم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك برميوم 2.2 كجم",
"Product_EN": null,
"Product_Id": "00012543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9124,
"name": "بريل منظف اطباق ليمون 2.5 لتر عرض",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل منظف اطباق ليمون 2.5 لتر عرض",
"Product_EN": null,
"Product_Id": "00012544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9125,
"name": "اندومى شعيريه سريعه التحضير بطعم السجق 120جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعيريه سريعه التحضير بطعم السجق 120جم",
"Product_EN": null,
"Product_Id": "00012545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9126,
"name": "كريستال زيت ذره 2.2 لتر ",
"price": 91,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كريستال زيت ذره 2.2 لتر ",
"Product_EN": "Crystal Corn Oil 2.2 L ",
"Product_Id": "00012546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9127,
"name": "هاريبو جيلى فنتازيا 80 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى فنتازيا 80 جم",
"Product_EN": "Haribo Jelly Fantasy 80gm",
"Product_Id": "00012548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9128,
"name": "اريال جيل لافندر 2.5 كجم + 500 جم عرض",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال جيل لافندر 2.5 كجم + 500 جم عرض",
"Product_EN": null,
"Product_Id": "00012549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9129,
"name": "هاربيك شامبو 400مل + هاربيل بلسم قهوه 400مل عرض",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هاربيك شامبو 400مل + هاربيل بلسم قهوه 400مل عرض",
"Product_EN": null,
"Product_Id": "00012550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9130,
"name": "هوهوز كيك اكستريم جامبو",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هوهوز كيك اكستريم جامبو",
"Product_EN": null,
"Product_Id": "00012551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9131,
"name": "فريسكا بسكويت ويفر بلوك بزبده الفول السودانى",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريسكا بسكويت ويفر بلوك بزبده الفول السودانى",
"Product_EN": null,
"Product_Id": "00012552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9132,
"name": "فريسكا بسكويت ويفر بكريمه البندق",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريسكا بسكويت ويفر بكريمه البندق",
"Product_EN": null,
"Product_Id": "00012553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9133,
"name": "زاهر بسكويت الايس كريم 1 كرتونة",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر بسكويت الايس كريم 1 كرتونة",
"Product_EN": null,
"Product_Id": "00012554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9134,
"name": "دايجستف بسكويت مينى قمح بالشيكولاته 45جم",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دايجستف بسكويت مينى قمح بالشيكولاته 45جم",
"Product_EN": null,
"Product_Id": "00012555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9135,
"name": "اميره سمن نباتى ابيض 700 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اميره سمن نباتى ابيض 700 جم",
"Product_EN": "Amira White Vegetable Ghee 700 gm",
"Product_Id": "00012557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9136,
"name": "اميره سمنه بيضاء خليط 1.5 كجم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اميره سمنه بيضاء خليط 1.5 كجم",
"Product_EN": "Amira White Ghee Mix 1.5 kg",
"Product_Id": "00012558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9137,
"name": "افانتى شيدر احمر 150جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "افانتى شيدر احمر 150جم",
"Product_EN": null,
"Product_Id": "00012559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9138,
"name": "زينه مناديل تواليت مضغوط 8 بكرة",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل تواليت مضغوط 8 بكرة",
"Product_EN": null,
"Product_Id": "00012560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9139,
"name": "كورنو علبه 8 اونز مفصليه",
"price": 1.4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو علبه 8 اونز مفصليه",
"Product_EN": null,
"Product_Id": "00012561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9140,
"name": "كورنو مسطح اسود 500 جم * 400 ق",
"price": 7.13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو مسطح اسود 500 جم * 400 ق",
"Product_EN": null,
"Product_Id": "00012562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9141,
"name": "كورنو ممتص اسود 1 ك * 300 ق",
"price": 1.55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو ممتص اسود 1 ك * 300 ق",
"Product_EN": null,
"Product_Id": "00012563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9142,
"name": "كورنو ممتص اسود 500 جم * 300 ق",
"price": 0.97,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو ممتص اسود 500 جم * 300 ق",
"Product_EN": null,
"Product_Id": "00012565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9143,
"name": "هيرو مربى الكريز الاسود لايت 340 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى الكريز الاسود لايت 340 جم",
"Product_EN": "Hero Black Cherry Jam Light 320 gm",
"Product_Id": "00012566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9144,
"name": "هيرو مربى توت لايت 340جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى توت لايت 340جم",
"Product_EN": null,
"Product_Id": "00012567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9145,
"name": "هيرو مربى مشمش لايت 340جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى مشمش لايت 340جم",
"Product_EN": null,
"Product_Id": "00012568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9146,
"name": "هيرو مربى فراوله لايت 340جم",
"price": 24.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى فراوله لايت 340جم",
"Product_EN": null,
"Product_Id": "00012569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9147,
"name": "هيرو مربى توت الغابه لايت 340 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيرو مربى توت الغابه لايت 340 جم",
"Product_EN": "Hero Forest Berry Jam Light 320 gm",
"Product_Id": "00012570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9148,
"name": "مولتو ماجنم مينى شوكولاته بالبندق",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو ماجنم مينى شوكولاته بالبندق",
"Product_EN": null,
"Product_Id": "00012571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9149,
"name": "مولتو ماجنم مينى فراوله",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو ماجنم مينى فراوله",
"Product_EN": null,
"Product_Id": "00012572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9150,
"name": "دبوس صدر رومى فريش وزن",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دبوس صدر رومى فريش وزن",
"Product_EN": null,
"Product_Id": "00012573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9151,
"name": "كباب حلة رومي فريش وزن",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كباب حلة رومي فريش وزن",
"Product_EN": null,
"Product_Id": "00012574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9152,
"name": "باربيكان شراب شعير فراوله 250 مل",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "باربيكان شراب شعير فراوله 250 مل",
"Product_EN": null,
"Product_Id": "00012576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9153,
"name": "رانى عصير برتقال وجزر 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رانى عصير برتقال وجزر 1 لتر",
"Product_EN": null,
"Product_Id": "00012577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9154,
"name": "الرشيدى الميزان حلاوه شيكولاته 280جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الرشيدى الميزان حلاوه شيكولاته 280جم",
"Product_EN": "El Rashidi Halawa Chocolate 165 g",
"Product_Id": "00012578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9155,
"name": "زين تمرعراقى وزن",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زين تمرعراقى وزن",
"Product_EN": null,
"Product_Id": "00012579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9156,
"name": "كيرى جبنه يوناني سبريد 200 جم",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه يوناني سبريد 200 جم",
"Product_EN": "Kiri Greek cheese spread 200 gm",
"Product_Id": "00012580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9157,
"name": "كيرى جبنه يوناني سبريد 350 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه يوناني سبريد 350 جم",
"Product_EN": "Kiri Greek Cheese Spread 350 gm",
"Product_Id": "00012581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9158,
"name": "كيرى الجره جبنه سبريد 440 جم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى الجره جبنه سبريد 440 جم",
"Product_EN": "Kerry Jar Cheese Spread 440 gm",
"Product_Id": "00012582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9159,
"name": "زاهر ايس كريم شيكولاتة نعناع وزن",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم شيكولاتة نعناع وزن",
"Product_EN": "Zaher Ice cream Chocolate & Mint - Scalable ",
"Product_Id": "00012583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9160,
"name": "لوكس صابون كريمة غنية 120 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون كريمة غنية 120 جم",
"Product_EN": "LUX Creamy Perbection Soap 120 gm",
"Product_Id": "00012584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9161,
"name": "لوكس صابون سحر الجمال 120جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون سحر الجمال 120جم",
"Product_EN": "LUX Magical Beauty Soap 120 gm",
"Product_Id": "00012585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9162,
"name": "لوكس صابون لمسه نعومه 120جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون لمسه نعومه 120جم",
"Product_EN": "LUX Soft Touch Soap 120 gm",
"Product_Id": "00012586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9163,
"name": "لوكس صابون حلم السعاده 120جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس صابون حلم السعاده 120جم",
"Product_EN": "LUX Dream Delight Soap 120 gm",
"Product_Id": "00012587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9164,
"name": "عافيه زيت ذره 800 مل",
"price": 33.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت ذره 800 مل",
"Product_EN": "Afia Corn Oil 800 ml ",
"Product_Id": "00012589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9165,
"name": "عافيه زيت عباد الشمس 800 مل",
"price": 31.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت عباد الشمس 800 مل",
"Product_EN": "Afia Sunflower Oil 800 ml ",
"Product_Id": "00012590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9166,
"name": "زاهر سلطه رنجه وزن",
"price": 49.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر سلطه رنجه وزن",
"Product_EN": null,
"Product_Id": "00012592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9167,
"name": "زاهر رنجة مخلية وزن",
"price": 59.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر رنجة مخلية وزن",
"Product_EN": null,
"Product_Id": "00012593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9168,
"name": "ماجى خلطه بشاميل بالجبنه 75 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى خلطه بشاميل بالجبنه 75 جم",
"Product_EN": null,
"Product_Id": "00012596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9169,
"name": "تشيريوس رقائق شوفان عسل 375جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشيريوس رقائق شوفان عسل 375جم",
"Product_EN": null,
"Product_Id": "00012597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9170,
"name": "ليون رقائق شوفان شيكولاته وكراميل 400جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليون رقائق شوفان شيكولاته وكراميل 400جم",
"Product_EN": null,
"Product_Id": "00012598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9171,
"name": "ليون رقائق افطار بطعم شيكولاته وكراميل 250 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليون رقائق افطار بطعم شيكولاته وكراميل 250 جم",
"Product_EN": null,
"Product_Id": "00012599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9172,
"name": "فيتنيس رقائق شوفان عسل و لوز 355 جم ",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتنيس رقائق شوفان عسل و لوز 355 جم ",
"Product_EN": null,
"Product_Id": "00012600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9173,
"name": "اريال جيل داونى 3 لتر",
"price": 102,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال جيل داونى 3 لتر",
"Product_EN": null,
"Product_Id": "00012602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9174,
"name": "داونى منعم ملابس مركز حساس 1 لتر",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم ملابس مركز حساس 1 لتر",
"Product_EN": null,
"Product_Id": "00012604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9175,
"name": "فيرى كبسولات غسيل اطباق اول ان وان 16 ق",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى كبسولات غسيل اطباق اول ان وان 16 ق",
"Product_EN": null,
"Product_Id": "00012605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9176,
"name": "هيربل شامبو 400مل + بلسم 400 مل مستورد",
"price": 125,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربل شامبو 400مل + بلسم 400 مل مستورد",
"Product_EN": null,
"Product_Id": "00012606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9177,
"name": "بامبرز بانتس حفاظات اطفال مقاس 5 - 52 حفاظه ",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بامبرز بانتس حفاظات اطفال مقاس 5 - 52 حفاظه ",
"Product_EN": null,
"Product_Id": "00012607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9178,
"name": "بانتين بديل الزيت ضد التساقط 350 مل",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين بديل الزيت ضد التساقط 350 مل",
"Product_EN": null,
"Product_Id": "00012608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9179,
"name": "بانتين شامبو صحى 1 لتر",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو صحى 1 لتر",
"Product_EN": null,
"Product_Id": "00012609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9180,
"name": "بانتين شامبو ضد التساقط 1 لتر",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ضد التساقط 1 لتر",
"Product_EN": null,
"Product_Id": "00012610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9181,
"name": "بانتين شامبو ضد التساقط 600مل + بلسم 200مل",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ضد التساقط 600مل + بلسم 200مل",
"Product_EN": null,
"Product_Id": "00012611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9182,
"name": "بانتين شامبو ناعم وحريرى 600مل + بلسم 200مل",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ناعم وحريرى 600مل + بلسم 200مل",
"Product_EN": null,
"Product_Id": "00012612 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9183,
"name": "تايد جل اوتوماتيك اصلى 2.5 كجم",
"price": 71,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "تايد جل اوتوماتيك اصلى 2.5 كجم",
"Product_EN": null,
"Product_Id": "00012613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9184,
"name": "بانتين شامبو اصلاح الشعر 600 مل",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو اصلاح الشعر 600 مل",
"Product_EN": null,
"Product_Id": "00012614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9185,
"name": "صن شاين بطاطس بوم فريت 1 كجم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "صن شاين بطاطس بوم فريت 1 كجم",
"Product_EN": null,
"Product_Id": "00012615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9186,
"name": "فانش مزيل بقع سائل 950 مل",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش مزيل بقع سائل 950 مل",
"Product_EN": null,
"Product_Id": "00012616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9187,
"name": "بريزيدون جبنه كوبايت انواع 140جم 2ق + سكينه عرض",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه كوبايت انواع 140جم 2ق + سكينه عرض",
"Product_EN": "President Coupete Cheese 140 gm 2 Pieces + Knife",
"Product_Id": "00012617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9188,
"name": "بريزيدون جبنه مثلثات 16 ق 2ق + بريزيدن مربعات 6ق",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه مثلثات 16 ق 2ق + بريزيدن مربعات 6ق",
"Product_EN": "President Triangle 16 Pieces + Squared 6 Pieces",
"Product_Id": "00012618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9189,
"name": "طعمه جبنه مثلثات 24ق 2ق +جرين لاند جبنه 250جم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمه جبنه مثلثات 24ق 2ق +جرين لاند جبنه 250جم",
"Product_EN": "Teama Triangle 24 Pieces + Green Land 250 gm",
"Product_Id": "00012619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9190,
"name": "بريزيدون جبنه كوب 240جم 2ق +بريزيدن جبنه مربعات",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه كوب 240جم 2ق +بريزيدن جبنه مربعات",
"Product_EN": "President Cheese Cup 240 gm + Squared 6 Pieces",
"Product_Id": "00012620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9191,
"name": "قهوة بون أروما كلاسيك سريعة التحضير 100 جم",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قهوة بون أروما كلاسيك سريعة التحضير 100 جم",
"Product_EN": "Aroma Bon Classic Instant Coffee 100 gm",
"Product_Id": "00012621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9192,
"name": "اروما جولد قهوه سريعه التحضير 100 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اروما جولد قهوه سريعه التحضير 100 جم",
"Product_EN": "Aroma Bon Gold Instant Coffee 100 gm",
"Product_Id": "00012622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9193,
"name": "اروما كلاسيك قهوه سريعه التحضير 50 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اروما كلاسيك قهوه سريعه التحضير 50 جم",
"Product_EN": "Aroma Bon Instant Coffee 50 gm",
"Product_Id": "00012623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9194,
"name": "اروما بن جولد قهوه سريعه التحضير 50 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اروما بن جولد قهوه سريعه التحضير 50 جم",
"Product_EN": "Aroma Bon Gold Instant Coffee 50 gm",
"Product_Id": "00012624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9195,
"name": "روسو صلصة طماطم 370 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روسو صلصة طماطم 370 جم",
"Product_EN": null,
"Product_Id": "00012626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9196,
"name": "ميراند برتقال بلاستيك 1 لتر + 250 مل زياده",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراند برتقال بلاستيك 1 لتر + 250 مل زياده",
"Product_EN": "Mirinda Orange 1 L + 250 ml Free",
"Product_Id": "00012627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9197,
"name": "احمد تى شاى اخضر 20 فتله فويل",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر 20 فتله فويل",
"Product_EN": "Ahmad Tea Green Tea 20 Bags ",
"Product_Id": "00012628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9198,
"name": "احمد تى شاى اخضر نعناع 20 فتله",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر نعناع 20 فتله",
"Product_EN": "Ahmad Tea Green Tea & Mint 20 Bags ",
"Product_Id": "00012629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9199,
"name": "احمد تى شاى اخضر ليمون 20 فتله",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر ليمون 20 فتله",
"Product_EN": "Ahmed Tea Green Tea Lemon 20 Bags",
"Product_Id": "00012630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9200,
"name": "احمد تى شاى اخضر سيلكشن 20 فتله",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر سيلكشن 20 فتله",
"Product_EN": "Ahmad Tea Green Selection Tea 20 Bags",
"Product_Id": "00012631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9201,
"name": "احمد تى شاى اخضر 250 جم ",
"price": 41,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:57",
"updated_at": "2021-11-01 19:45:57",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "احمد تى شاى اخضر 250 جم ",
"Product_EN": "Ahmad Tea Green Tea 250 gm",
"Product_Id": "00012632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9202,
"name": "تشويس صوص صويا غامض 250 مل ",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس صوص صويا غامض 250 مل ",
"Product_EN": null,
"Product_Id": "00012634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9203,
"name": "تشويس خل عنب طبيعى 500 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس خل عنب طبيعى 500 مل",
"Product_EN": null,
"Product_Id": "00012635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9204,
"name": "تشويس خل الاعشاب الطبيعى 500 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس خل الاعشاب الطبيعى 500 مل",
"Product_EN": null,
"Product_Id": "00012636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9205,
"name": "تشويس خل تمر طبيعى 500 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس خل تمر طبيعى 500 مل",
"Product_EN": null,
"Product_Id": "00012637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9206,
"name": "تشويس دبس تمر 370 مل",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس دبس تمر 370 مل",
"Product_EN": null,
"Product_Id": "00012638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9207,
"name": "تشويس حامض ليمون 250 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تشويس حامض ليمون 250 مل",
"Product_EN": null,
"Product_Id": "00012639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9208,
"name": "برسيل مسحوق يدوى عالى الرغوه 725 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى عالى الرغوه 725 جم",
"Product_EN": null,
"Product_Id": "00012640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9209,
"name": "برسيل مسحوق يدوى عالى الرغوه 550 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق يدوى عالى الرغوه 550 جم",
"Product_EN": null,
"Product_Id": "00012641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9210,
"name": "برسيل مسحوق اتوماتيك عالى الرغوه لافندر 1كجم ",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك عالى الرغوه لافندر 1كجم ",
"Product_EN": null,
"Product_Id": "00012642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9211,
"name": "زاهر عجوة المدينة 500 جم",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عجوة المدينة 500 جم",
"Product_EN": null,
"Product_Id": "00012643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9212,
"name": "زاهر تمر مجدول اردنى 500 جم",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر تمر مجدول اردنى 500 جم",
"Product_EN": null,
"Product_Id": "00012644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9213,
"name": "برسيل مسحوق غسيل لافندر 550 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق غسيل لافندر 550 جم",
"Product_EN": null,
"Product_Id": "00012645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9214,
"name": "جنرال منظف ارضيات 3 لتر",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال منظف ارضيات 3 لتر",
"Product_EN": null,
"Product_Id": "00012646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9215,
"name": "وايت مناديل تواليت 6بكره",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت مناديل تواليت 6بكره",
"Product_EN": null,
"Product_Id": "00012647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9216,
"name": "وايت مناديل ماكس رول اقتصادى 650 منديل",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت مناديل ماكس رول اقتصادى 650 منديل",
"Product_EN": null,
"Product_Id": "00012648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9217,
"name": "فريسكا بسكويت ويفر بلوك كابتشينو",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فريسكا بسكويت ويفر بلوك كابتشينو",
"Product_EN": null,
"Product_Id": "00012649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9218,
"name": "زاهر علبه ايس كريم زبادى توت 1 ك",
"price": 130,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر علبه ايس كريم زبادى توت 1 ك",
"Product_EN": "Zaher Ice Cream Yogurt Berry Box 1 Kg",
"Product_Id": "00012650 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9219,
"name": "زاهر علبه ايس كريم فسدق 1 ك",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر علبه ايس كريم فسدق 1 ك",
"Product_EN": "Zaher Ice Cream Pistachio Box 1 kg",
"Product_Id": "00012651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9220,
"name": "زاهر علبه ايس كريم لوتس 1 ك",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر علبه ايس كريم لوتس 1 ك",
"Product_EN": "Zaher Ice Cream LOTUS Box 1 Kg",
"Product_Id": "00012652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9221,
"name": "زاهر علبه ايس كريم مستكه 1 ك",
"price": 150,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر علبه ايس كريم مستكه 1 ك",
"Product_EN": "Zaher Ice Cream Mastic Box 1 kg",
"Product_Id": "00012653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9222,
"name": "زاهر ايس كريم كاساتا وزن",
"price": 120,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم كاساتا وزن",
"Product_EN": "Zaher Ice Cream Cassata - Scalable",
"Product_Id": "00012654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9223,
"name": "بالم هيلز تمر مجدول 1 كجم",
"price": 100,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بالم هيلز تمر مجدول 1 كجم",
"Product_EN": null,
"Product_Id": "00012655 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9224,
"name": "الشجره الطيبة عجوه 10 كجم",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشجره الطيبة عجوه 10 كجم",
"Product_EN": null,
"Product_Id": "00012656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9225,
"name": "ابو عوف زبده فول سودانى 300 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو عوف زبده فول سودانى 300 جم",
"Product_EN": "Abu Auf Peanut Butter 300 gm",
"Product_Id": "00012658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9226,
"name": "ابو غزيل تمر برحى 1 كجم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ابو غزيل تمر برحى 1 كجم",
"Product_EN": null,
"Product_Id": "00012659 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9227,
"name": "زاهر عجوه فاكيوم 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عجوه فاكيوم 400 جم",
"Product_EN": null,
"Product_Id": "00012660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9228,
"name": "زاهر تمرعراقى 500 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر تمرعراقى 500 جم",
"Product_EN": "Zaher Iraqi Dates 500 g",
"Product_Id": "00012661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9229,
"name": "سفن اب بلاستيك 1 لتر +250 جم زيادة",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب بلاستيك 1 لتر +250 جم زيادة",
"Product_EN": "7 Up 1 L + 250 ml Free",
"Product_Id": "00012662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9230,
"name": "ريتش دجاج بانيه بارد 1 كجم",
"price": 84,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش دجاج بانيه بارد 1 كجم",
"Product_EN": "Rich Chicken Pane Cold 1 Kg",
"Product_Id": "00012663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9231,
"name": "ريتش دجاج بانيه حار 1 كجم",
"price": 84,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش دجاج بانيه حار 1 كجم",
"Product_EN": "Rich Chicken Pane Spicy 1 Kg",
"Product_Id": "00012664 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9232,
"name": "ريتش دجاج ناجتس 50 ق 1 كجم",
"price": 84,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش دجاج ناجتس 50 ق 1 كجم",
"Product_EN": "Rich Chicken Nuggets 50 Pieces 1 Kg",
"Product_Id": "00012665 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9233,
"name": "ريتش دجاج ستربس بارد 1 كجم",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش دجاج ستربس بارد 1 كجم",
"Product_EN": "Rich Chicken Strips Cold 1 Kg",
"Product_Id": "00012666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9234,
"name": "ريتش دجاج ستربس حار 1 كجم",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش دجاج ستربس حار 1 كجم",
"Product_EN": "Rich Chicken Strips Spicy 1 Kg",
"Product_Id": "00012667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9235,
"name": "كلوريل 1 كجم كلور منظف ومعطر ليمون 4*1",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل 1 كجم كلور منظف ومعطر ليمون 4*1",
"Product_EN": null,
"Product_Id": "00012668 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9236,
"name": "فلفيتا مزيل بقع مركز متعدد الاستخدامات بقوه الاكسج",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفيتا مزيل بقع مركز متعدد الاستخدامات بقوه الاكسج",
"Product_EN": null,
"Product_Id": "00012669 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9237,
"name": "جوستو جلاش آلي 250 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوستو جلاش آلي 250 جم",
"Product_EN": "Gusto Automatic Glash 250 gm",
"Product_Id": "00012670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9238,
"name": "زاهر تمر مجدول 800 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر تمر مجدول 800 جم",
"Product_EN": "Zaher Medjool Dates 800 g",
"Product_Id": "00012671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9239,
"name": "تيميز كورن فليكس 500 جم",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز كورن فليكس 500 جم",
"Product_EN": "Temmy's Corn Flakes 500 gm",
"Product_Id": "00012672 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9240,
"name": "لاكتيل حليب كامل الدسم فريش 750 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لاكتيل حليب كامل الدسم فريش 750 مل",
"Product_EN": "Lactel Fresh Full Cream Milk 750 ml",
"Product_Id": "00012673 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9241,
"name": "جوستو سمبوسك قليله الدسم 500جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوستو سمبوسك قليله الدسم 500جم",
"Product_EN": "Gusto Sambousek Low Fat 500 gm",
"Product_Id": "00012674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9242,
"name": "جوستو قاعده بيتزا مينى",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوستو قاعده بيتزا مينى",
"Product_EN": "Gusto Mini Pizza Base",
"Product_Id": "00012675 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9243,
"name": "جوستو قاعده بيتزا كبيره",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوستو قاعده بيتزا كبيره",
"Product_EN": "Gusto Large Pizza Base",
"Product_Id": "00012676 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9244,
"name": "جوستو كنافه شعر 500 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوستو كنافه شعر 500 جم",
"Product_EN": "Gusto Shredded Dough 500 gm ",
"Product_Id": "00012677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9245,
"name": "جوستو رقاق مدور",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوستو رقاق مدور",
"Product_EN": "Gusto Flatbread ",
"Product_Id": "00012678 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9246,
"name": "جوستو السبرينج رول 160جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوستو السبرينج رول 160جم",
"Product_EN": "Gusto Spring Roll Pastry 160 gm ",
"Product_Id": "00012679 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9247,
"name": "توليدو \nكريمة الشوكولاتة والبندق 350 جم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو \nكريمة الشوكولاتة والبندق 350 جم",
"Product_EN": "Tolido\nChocolate Cream & Hazelnut 350 gm",
"Product_Id": "00012680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9248,
"name": "الملكة مكرونه شريط 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونه شريط 400 جم",
"Product_EN": "El Maleka Fettucini Pasta 400 gm",
"Product_Id": "00012681 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9249,
"name": "الملكة مكرونه سربتينى 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونه سربتينى 400 جم",
"Product_EN": "El Maleka Serpentini Pasta 400 gm",
"Product_Id": "00012682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9250,
"name": "الملكة مكرونه سوسته 400 جم",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونه سوسته 400 جم",
"Product_EN": "El Maleka Fusilli Pasta 400 gm",
"Product_Id": "00012683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9251,
"name": "فان داى زبده فول سودانى كرانشى 300جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى زبده فول سودانى كرانشى 300جم",
"Product_EN": "FunDay Peanut Butter Crunchy 300 gm",
"Product_Id": "00012684 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9252,
"name": "فان داى زبده فول سودانى كريمى 300 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى زبده فول سودانى كريمى 300 جم",
"Product_EN": "FunDay Peanut Butter Creamy 300 gm",
"Product_Id": "00012685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9253,
"name": "جوستو جلاش 400 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جوستو جلاش 400 جم",
"Product_EN": "Gusto Glash 400 gm",
"Product_Id": "00012686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9254,
"name": "دومتى جولد جبنه فيتا طبيعى 250 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جولد جبنه فيتا طبيعى 250 جم",
"Product_EN": "Domty natural gold cheese 250gm",
"Product_Id": "00012687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9255,
"name": "دومتى جبنه فيتا جولد طبيعى 500 جم",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا جولد طبيعى 500 جم",
"Product_EN": "Domty Feta Cheese Natural Gold 250 gm",
"Product_Id": "00012688 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9256,
"name": "زاهر تمر عراقى 800 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر تمر عراقى 800 جم",
"Product_EN": "Zaher Iraqi Dates 800 g",
"Product_Id": "00012689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9257,
"name": "زاهر ايس كريم بلح - وزن",
"price": 52.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ايس كريم بلح - وزن",
"Product_EN": "Zaher Ice Cream Dates - Scalable",
"Product_Id": "00012690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9258,
"name": "زاهر عسل نحل حبة البركة 3 كجم - موقوف",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل حبة البركة 3 كجم - موقوف",
"Product_EN": "Zaher Honey Bee Nigella Sativa 3 kg ",
"Product_Id": "00012691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9259,
"name": "توليدو خل عنب 250 جم ",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو خل عنب 250 جم ",
"Product_EN": "Tolido Grape Vinegar 250 gm",
"Product_Id": "00012692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9260,
"name": "ليبتون شاى 75 فتله + كوستر هديه",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى 75 فتله + كوستر هديه",
"Product_EN": "Lipton Tea 75 Bags + 3 Coaster Free",
"Product_Id": "00012693 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9261,
"name": "كنور فاين فودز مرقة لحمه 8 مكعب",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور فاين فودز مرقة لحمه 8 مكعب",
"Product_EN": "Knorr Beef Stock 8 Cubes",
"Product_Id": "00012694 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9262,
"name": "توليد تونة لحم قطع فاتح 120 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليد تونة لحم قطع فاتح 120 جم",
"Product_EN": null,
"Product_Id": "00012695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9263,
"name": "جهينه حليب باللوز 1 لتر",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه حليب باللوز 1 لتر",
"Product_EN": "Juhayna Almond Milk 1 L",
"Product_Id": "00012696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9264,
"name": "جهينه حليب شوفان 1 لتر",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جهينه حليب شوفان 1 لتر",
"Product_EN": "Juhayna Oat Milk 1 L ",
"Product_Id": "00012697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9265,
"name": "جهينه حليب بندق 1 لتر",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه حليب بندق 1 لتر",
"Product_EN": "Juhayna Hazelnut Milk 1 L",
"Product_Id": "00012698 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9266,
"name": "جهينه حليب الصويا 1 لتر",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينه حليب الصويا 1 لتر",
"Product_EN": "Juhayna Soy Milk 1 L",
"Product_Id": "00012699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9267,
"name": "حلوانى بانيه بارد 400 جم عرض - موقوف",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى بانيه بارد 400 جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00012700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9268,
"name": "حلوانى بانيه حار 400 جم عرض - موقوف",
"price": 61,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى بانيه حار 400 جم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00012701 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9269,
"name": "حلوانى بانيه حار 1 كجم عرض - موقوف",
"price": 89,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "حلوانى بانيه حار 1 كجم عرض - موقوف",
"Product_EN": null,
"Product_Id": "00012702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9270,
"name": "عافيه بلس زيت ذره 800 مل",
"price": 37.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه بلس زيت ذره 800 مل",
"Product_EN": "Afia Plus Corn Oil 800 ml",
"Product_Id": "00012703 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9271,
"name": "زاهر بطارخ رنجة وزن",
"price": 79,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زاهر بطارخ رنجة وزن",
"Product_EN": null,
"Product_Id": "00012704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9272,
"name": "كورنو فلات طبق مربع مسطح شفاف 1\/2 ك TFPET 0343 ",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو فلات طبق مربع مسطح شفاف 1\/2 ك TFPET 0343 ",
"Product_EN": null,
"Product_Id": "00012705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9273,
"name": "كوفي بريك أكسترا شوت 3*1 18 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كوفي بريك أكسترا شوت 3*1 18 جم",
"Product_EN": "Coffee Break Extra Shot 3*1 18 gm",
"Product_Id": "00012706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9274,
"name": "ميراند تفاح بلاستيك 1 لتر + 250 مل زياده",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراند تفاح بلاستيك 1 لتر + 250 مل زياده",
"Product_EN": null,
"Product_Id": "00012707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9275,
"name": "برسيل جل اتوماتيك لافندر 3.9 كجم ",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك لافندر 3.9 كجم ",
"Product_EN": null,
"Product_Id": "00012709 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9276,
"name": "اولويز يومى فوط صحيه عادى 20 فوطه",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز يومى فوط صحيه عادى 20 فوطه",
"Product_EN": null,
"Product_Id": "00012710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9277,
"name": "الويز ملمس قطنى نعومه الريش 26*6 اكسترا",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ملمس قطنى نعومه الريش 26*6 اكسترا",
"Product_EN": null,
"Product_Id": "00012711 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9278,
"name": "اولويز ماسيه فوط صحيه طويل جدا 6 فوط",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز ماسيه فوط صحيه طويل جدا 6 فوط",
"Product_EN": null,
"Product_Id": "00012712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9279,
"name": "كارت امواس ماك ثرى 4 موس + ماكينه",
"price": 152,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "كارت امواس ماك ثرى 4 موس + ماكينه",
"Product_EN": null,
"Product_Id": "00012713 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9280,
"name": "بلو ثرى ماكينه حلاقه حساسه 6 ق",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بلو ثرى ماكينه حلاقه حساسه 6 ق",
"Product_EN": null,
"Product_Id": "00012714 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9281,
"name": "ماك ثرى ماكينه حلاقه 2 موس",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماك ثرى ماكينه حلاقه 2 موس",
"Product_EN": null,
"Product_Id": "00012715 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9282,
"name": "ماكينه حلاقه بلو ثرى كومفرت كارت 9 ماكينه",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ماكينه حلاقه بلو ثرى كومفرت كارت 9 ماكينه",
"Product_EN": null,
"Product_Id": "00012716 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9283,
"name": "اوال بى ثرى 40w فرشاه اسنان",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اوال بى ثرى 40w فرشاه اسنان",
"Product_EN": null,
"Product_Id": "00012717 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9284,
"name": "اورال بى فرشاه اسنان ثلاثى الابعاد 2ق",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اورال بى فرشاه اسنان ثلاثى الابعاد 2ق",
"Product_EN": null,
"Product_Id": "00012718 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9285,
"name": "تودو بومب كيك بالمكسرات",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تودو بومب كيك بالمكسرات",
"Product_EN": null,
"Product_Id": "00012719 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9286,
"name": "العبد كوكيز شانكش بقطع الشيكولاته 18ق",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العبد كوكيز شانكش بقطع الشيكولاته 18ق",
"Product_EN": null,
"Product_Id": "00012720 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9287,
"name": "عافيه زيت ذره 1.6 لتر",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت ذره 1.6 لتر",
"Product_EN": "Afia Corn Oil 1.6 L",
"Product_Id": "00012721 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9288,
"name": "عافيه زيت ذره 2.2 لتر",
"price": 97,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافيه زيت ذره 2.2 لتر",
"Product_EN": "Afia Corn Oil 2.2 L",
"Product_Id": "00012722 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9289,
"name": "عطاره . مخمرية الفردوس",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مخمرية الفردوس",
"Product_EN": "Attara - Al Firdaws Makhmirya ",
"Product_Id": "00012723 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9290,
"name": "عطاره . بخور جولد",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور جولد",
"Product_EN": "Attara - Gold Incense",
"Product_Id": "00012724 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9291,
"name": "عطاره . بخور بردهان ورد الكوثر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور بردهان ورد الكوثر",
"Product_EN": "Attara - Incense Bardhan Rose Al Kaothar",
"Product_Id": "00012727 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9292,
"name": "عطاره . بخور شيخ العطور ابيض \/ ازرق",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور شيخ العطور ابيض \/ ازرق",
"Product_EN": "Attara - Sheikh Perfumes Incense White \/ Blue",
"Product_Id": "00012728 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9293,
"name": "عطاره . بخور شيخ العطور اسود",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور شيخ العطور اسود",
"Product_EN": "Attara - Sheikh Perfumes Incense Black ",
"Product_Id": "00012730 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9294,
"name": "عطاره . اوربت خلطة كنتاكى ",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . اوربت خلطة كنتاكى ",
"Product_EN": "Attara - Orbit Kentucky mix",
"Product_Id": "00012731 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9295,
"name": "عطاره . تلبينة",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . تلبينة",
"Product_EN": "Attara - Talbeneh ",
"Product_Id": "00012732 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9296,
"name": "عطاره . بخور بردهان عنبر معتق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور بردهان عنبر معتق",
"Product_EN": "Attara Incense Bardhan Amber",
"Product_Id": "00012735 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9297,
"name": "بخور بردهان نسمات الخليج",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بخور بردهان نسمات الخليج",
"Product_EN": "Attara Incense Bardhan Gulf breeze",
"Product_Id": "00012736 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9298,
"name": "عطاره . بخور بردهان صندل ميسور",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور بردهان صندل ميسور",
"Product_EN": "Attara - Incense Bardhan Sandal Maysur",
"Product_Id": "00012737 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9299,
"name": "عطاره . زيت شبت",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زيت شبت",
"Product_EN": "Attara - Dill Oil ",
"Product_Id": "00012738 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9300,
"name": "عطاره . زيت بردقوش",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . زيت بردقوش",
"Product_EN": "Attara - Oregano Oil",
"Product_Id": "00012739 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9301,
"name": "زاهر بصل ساده مخلل طبيعي 200 جم - معلب - موقوف",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بصل ساده مخلل طبيعي 200 جم - معلب - موقوف",
"Product_EN": null,
"Product_Id": "00009283 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9302,
"name": "زاهر خيار مخلل طبيعي 200 جم - معلب - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خيار مخلل طبيعي 200 جم - معلب - موقوف",
"Product_EN": null,
"Product_Id": "00009284 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9303,
"name": "زاهر خيار مخلل طبيعى بلاستيك 500 جم ",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خيار مخلل طبيعى بلاستيك 500 جم ",
"Product_EN": null,
"Product_Id": "00009286 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9304,
"name": "زاهر خيار قشه مخلل طبيعى بلاستيك 500 جم",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خيار قشه مخلل طبيعى بلاستيك 500 جم",
"Product_EN": null,
"Product_Id": "00009288 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9305,
"name": "عنب احمر \/ ابيض وزن",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عنب احمر \/ ابيض وزن",
"Product_EN": null,
"Product_Id": "00009289 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9306,
"name": "برقوق احمر وزن",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برقوق احمر وزن",
"Product_EN": null,
"Product_Id": "00009290 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9307,
"name": "فريدة معطر جو مروج 560 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدة معطر جو مروج 560 مل",
"Product_EN": null,
"Product_Id": "00009291 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9308,
"name": "فريدة معطر جو عود 560 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدة معطر جو عود 560 مل",
"Product_EN": null,
"Product_Id": "00009292 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9309,
"name": "فريدة معطر جو بهجة 560 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدة معطر جو بهجة 560 مل",
"Product_EN": null,
"Product_Id": "00009293 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9310,
"name": "فريدة معطر جو خوخ 560 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدة معطر جو خوخ 560 مل",
"Product_EN": null,
"Product_Id": "00009294 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9311,
"name": "حلو الشام ام على قشطة 100 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلو الشام ام على قشطة 100 جم",
"Product_EN": "Holw El Sham Om Ali With Cream 155 gm",
"Product_Id": "00009295 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9312,
"name": "بوردون كورند بيف 340 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بوردون كورند بيف 340 جم",
"Product_EN": null,
"Product_Id": "00009296 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9313,
"name": "زاهر ديزيرت - تورتة D 3",
"price": 200,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديزيرت - تورتة D 3",
"Product_EN": null,
"Product_Id": "00009297 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9314,
"name": "الملكه مكرونه هلاليه 400 جم",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونه هلاليه 400 جم",
"Product_EN": "El Maleka Elbow Pasta 400 gm",
"Product_Id": "00009298 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9315,
"name": "الملكه مكرونه خواتم 400 جم",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونه خواتم 400 جم",
"Product_EN": "El Maleka Rings Pasta 400 gm",
"Product_Id": "00009299 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9316,
"name": "الملكة مكرونة خواتم 400 جم - موقوف",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونة خواتم 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009300 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9317,
"name": "الملكة مكرونة مرمرية 400 جم - موقوف",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونة مرمرية 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009301 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9318,
"name": "الملكة لسان عصفور 400 جم",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة لسان عصفور 400 جم",
"Product_EN": "El Maleka Riso Pasta 400 gm",
"Product_Id": "00009302 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9319,
"name": "الملكة مكرونة اسباجتى 400 جم - موقوف",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونة اسباجتى 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009303 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9320,
"name": "الملكه مكرونه خواتم 400 جم - موقوف",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونه خواتم 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009304 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9321,
"name": "الملكة شعرية 400 جم",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة شعرية 400 جم",
"Product_EN": "El Maleka Vermicelli 400 gm",
"Product_Id": "00009305 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9322,
"name": "الملكة لسان عصفور 400 جم - موقوف",
"price": 5.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة لسان عصفور 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009306 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9323,
"name": "الملكه مكرونه مرمريه 400 جم",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونه مرمريه 400 جم",
"Product_EN": "El Maleka Small Rings Pasta 400 gm",
"Product_Id": "00009307 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9324,
"name": "الملكه مكرونه فرن 400 جم",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونه فرن 400 جم",
"Product_EN": "El Maleka Penne Pasta 400 gm",
"Product_Id": "00009308 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9325,
"name": "الملكه مكرونه اسباجتى 400 جم",
"price": 99.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونه اسباجتى 400 جم",
"Product_EN": "El Maleka Spaghetti Pasta 400 gm",
"Product_Id": "00009309 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9326,
"name": "الملكه مكرونه مرمريه 1 كجم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونه مرمريه 1 كجم",
"Product_EN": "El Maleka Small Rings Pasta 1 Kg",
"Product_Id": "00009310 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9327,
"name": "الملكة شعرية 1 كجم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة شعرية 1 كجم",
"Product_EN": "El Maleka Vermicelli 1 Kg",
"Product_Id": "00009311 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9328,
"name": "الملكة مكرونة اسباجتى 1 كجم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونة اسباجتى 1 كجم",
"Product_EN": "El Maleka Spaghetti Pasta 1 Kg",
"Product_Id": "00009312 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9329,
"name": "الملكه مكرونه خواتم 1 كجم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونه خواتم 1 كجم",
"Product_EN": "El Maleka Rings Pasta 1 Kg ",
"Product_Id": "00009313 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9330,
"name": "الملكه مكرونه فرن 1 كجم",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكه مكرونه فرن 1 كجم",
"Product_EN": "El Maleka Penne Pasta 1 Kg",
"Product_Id": "00009314 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9331,
"name": "ايطاليانو مكرونه سباجيتي 400 جم",
"price": 161,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه سباجيتي 400 جم",
"Product_EN": "Italiano Spaghetti Pasta 400 gm",
"Product_Id": "00009315 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9332,
"name": "ايطاليانو مكرونه مرمريه 400 جم",
"price": 161,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه مرمريه 400 جم",
"Product_EN": "Italiano Small Rings Pasta 400 gm",
"Product_Id": "00009316 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9333,
"name": "ايطاليانو مكرونه فرن 400 جم",
"price": 161,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه فرن 400 جم",
"Product_EN": "Italiano Penne Pasta 400 gm",
"Product_Id": "00009317 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9334,
"name": "ايطاليانو لسان عصفور 400 جم",
"price": 171,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو لسان عصفور 400 جم",
"Product_EN": "Italiano Riso Pasta 400 gm",
"Product_Id": "00009318 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9335,
"name": "ايطاليانو مكرونه شريط 400 جم",
"price": 161,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه شريط 400 جم",
"Product_EN": "Italiano Fettucini Pasta 400 gm",
"Product_Id": "00009319 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9336,
"name": "ايطاليانو مكرونه عود 400 جم",
"price": 161,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه عود 400 جم",
"Product_EN": "Italiano Ziti Pasta 400 gm",
"Product_Id": "00009320 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9337,
"name": "ايطاليانو مكرونه حروف 400 جم",
"price": 161,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه حروف 400 جم",
"Product_EN": "Italiano Letters Pasta 400 gm",
"Product_Id": "00009321 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9338,
"name": "ايطاليانو مكرونه صدفه 400 جم",
"price": 161,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه صدفه 400 جم",
"Product_EN": "Italiano Shells Pasta 400 gm",
"Product_Id": "00009322 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9339,
"name": "ايطاليانو مكرونه سوسته 400 جم",
"price": 161,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه سوسته 400 جم",
"Product_EN": "Italiano Fusilli Pasta 400 gm",
"Product_Id": "00009323 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9340,
"name": "ايطاليانو مكرونه سبرينتينى 400 جم",
"price": 161,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه سبرينتينى 400 جم",
"Product_EN": "Italiano Serpentini Pasta 400 gm",
"Product_Id": "00009324 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9341,
"name": "ايطاليانو مكرونه خواتم 400 جم",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه خواتم 400 جم",
"Product_EN": "Italiano Big Rings Pasta 400 gm",
"Product_Id": "00009325 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9342,
"name": "ايطاليانو شعرية 400 جم",
"price": 171,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو شعرية 400 جم",
"Product_EN": "Italiano Vermicelli 400 gm",
"Product_Id": "00009326 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9343,
"name": "ايطاليانو مكرونه اشكال 400 جم",
"price": 161,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ايطاليانو مكرونه اشكال 400 جم",
"Product_EN": "Italian Shapes Pasta 400 gm",
"Product_Id": "00009327 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9344,
"name": "الملكة مكرونة فرن 250 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونة فرن 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009328 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9345,
"name": "الملكة مكرونة خواتم 250 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونة خواتم 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009329 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9346,
"name": "الملكة مكرونة مرمرية 250 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونة مرمرية 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009330 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9347,
"name": "الملكة مكرونة هلالية 250 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونة هلالية 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009331 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9348,
"name": "الملكة شعرية 250 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة شعرية 250 جم",
"Product_EN": "El Maleka Vermicelli 250 gm",
"Product_Id": "00009332 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9349,
"name": "الملكة لسان عصفور250 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة لسان عصفور250 جم",
"Product_EN": "El Maleka Riso Pasta 250 gm",
"Product_Id": "00009333 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9350,
"name": "الملكة مكرونة اسباجتى 250 جم - موقوف",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الملكة مكرونة اسباجتى 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009334 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9351,
"name": "ريجينا مكرونة اسباجتى 400 جم",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة اسباجتى 400 جم",
"Product_EN": "Regina Pasta Spaghetti 400 gm",
"Product_Id": "00009335 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9352,
"name": "ريجينا مكرونة شرايط 400 جم",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة شرايط 400 جم",
"Product_EN": "Regina Ribbon Pasta 400 gm",
"Product_Id": "00009336 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9353,
"name": "ريجينا شعرية 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا شعرية 400 جم",
"Product_EN": "Regina Vermicelli 400 gm",
"Product_Id": "00009337 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9354,
"name": "ريجينا لسان عصفور400 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا لسان عصفور400 جم",
"Product_EN": "Regina Pasta Rice 400 gm",
"Product_Id": "00009338 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9355,
"name": "ريجينا مكرونه مرمريه 400 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونه مرمريه 400 جم",
"Product_EN": "Regina Small Rings Pasta 400 gm",
"Product_Id": "00009339 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9356,
"name": "ريجينا مكرونة خواتم 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة خواتم 400 جم",
"Product_EN": "Regina Big Rings Pasta 400 gm",
"Product_Id": "00009340 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9357,
"name": "ريجينا مكرونة فرن 400 جم - موقوف",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة فرن 400 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009341 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9358,
"name": "ريجينا مكرونة فرن 400 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة فرن 400 جم",
"Product_EN": "Regina Penne Pasta 400 gm",
"Product_Id": "00009342 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9359,
"name": "ريجينا مكرونة فيوزيلى 400 جم",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة فيوزيلى 400 جم",
"Product_EN": "Regina Fusilli Pasta 400 gm",
"Product_Id": "00009343 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9360,
"name": "ريجينا مكرونة بايب 400 جم",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة بايب 400 جم",
"Product_EN": "Regina Pipe Pasta 400 gm ",
"Product_Id": "00009344 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9361,
"name": "ريجينا مكرونة تويست 400 جم",
"price": 175,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة تويست 400 جم",
"Product_EN": "Regina Twist Pasta 400 gm",
"Product_Id": "00009345 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9362,
"name": "ريجينا مكرونة اسباجتى 1 كجم",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة اسباجتى 1 كجم",
"Product_EN": "Regina Pasta Spaghetti 1 kg",
"Product_Id": "00009346 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9363,
"name": "ريجينا مكرونة شرايط 1 كجم",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة شرايط 1 كجم",
"Product_EN": "Regina Ribbon Pasta 1 Kg",
"Product_Id": "00009347 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9364,
"name": "ريجينا مكرونة شعرية 1 كجم",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة شعرية 1 كجم",
"Product_EN": null,
"Product_Id": "00009348 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9365,
"name": "ريجينا مكرونة لسان عصفور 1 كجم",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة لسان عصفور 1 كجم",
"Product_EN": null,
"Product_Id": "00009349 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9366,
"name": "ريجينا مكرونة مرمرية 1 كجم",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة مرمرية 1 كجم",
"Product_EN": null,
"Product_Id": "00009350 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9367,
"name": "ريجينا مكرونة خواتم 1 كجم",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة خواتم 1 كجم",
"Product_EN": null,
"Product_Id": "00009351 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9368,
"name": "ريجينا مكرونة فرن 1 كجم",
"price": 21.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة فرن 1 كجم",
"Product_EN": null,
"Product_Id": "00009352 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9369,
"name": "زاهر كمامة طبية 1 ق",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "زاهر كمامة طبية 1 ق",
"Product_EN": "Zaher Medical Mask 1 Pieces ",
"Product_Id": "00009353 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9370,
"name": "المراعى زبادى طبيعى 105 جم 3+1",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى طبيعى 105 جم 3+1",
"Product_EN": "Almarai Natural Yogurt 105 gm 3+1",
"Product_Id": "00009354 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9371,
"name": "فرسكا ستكس ويفر بكريمة الكاكاو و البندق 4 ق",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فرسكا ستكس ويفر بكريمة الكاكاو و البندق 4 ق",
"Product_EN": null,
"Product_Id": "00009355 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9372,
"name": "اونيرو كوكى كريسب بكريمة الشيكولاته 1 ق",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اونيرو كوكى كريسب بكريمة الشيكولاته 1 ق",
"Product_EN": null,
"Product_Id": "00009356 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9373,
"name": "زاهر عسل نحل حبة البركة 1 كجم",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل حبة البركة 1 كجم",
"Product_EN": "Zaher Nigella Sativa Honey 1 Kg",
"Product_Id": "00009357 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9374,
"name": "زاهر عسل نحل حبة البركة 500 جم - موقوف",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل حبة البركة 500 جم - موقوف",
"Product_EN": "Zaher Nigella Sativa Honey 500 g",
"Product_Id": "00009358 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9375,
"name": "زاهر عسل نحل بردقوش\/ حبة البركة 240 جم - موقوف",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل بردقوش\/ حبة البركة 240 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009359 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9376,
"name": "هاريبو جيلى جي وان 80 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هاريبو جيلى جي وان 80 جم",
"Product_EN": "Haribo J-One Jelly 80gm",
"Product_Id": "00009360 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9377,
"name": "كارجو تفاح بلدى وزن",
"price": 17.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو تفاح بلدى وزن",
"Product_EN": null,
"Product_Id": "00009361 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9378,
"name": "جولدن روز سردين بارد 125 جم - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جولدن روز سردين بارد 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009362 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9379,
"name": "جولدن روز - سردين حار 125 جم - موقوف",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جولدن روز - سردين حار 125 جم - موقوف",
"Product_EN": null,
"Product_Id": "00009363 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9380,
"name": "برانش خبز هامبورجر 4 ق",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برانش خبز هامبورجر 4 ق",
"Product_EN": null,
"Product_Id": "00009364 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9381,
"name": "برانش خبز بيتى بان 8 ق",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برانش خبز بيتى بان 8 ق",
"Product_EN": null,
"Product_Id": "00009365 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9382,
"name": "الحلوة حلاوه طحينية سادة 1100 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الحلوة حلاوه طحينية سادة 1100 جم",
"Product_EN": "Halwani Halawa 1100 gm",
"Product_Id": "00009366 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9383,
"name": "حلوانى حلاوة طحينيه شيكولاته 620 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوة طحينيه شيكولاته 620 جم",
"Product_EN": "Halwani Halawa Tahini Chocolate 620 gm",
"Product_Id": "00009367 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9384,
"name": "حلوانى حلاوة بالفستق 620جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى حلاوة بالفستق 620جم",
"Product_EN": "Halwani Halawa With Pistachio 620 gm",
"Product_Id": "00009368 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9385,
"name": "العلا كمون حصى 30 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا كمون حصى 30 جم",
"Product_EN": null,
"Product_Id": "00009369 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9386,
"name": "العلا نشا ذرة 100 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "العلا نشا ذرة 100 جم",
"Product_EN": null,
"Product_Id": "00009370 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9387,
"name": "ريجينا مكرونة ودعة 400 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة ودعة 400 جم",
"Product_EN": "Regina Pasta Shells 400 gM",
"Product_Id": "00009371 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9388,
"name": "كورونا بسكويت نجريتا 100 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا بسكويت نجريتا 100 جم",
"Product_EN": null,
"Product_Id": "00009372 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9389,
"name": "كورونا بسكويت ويفر فانيليا 20 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا بسكويت ويفر فانيليا 20 جم",
"Product_EN": null,
"Product_Id": "00009373 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9390,
"name": "كورونا ويفر اكستر ويفر 4 ق",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا ويفر اكستر ويفر 4 ق",
"Product_EN": null,
"Product_Id": "00009374 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9391,
"name": "بيمبو اورجينال بسكويت مغطي بالشيكولاته 49 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيمبو اورجينال بسكويت مغطي بالشيكولاته 49 جم",
"Product_EN": null,
"Product_Id": "00009375 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9392,
"name": "كواليتى فستق قلب 75 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كواليتى فستق قلب 75 جم",
"Product_EN": null,
"Product_Id": "00009376 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9393,
"name": "التيسير خبز شامى 5 ق",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "التيسير خبز شامى 5 ق",
"Product_EN": null,
"Product_Id": "00009377 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9394,
"name": "دريم مسحوق بودنج شوكولاتة 100 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دريم مسحوق بودنج شوكولاتة 100 جم",
"Product_EN": "Dreem Chocolate Pudding Powder 100 gm",
"Product_Id": "00009378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9395,
"name": "فان داى كيك بوبو كريمه فراوله 32 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى كيك بوبو كريمه فراوله 32 جم",
"Product_EN": "FunDay Cake Bobo Strawberry Cream 32gm",
"Product_Id": "00009380 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9396,
"name": "جود داى بسكويت مكسرات 32 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جود داى بسكويت مكسرات 32 جم",
"Product_EN": "Good Day Nuts Biscuits 32 gm",
"Product_Id": "00009381 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9397,
"name": "فان داى كيك براونيز 40 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى كيك براونيز 40 جم",
"Product_EN": "FunDay Cake Brownies 40gm",
"Product_Id": "00009382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9398,
"name": "فان داى اصابع خبز بكريمه البندق 40 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى اصابع خبز بكريمه البندق 40 جم",
"Product_EN": "Funday Boboo Bread Sticks Hazelnut Cream 33 gm",
"Product_Id": "00009383 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9399,
"name": "فان داى استيكس اصابع بسكويت بالشيكولاته 23 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فان داى استيكس اصابع بسكويت بالشيكولاته 23 جم",
"Product_EN": "FanDay Biscuits Sticks Chocolate 23 gm",
"Product_Id": "00009384 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9400,
"name": "مزارع دينا حليب رايب 400 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا حليب رايب 400 مل",
"Product_EN": "Dina Farms Rayeb Milk 400 ml ",
"Product_Id": "00009385 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9401,
"name": "مزارع دينا عصير مانجو 850 مل",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مزارع دينا عصير مانجو 850 مل",
"Product_EN": "Dina Farms Fresh Mango Juice 850 ",
"Product_Id": "00009386 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9402,
"name": "ديتول سائل غسيل ايدى اوريجينال اصلى 200 مل",
"price": 37.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول سائل غسيل ايدى اوريجينال اصلى 200 مل",
"Product_EN": null,
"Product_Id": "00009387 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9403,
"name": "ديتول سائل غسيل ايدى عنايه بالبشره 200 مل ",
"price": 37.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول سائل غسيل ايدى عنايه بالبشره 200 مل ",
"Product_EN": "Dettol Hand Wash Liquid Skin Care 200 ml",
"Product_Id": "00009388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9404,
"name": "مصريه مكرونة اسباجتى 350 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصريه مكرونة اسباجتى 350 جم",
"Product_EN": null,
"Product_Id": "00009389 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9405,
"name": "مصرية شعرية 400 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية شعرية 400 جم",
"Product_EN": null,
"Product_Id": "00009390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9406,
"name": "مصرية لسان عصفور 400 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية لسان عصفور 400 جم",
"Product_EN": null,
"Product_Id": "00009391 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9407,
"name": "مصرية مكرونة مرمرية 350 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية مكرونة مرمرية 350 جم",
"Product_EN": null,
"Product_Id": "00009392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9408,
"name": "مصرية مكرونة خواتم 350 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية مكرونة خواتم 350 جم",
"Product_EN": null,
"Product_Id": "00009393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9409,
"name": "مصرية مكرونة فرن 350 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية مكرونة فرن 350 جم",
"Product_EN": null,
"Product_Id": "00009394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9410,
"name": "مصرية مكرونة قواقع 350 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية مكرونة قواقع 350 جم",
"Product_EN": null,
"Product_Id": "00009395 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9411,
"name": "مصرية مكرونة سوستة 350 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية مكرونة سوستة 350 جم",
"Product_EN": null,
"Product_Id": "00009396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9412,
"name": "بريل سائل تنطيف اطباق ليمون اخضر 980 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل سائل تنطيف اطباق ليمون اخضر 980 مل",
"Product_EN": null,
"Product_Id": "00009397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9413,
"name": "برسيل مسحوق منخفض الرغوة 2.5 كجم خصم 25%",
"price": 82,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق منخفض الرغوة 2.5 كجم خصم 25%",
"Product_EN": null,
"Product_Id": "00009398 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9414,
"name": "ريجينا مكرونة قواقع 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة قواقع 400 جم",
"Product_EN": null,
"Product_Id": "00009399 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9415,
"name": "مصرية مكرونة اسباجتى 1 كجم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية مكرونة اسباجتى 1 كجم",
"Product_EN": null,
"Product_Id": "00009400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9416,
"name": "مصرية شعرية 1 كجم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية شعرية 1 كجم",
"Product_EN": null,
"Product_Id": "00009402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9417,
"name": "مصرية لسان عصفور 1 كجم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية لسان عصفور 1 كجم",
"Product_EN": null,
"Product_Id": "00009403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9418,
"name": "مصرية مكرونة مرمرية 1 كجم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية مكرونة مرمرية 1 كجم",
"Product_EN": null,
"Product_Id": "00009404 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9419,
"name": "مصرية مكرونة خواتم 1 كجم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية مكرونة خواتم 1 كجم",
"Product_EN": null,
"Product_Id": "00009405 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9420,
"name": "مصرية مكرونة شريط 1 كجم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مصرية مكرونة شريط 1 كجم",
"Product_EN": null,
"Product_Id": "00009406 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9421,
"name": "المطبخ مكرونة فرن 400 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ مكرونة فرن 400 جم",
"Product_EN": null,
"Product_Id": "00009407 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9422,
"name": "المطبخ مكرونة خواتم 400 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ مكرونة خواتم 400 جم",
"Product_EN": null,
"Product_Id": "00009408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9423,
"name": "المطبخ مكرونة مرمرية 400 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ مكرونة مرمرية 400 جم",
"Product_EN": null,
"Product_Id": "00009409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9424,
"name": "المطبخ مكرونة هلالية 400 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ مكرونة هلالية 400 جم",
"Product_EN": null,
"Product_Id": "00009410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9425,
"name": "المطبخ مكرونة اسباجتى 400 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ مكرونة اسباجتى 400 جم",
"Product_EN": null,
"Product_Id": "00009411 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9426,
"name": "المطبخ شعرية 400 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ شعرية 400 جم",
"Product_EN": null,
"Product_Id": "00009413 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9427,
"name": "المطبخ لسان عصفور 400 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المطبخ لسان عصفور 400 جم",
"Product_EN": null,
"Product_Id": "00009414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9428,
"name": "بيتى عصير تفاح بلاستيك 1 لتر",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير تفاح بلاستيك 1 لتر",
"Product_EN": "Beyti Apple Juice 1 L",
"Product_Id": "00009415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9429,
"name": "اريال مسحوق اتوماتيك داونى 4 كجم",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك داونى 4 كجم",
"Product_EN": null,
"Product_Id": "00009416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9430,
"name": "فيرى سائل تنظيف اطباق 750 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيرى سائل تنظيف اطباق 750 مل",
"Product_EN": null,
"Product_Id": "00009417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9431,
"name": "مزارع دينا عصير ليمون نعناع 850 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مزارع دينا عصير ليمون نعناع 850 مل",
"Product_EN": "Dina Farms Fresh Lemon Mint Juice 850 ml ",
"Product_Id": "00009418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9432,
"name": "اريال مسحوق اتوماتيك ياسمين 4 كجم",
"price": 154,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك ياسمين 4 كجم",
"Product_EN": null,
"Product_Id": "00009419 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9433,
"name": "اندومى شعريه سريعه التحضير بالفراخ البلدى 70 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير بالفراخ البلدى 70 جم",
"Product_EN": null,
"Product_Id": "00009420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9434,
"name": "زاهر تورتة ايس كريم اوريو",
"price": 210,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر تورتة ايس كريم اوريو",
"Product_EN": "Zaher OREO Ice Cream Torte",
"Product_Id": "00009421 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9435,
"name": "الوادى الاخضر صوص شيدر طبيعى 1 كجم - موقوف",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الوادى الاخضر صوص شيدر طبيعى 1 كجم - موقوف",
"Product_EN": null,
"Product_Id": "00009422 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9436,
"name": "كارجو فلفل رومى اخضر 1 كجم",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو فلفل رومى اخضر 1 كجم",
"Product_EN": null,
"Product_Id": "00009423 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9437,
"name": "كارجو قلقاس 1 كجم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو قلقاس 1 كجم",
"Product_EN": null,
"Product_Id": "00009424 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9438,
"name": "عافية زيت ذرة 1.6 لتر ",
"price": 69.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافية زيت ذرة 1.6 لتر ",
"Product_EN": "Afia Corn Oil 1.6 L",
"Product_Id": "00009425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9439,
"name": "عافية زيت عباد 1.6 لتر ",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافية زيت عباد 1.6 لتر ",
"Product_EN": "Afia Sunflower Oil 1.6 L",
"Product_Id": "00009426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9440,
"name": "سلايت زيت عباد الشمس 1.5 لتر",
"price": 51,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سلايت زيت عباد الشمس 1.5 لتر",
"Product_EN": "Slite Sunflower Oil 1.5 L",
"Product_Id": "00009427 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9441,
"name": "فيبا دش 1 كجم + فيبا رنس 285 مل",
"price": 66.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا دش 1 كجم + فيبا رنس 285 مل",
"Product_EN": null,
"Product_Id": "00009429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9442,
"name": "ايزى كير جيل معقم لليدين 60 مل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير جيل معقم لليدين 60 مل",
"Product_EN": "Easy Care hand Sanitizer Gel 60 ml",
"Product_Id": "00009430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9443,
"name": "ايزى كير كحول ليمون 500 مل",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير كحول ليمون 500 مل",
"Product_EN": "Easy Care Alcohol Lemon 500 ml",
"Product_Id": "00009431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9444,
"name": "اكس اكسايت سبراي مزيل لرائحة العرق للرجال 150 مل",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس اكسايت سبراي مزيل لرائحة العرق للرجال 150 مل",
"Product_EN": "AXe Excite Deodorant Body Spray For Men 150 ml ",
"Product_Id": "00009432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9445,
"name": "اكس بلاك نايت سبراي مزيل لرائحة العرق للرجال 150مل",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس بلاك نايت سبراي مزيل لرائحة العرق للرجال 150مل",
"Product_EN": "AXe Black Night Deodorant Spray for Men 150 ml",
"Product_Id": "00009433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9446,
"name": "اكس جولد سبراى مزيل لرائحة العرق للرجال 150 مل",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس جولد سبراى مزيل لرائحة العرق للرجال 150 مل",
"Product_EN": "AXe Gold Deodorant Spray For Men 150 ml",
"Product_Id": "00009434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9447,
"name": "اكس بلاك سبراي مزيل لرائحة العرق للرجال 150مل",
"price": 36.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس بلاك سبراي مزيل لرائحة العرق للرجال 150مل",
"Product_EN": "AXe Black Deodorant & Body Spray for Men 150 ml",
"Product_Id": "00009435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9448,
"name": "اكس يو سبراى مزيل عرق 150 مل - عرض",
"price": 36.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "اكس يو سبراى مزيل عرق 150 مل - عرض",
"Product_EN": "AXe Deodorant Spray For Men 150 ml - Offer",
"Product_Id": "00009436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9449,
"name": "ريكسونا اكسترا مزيل للعرق حريمى 50 مل ",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا اكسترا مزيل للعرق حريمى 50 مل ",
"Product_EN": "Rexona Deodorant Extra For Women 50 ml",
"Product_Id": "00009437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9450,
"name": "ريكسونا مزيل العرق رول اون للرجال 50 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ريكسونا مزيل العرق رول اون للرجال 50 مل",
"Product_EN": "Rexona Deodorant Roll On For Men 50 ml",
"Product_Id": "00009438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9451,
"name": "دوف شامبو روتين العناية بالتلف 400 مل",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو روتين العناية بالتلف 400 مل",
"Product_EN": "Dove Shampoo Damage Care Routine 400 ml",
"Product_Id": "00009439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9452,
"name": "دوف شامبو روتين الشعر القوى 400مل",
"price": 54,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "دوف شامبو روتين الشعر القوى 400مل",
"Product_EN": "Dove Shampoo Strong Hair Routine 400 ml",
"Product_Id": "00009440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9453,
"name": "شامبو دوف للإصلاح المكثف 400 مل",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "شامبو دوف للإصلاح المكثف 400 مل",
"Product_EN": "Dove Shampoo Intensive Repair 400 ml",
"Product_Id": "00009441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9454,
"name": "لوكس شاور جل حلم السعادة 250مل+لوفة مجانا ",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس شاور جل حلم السعادة 250مل+لوفة مجانا ",
"Product_EN": "Lux Shower Gel Dream Delight 250 ml + Loofah Free",
"Product_Id": "00009443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9455,
"name": "لوكس شاور جل لمسة ناعمه 250 مل + لوفة مجانا",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس شاور جل لمسة ناعمه 250 مل + لوفة مجانا",
"Product_EN": "LUX Shower Soft Touch 250 ml + Loofah Free",
"Product_Id": "00009444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9456,
"name": "لوكس شاور جل ملمس كالحرير 250 مل + لوفة مجانا",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لوكس شاور جل ملمس كالحرير 250 مل + لوفة مجانا",
"Product_EN": "LUX Shower Silk Sensation 250 ml + Loofah Free",
"Product_Id": "00009445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9457,
"name": "ليبتون شاى اخضر بدون مرارة 100 فتله ",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر بدون مرارة 100 فتله ",
"Product_EN": "Lipton Green Tea Pure Non - Bitter 100 Bags ",
"Product_Id": "00009446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9458,
"name": "ليبتون شاى اخضر بدون مرارة 25 فتلة ",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليبتون شاى اخضر بدون مرارة 25 فتلة ",
"Product_EN": "Lipton Green Tea Pure Non - Bitter 25 Bags ",
"Product_Id": "00009447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9459,
"name": "فاين مناديل مطبخ 6 بكره",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين مناديل مطبخ 6 بكره",
"Product_EN": null,
"Product_Id": "00009448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9460,
"name": "اطياب برجر بقرى 16 ق 800 جم",
"price": 88,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب برجر بقرى 16 ق 800 جم",
"Product_EN": "Atyab Beef Burger 16 pieces 800 g",
"Product_Id": "00009449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9461,
"name": "اطياب برجر بقرى 20 ق 1 كجم",
"price": 95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب برجر بقرى 20 ق 1 كجم",
"Product_EN": "Atyab Beef Burger 20 pieces 1 Kg",
"Product_Id": "00009450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9462,
"name": "اطياب هوت دوج بقرى 12 ق 1 كجم",
"price": 79,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:58",
"updated_at": "2021-11-01 19:45:58",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "اطياب هوت دوج بقرى 12 ق 1 كجم",
"Product_EN": "Atyab Beef Hotdog 12 pieces 1 Kg",
"Product_Id": "00009451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9463,
"name": "برانش ساندويتش رومى",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش ساندويتش رومى",
"Product_EN": null,
"Product_Id": "00009452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9464,
"name": "كلوركس الوان ظرف 325 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوركس الوان ظرف 325 مل",
"Product_EN": null,
"Product_Id": "00009453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9465,
"name": "مستر ماسل منظف التواليت 500 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مستر ماسل منظف التواليت 500 مل",
"Product_EN": null,
"Product_Id": "00009454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9466,
"name": "توليدو ذره حلوه 300 جم",
"price": 17.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو ذره حلوه 300 جم",
"Product_EN": "Tolido Sweet Corn 300 gm",
"Product_Id": "00009455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9467,
"name": "توليدو مشروم شرائح 800 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو مشروم شرائح 800 جم",
"Product_EN": "Tolido Sliced Mushroom 800 gm",
"Product_Id": "00009456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9468,
"name": "اولكر بسكويت محشو تمر60جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر بسكويت محشو تمر60جم",
"Product_EN": null,
"Product_Id": "00009457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9469,
"name": "زاهر زيتون اسبانى مخلل طبيعى بلاستيك 500 جم ",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون اسبانى مخلل طبيعى بلاستيك 500 جم ",
"Product_EN": null,
"Product_Id": "00009460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9470,
"name": "زاهر ليمون معصفر مخلل طبيعى بلاستيك 500 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ليمون معصفر مخلل طبيعى بلاستيك 500 جم",
"Product_EN": null,
"Product_Id": "00009462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9471,
"name": "الوادى الاخضر صوص شيدر طبيعى وزن - موقوف",
"price": 78,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "الوادى الاخضر صوص شيدر طبيعى وزن - موقوف",
"Product_EN": null,
"Product_Id": "00009463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9472,
"name": "تست بيور ستربس دجاج حار مجمد 400 جم",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تست بيور ستربس دجاج حار مجمد 400 جم",
"Product_EN": null,
"Product_Id": "00009465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9473,
"name": "كوكى تشيكن ستربس 750 جم",
"price": 80.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى تشيكن ستربس 750 جم",
"Product_EN": "Koki Chicken Strips 750 gm",
"Product_Id": "00009466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9474,
"name": "كوكى تشيكن ستربس حار 750 جم",
"price": 80.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى تشيكن ستربس حار 750 جم",
"Product_EN": "Koki Chicken Strips Spicy 750 gm",
"Product_Id": "00009467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9475,
"name": "المشرق اكياس خضار و فاكهة مشرشر وزن",
"price": 30.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "المشرق اكياس خضار و فاكهة مشرشر وزن",
"Product_EN": null,
"Product_Id": "00009468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9476,
"name": "برانش ساندويتش جبنة اسطمبولى بالفلفل الحار",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "برانش ساندويتش جبنة اسطمبولى بالفلفل الحار",
"Product_EN": null,
"Product_Id": "00009469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9477,
"name": "دولفين تونة قطع حار 170 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونة قطع حار 170 جم",
"Product_EN": "Dolphin Tuna Chunks Hot 170 gm",
"Product_Id": "00009470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9478,
"name": "ماينز جبنه شيدر طعوم وزن",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ماينز جبنه شيدر طعوم وزن",
"Product_EN": "Mainz Cheese Cheddar Baits - Scalable ",
"Product_Id": "00009471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9479,
"name": "فارم فريتس بوم فريت 1 كجم + 500 جم عرض",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فارم فريتس بوم فريت 1 كجم + 500 جم عرض",
"Product_EN": null,
"Product_Id": "00009472 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9480,
"name": "بيبسى الهضبة زجاج 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبسى الهضبة زجاج 300 مل",
"Product_EN": "Pepsi El Hadaba Bottle 300 ml",
"Product_Id": "00009473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9481,
"name": "سفن اب الهضبة زجاج 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سفن اب الهضبة زجاج 300 مل",
"Product_EN": null,
"Product_Id": "00009474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9482,
"name": "ميراندا الهضبة زجاج 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميراندا الهضبة زجاج 300 مل",
"Product_EN": null,
"Product_Id": "00009475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9483,
"name": "برسيل مسحوق اتوماتيك ابيض 800 جم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك ابيض 800 جم",
"Product_EN": null,
"Product_Id": "00009476 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9484,
"name": "زاهر زيتون كلاماتا مخلل طبيعى بلاستيك 500 جم ",
"price": 31,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون كلاماتا مخلل طبيعى بلاستيك 500 جم ",
"Product_EN": null,
"Product_Id": "00009478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9485,
"name": "شويبس جولد خوخ كان 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس جولد خوخ كان 300 مل",
"Product_EN": "Schweppes Gold Peach Can 300 ml",
"Product_Id": "00009479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9486,
"name": "شويبس جولد رمان كان 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس جولد رمان كان 300 مل",
"Product_EN": "Schweppes Gold Pomegranate Can 300 ml",
"Product_Id": "00009480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9487,
"name": "شويبس جولد اناناس كان 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس جولد اناناس كان 300 مل",
"Product_EN": "Schweppes Gold Pineapple Can 300 ml",
"Product_Id": "00009481 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9488,
"name": "داونى منعم ملابس نسيم الوادى 300 مل",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داونى منعم ملابس نسيم الوادى 300 مل",
"Product_EN": null,
"Product_Id": "00009482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9489,
"name": "هيداندشولدرز شامبو ناعم حريرى 200 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيداندشولدرز شامبو ناعم حريرى 200 مل",
"Product_EN": null,
"Product_Id": "00009483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9490,
"name": "هيداندشولدرز شامبو ضد التساقط 200مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيداندشولدرز شامبو ضد التساقط 200مل",
"Product_EN": null,
"Product_Id": "00009484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9491,
"name": "هيد اند شولدرز شامبو نظيف انيق 200 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدرز شامبو نظيف انيق 200 مل",
"Product_EN": null,
"Product_Id": "00009485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9492,
"name": "هيداندشولدرز شامبو للرجال ضد التساقط 200 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيداندشولدرز شامبو للرجال ضد التساقط 200 مل",
"Product_EN": null,
"Product_Id": "00009486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9493,
"name": "هيداندشولدرز شامبوعناية متكاملة 200 مل",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيداندشولدرز شامبوعناية متكاملة 200 مل",
"Product_EN": null,
"Product_Id": "00009488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9494,
"name": "بانتين شامبو ميلكى 600 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ميلكى 600 مل",
"Product_EN": null,
"Product_Id": "00009489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9495,
"name": "بانتين شامبو ناعم وحريرى 600 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو ناعم وحريرى 600 مل",
"Product_EN": null,
"Product_Id": "00009490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9496,
"name": "اريال مسحوق اوتوماتيك داونى 4 كجم",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اوتوماتيك داونى 4 كجم",
"Product_EN": null,
"Product_Id": "00009491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9497,
"name": "حدائق كاليفورنيا تونه قطع فاتح حار 185جم",
"price": 29,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حدائق كاليفورنيا تونه قطع فاتح حار 185جم",
"Product_EN": "California Gardens Chunk Tuna Spicy 185 gm",
"Product_Id": "00009492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9498,
"name": "زاهر بيتى فور شيكولاتة 500 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بيتى فور شيكولاتة 500 جم",
"Product_EN": "Zaher Petit Four w Chocolate 500 g",
"Product_Id": "00009493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9499,
"name": "زاهر مخبوزات منين ملبن 500 جم - علبه",
"price": 28.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات منين ملبن 500 جم - علبه",
"Product_EN": "Zaher Menen w Malban 500 g",
"Product_Id": "00009494 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9500,
"name": "زاهر بقلاوه كل واشكر - 2020 - موقوف",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بقلاوه كل واشكر - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9501,
"name": "زاهر جلاش حجاب وزن - 2020 - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جلاش حجاب وزن - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9502,
"name": "زاهر جلاش صوابع وزن - - موقوف",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر جلاش صوابع وزن - - موقوف",
"Product_EN": null,
"Product_Id": "00009499 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9503,
"name": "زاهر بسبوسة فسدق طبق - 2020 - موقوف",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر بسبوسة فسدق طبق - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9504,
"name": "زاهر كنافة بصمه مكسرات وزن - 2020 - موقوف",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر كنافة بصمه مكسرات وزن - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9505,
"name": "هيلثى صويا صوص غامق 250 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى صويا صوص غامق 250 مل",
"Product_EN": null,
"Product_Id": "00009502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9506,
"name": "هيلثى صويا صوص فاتح 250 مل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هيلثى صويا صوص فاتح 250 مل",
"Product_EN": null,
"Product_Id": "00009503 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9507,
"name": "فريدة معطر جو ارابيسك 560 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدة معطر جو ارابيسك 560 مل",
"Product_EN": null,
"Product_Id": "00009504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9508,
"name": "كارجو كريز وزن",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو كريز وزن",
"Product_EN": null,
"Product_Id": "00009505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9509,
"name": "ريتر سبورت شيكولاته كاكاو 74% 100 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته كاكاو 74% 100 جم",
"Product_EN": null,
"Product_Id": "00009506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9510,
"name": "ريتر سبورت شيكولاته موس كاكاو 100 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته موس كاكاو 100 جم",
"Product_EN": null,
"Product_Id": "00009507 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9511,
"name": "ريتر سبورت شيكولاته بحشو نعناع 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته بحشو نعناع 100 جم",
"Product_EN": null,
"Product_Id": "00009508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9512,
"name": "ريتر سبورت شيكولاته غامقه بالبندق 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته غامقه بالبندق 100 جم",
"Product_EN": null,
"Product_Id": "00009509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9513,
"name": "ريتر سبورت شيكولاته بالقهوه 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته بالقهوه 100 جم",
"Product_EN": null,
"Product_Id": "00009510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9514,
"name": "ريتر سبورت شيكولاته بيضاء بالبندق 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته بيضاء بالبندق 100 جم",
"Product_EN": null,
"Product_Id": "00009511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9515,
"name": "ريتر سبورت شيكولاته بالبندق 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته بالبندق 100 جم",
"Product_EN": null,
"Product_Id": "00009512 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9516,
"name": "ريتر سبورت شيكولاته بزبادى الفراوله 100 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته بزبادى الفراوله 100 جم",
"Product_EN": null,
"Product_Id": "00009513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9517,
"name": "ريتر سبورت شيكولاته غامقه كاكاو 50% 100 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته غامقه كاكاو 50% 100 جم",
"Product_EN": null,
"Product_Id": "00009514 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9518,
"name": "ريتر سبورت شيكولاته بالويفر 100 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته بالويفر 100 جم",
"Product_EN": null,
"Product_Id": "00009515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9519,
"name": "ريتر سبورت شيكولاته بالمرزبان 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته بالمرزبان 100 جم",
"Product_EN": "Ritter Sport Marzipan Chocolate 100 gm",
"Product_Id": "00009516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9520,
"name": "ميلكا شيكولاتة بابلي بالحليب 90 جم ",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شيكولاتة بابلي بالحليب 90 جم ",
"Product_EN": "Milka Bubbly Milk Chocolate 90 gm",
"Product_Id": "00009518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9521,
"name": "ميلكا شوكولاتة بالبندق 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بالبندق 100 جم",
"Product_EN": "Milka Chocolate Hazelnut 100 gm",
"Product_Id": "00009519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9522,
"name": "ميلكا بابلى شوكولاتة وايت 95 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا بابلى شوكولاتة وايت 95 جم",
"Product_EN": "Milka Bubbly White Chocolate 95 gm",
"Product_Id": "00009520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9523,
"name": "ميلكا شوكولاتة بقطع اوريو 92 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بقطع اوريو 92 جم",
"Product_EN": "Milka Chocolate Oreo Chunks 92 gm",
"Product_Id": "00009522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9524,
"name": "ميلكا تريبل شيكولاته كاكاو 90 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا تريبل شيكولاته كاكاو 90 جم",
"Product_EN": "Milka Cocoa Chocolate 90 gm",
"Product_Id": "00009523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9525,
"name": "شهرزاد باميه ممتازة+بسلة بالجزر+بيورية طماطم عرض",
"price": 19.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "شهرزاد باميه ممتازة+بسلة بالجزر+بيورية طماطم عرض",
"Product_EN": null,
"Product_Id": "00009525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9526,
"name": "زاهر زيتون دولسى مخلل طبيعى بلاستيك 500 جم ",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر زيتون دولسى مخلل طبيعى بلاستيك 500 جم ",
"Product_EN": null,
"Product_Id": "00009526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9527,
"name": "زينه تريو مناديل تواليت مضغوط 6 بكرة",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه تريو مناديل تواليت مضغوط 6 بكرة",
"Product_EN": null,
"Product_Id": "00009527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9528,
"name": "كلوريل مبيض ومعطر للملابس 2 كجم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل مبيض ومعطر للملابس 2 كجم",
"Product_EN": null,
"Product_Id": "00009528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9529,
"name": "كلوريل مبيض ومعطر للملابس 4 كجم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل مبيض ومعطر للملابس 4 كجم",
"Product_EN": null,
"Product_Id": "00009529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9530,
"name": "ديفاتول مطهر مركز برائحة 125 مل",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديفاتول مطهر مركز برائحة 125 مل",
"Product_EN": null,
"Product_Id": "00009530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9531,
"name": "كلوريل مبيض ومعطر ملابس صنوبر 1 كجم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كلوريل مبيض ومعطر ملابس صنوبر 1 كجم",
"Product_EN": null,
"Product_Id": "00009531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9532,
"name": "وايت مناديل مطبخ ميجا رول 325 جم + علبه صفيح هديه",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت مناديل مطبخ ميجا رول 325 جم + علبه صفيح هديه",
"Product_EN": null,
"Product_Id": "00009532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9533,
"name": "فاست برانت - علبه بكرى كرافت",
"price": 1.55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "فاست برانت - علبه بكرى كرافت",
"Product_EN": null,
"Product_Id": "00009533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9534,
"name": "سن توب عصير برتقال 250 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سن توب عصير برتقال 250 مل",
"Product_EN": "Sun Top Juice Orange 250 ml",
"Product_Id": "00009534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9535,
"name": "سن توب عصير اناناس 250 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سن توب عصير اناناس 250 مل",
"Product_EN": "Sun Top Juice Pineapple 250 ml",
"Product_Id": "00009535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9536,
"name": "سن توب عصير فواكه مشكله 250 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سن توب عصير فواكه مشكله 250 مل",
"Product_EN": "Sun Top Mixed Fruits 250 ml",
"Product_Id": "00009536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9537,
"name": "زاهر تمر سعودى سكرى 500 جم - 2020",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر تمر سعودى سكرى 500 جم - 2020",
"Product_EN": null,
"Product_Id": "00009537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9538,
"name": "زاهر تمر مصرى 500 جم - 2020 - موقوف",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر تمر مصرى 500 جم - 2020 - موقوف",
"Product_EN": null,
"Product_Id": "00009538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9539,
"name": "حلوه زيت خليط 1 لتر",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوه زيت خليط 1 لتر",
"Product_EN": "Hala Mixed Oil 1 L ",
"Product_Id": "00009539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9540,
"name": "زاهر سلطة شيف جبنه قريش وزن",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطة شيف جبنه قريش وزن",
"Product_EN": null,
"Product_Id": "00009540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9541,
"name": "زاهر سلطة شيف جبنه ريكوتا وزن",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر سلطة شيف جبنه ريكوتا وزن",
"Product_EN": null,
"Product_Id": "00009541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9542,
"name": "فودى صلصه صفيح 400 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فودى صلصه صفيح 400 جم",
"Product_EN": null,
"Product_Id": "00009542 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9543,
"name": "زاهر شنطة رمضان 2020 = 172",
"price": 172,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "زاهر شنطة رمضان 2020 = 172",
"Product_EN": null,
"Product_Id": "00009544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9544,
"name": "مزارع دينا زبادى بالفراولة 75 جم",
"price": 2.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا زبادى بالفراولة 75 جم",
"Product_EN": "Dina Farms Strawberry Yogurt 75 gm",
"Product_Id": "00009545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9545,
"name": "مزارع دينا عصير فراولة 850 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا عصير فراولة 850 مل",
"Product_EN": "Dina Farms Fresh Strawberry Juice 850 ml ",
"Product_Id": "00009546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9546,
"name": "مزارع دينا عصير برتقال 850 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا عصير برتقال 850 مل",
"Product_EN": "Dina Farms Fresh Orange Juice 850 ml ",
"Product_Id": "00009547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9547,
"name": "مزارع دينا عصير اناناس 850 مل",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا عصير اناناس 850 مل",
"Product_EN": "Dina Farms Pineapple Juice 850 ml",
"Product_Id": "00009548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9548,
"name": "مزارع دينا عصير برتقال 250 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا عصير برتقال 250 مل",
"Product_EN": "Dina Farms Fresh Orange Juice 250 ml ",
"Product_Id": "00009549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9549,
"name": "مزارع دينا عصير اناناس 250 مل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "مزارع دينا عصير اناناس 250 مل",
"Product_EN": "Dina Farms Pineapple Juice 250 ml",
"Product_Id": "00009550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9550,
"name": "لعب أطفال تنوره",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "لعب أطفال تنوره",
"Product_EN": null,
"Product_Id": "00009551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9551,
"name": "لعب أطفال مروحيه",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "لعب أطفال مروحيه",
"Product_EN": "Helicopter children's toys",
"Product_Id": "00009552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9552,
"name": "لعب أطفال شيكو هامتو",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "لعب أطفال شيكو هامتو",
"Product_EN": null,
"Product_Id": "00009553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9553,
"name": "ميلكا شوكولاتة فراوله 95 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة فراوله 95 جم",
"Product_EN": "Milka Strawberry Chocolate 95 gm",
"Product_Id": "00009554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9554,
"name": "هوهوز كيك كريمة الفراوله new",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هوهوز كيك كريمة الفراوله new",
"Product_EN": null,
"Product_Id": "00009556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9555,
"name": "هوهوز كيك كريمة الكاكاو new",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هوهوز كيك كريمة الكاكاو new",
"Product_EN": null,
"Product_Id": "00009557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9556,
"name": "زاهر كيس معالق",
"price": 29.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر كيس معالق",
"Product_EN": null,
"Product_Id": "00009558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9557,
"name": "برتقال بلدى وزن",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "برتقال بلدى وزن",
"Product_EN": null,
"Product_Id": "00009559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9558,
"name": "تين برشومى وزن",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تين برشومى وزن",
"Product_EN": null,
"Product_Id": "00009560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9559,
"name": "خبز لبنانى وسط 8 ق",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "خبز لبنانى وسط 8 ق",
"Product_EN": null,
"Product_Id": "00009561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9560,
"name": "المراعى زبادى طبيعى170 جم عرض وفر 1ج",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى زبادى طبيعى170 جم عرض وفر 1ج",
"Product_EN": "Almarai Natural Yogurt 170 gm Offer Save 1 Pound",
"Product_Id": "00009562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9561,
"name": "ريجينا مكرونة فارفللى 400 جم",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة فارفللى 400 جم",
"Product_EN": null,
"Product_Id": "00009563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9562,
"name": "ريجينا مكرونة فيوكى 400 جم",
"price": 8.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريجينا مكرونة فيوكى 400 جم",
"Product_EN": null,
"Product_Id": "00009564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9563,
"name": "اولكر كات كات ويفر شيكولاتة بالبندق 26 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر كات كات ويفر شيكولاتة بالبندق 26 جم",
"Product_EN": null,
"Product_Id": "00009565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9564,
"name": "اولكر كات كات ميل فاى فراوله 26 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر كات كات ميل فاى فراوله 26 جم",
"Product_EN": null,
"Product_Id": "00009566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9565,
"name": "شويبس ليمون نعناع كان 300 مل",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شويبس ليمون نعناع كان 300 مل",
"Product_EN": "Schweppes Lemon Mint Can 300 ml",
"Product_Id": "00009567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9566,
"name": "كمثرى وزن",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كمثرى وزن",
"Product_EN": null,
"Product_Id": "00009569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9567,
"name": "كارجو اته وزن",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو اته وزن",
"Product_EN": null,
"Product_Id": "00009570 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9568,
"name": "منجل ايس كريم بودر شيكولاته 80 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل ايس كريم بودر شيكولاته 80 جم",
"Product_EN": null,
"Product_Id": "00009571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9569,
"name": "منجل ايس كريم بودر مانجو80 جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل ايس كريم بودر مانجو80 جم",
"Product_EN": null,
"Product_Id": "00009572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9570,
"name": "منجل ايس كريم بودر فانيليا 80جم",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "منجل ايس كريم بودر فانيليا 80جم",
"Product_EN": null,
"Product_Id": "00009573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9571,
"name": "ستاربرست لبان فواكه 4.2 جم - كيس ",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربرست لبان فواكه 4.2 جم - كيس ",
"Product_EN": "Starburst Fruit Gum 4.2 gm - Sachet",
"Product_Id": "00009575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9572,
"name": "ستاربرست لبان فواكه 14جم",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربرست لبان فواكه 14جم",
"Product_EN": "Starburst Gum Fruits 14 gm",
"Product_Id": "00009576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9573,
"name": "زاهر شمع عسل 500 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر شمع عسل 500 جم",
"Product_EN": "Zaher Besswax 500 g",
"Product_Id": "00009577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9574,
"name": "كوين رول قمامة 70*90 1 كجم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول قمامة 70*90 1 كجم",
"Product_EN": null,
"Product_Id": "00009579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9575,
"name": "كوين رول قمامة 70 *60 1 كجم",
"price": 34.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول قمامة 70 *60 1 كجم",
"Product_EN": null,
"Product_Id": "00009580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9576,
"name": "كوين رول قمامة 70*90 500 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول قمامة 70*90 500 جم",
"Product_EN": null,
"Product_Id": "00009581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9577,
"name": "كوين رول قمامة 70*60 500 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول قمامة 70*60 500 جم",
"Product_EN": null,
"Product_Id": "00009582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9578,
"name": "كوين رول قمامة ميني 55*50 18 كيس",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول قمامة ميني 55*50 18 كيس",
"Product_EN": null,
"Product_Id": "00009583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9579,
"name": "كوين رول اكياس سندوتش مينى 20*35 130 كيس",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس سندوتش مينى 20*35 130 كيس",
"Product_EN": null,
"Product_Id": "00009584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9580,
"name": "كوين رول اكياس ثلاجه ميني 25*40 100 كيس",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس ثلاجه ميني 25*40 100 كيس",
"Product_EN": null,
"Product_Id": "00009585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9581,
"name": "كوين رول اكياس ثلاجه ميني 30*50 80 كيس",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول اكياس ثلاجه ميني 30*50 80 كيس",
"Product_EN": null,
"Product_Id": "00009586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9582,
"name": "كوين باكت ثلاجه 20*35 45 كيس",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين باكت ثلاجه 20*35 45 كيس",
"Product_EN": null,
"Product_Id": "00009587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9583,
"name": "كوين باكيت ثلاجه 25*40 45 كيس",
"price": 8.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين باكيت ثلاجه 25*40 45 كيس",
"Product_EN": null,
"Product_Id": "00009588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9584,
"name": "كوين رول مفرش سفره مينى 90*110 30 مفرش",
"price": 19.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول مفرش سفره مينى 90*110 30 مفرش",
"Product_EN": null,
"Product_Id": "00009589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9585,
"name": "كارجو مانجو سكرى وزن",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كارجو مانجو سكرى وزن",
"Product_EN": null,
"Product_Id": "00009590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9586,
"name": "فاين فلافى مناديل مطبخ 2 بكره",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين فلافى مناديل مطبخ 2 بكره",
"Product_EN": null,
"Product_Id": "00009591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9587,
"name": "كوين رول استرتش 40*20 1 ق",
"price": 20.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول استرتش 40*20 1 ق",
"Product_EN": null,
"Product_Id": "00009592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9588,
"name": "كوين رول قمامه 50 * 55 1 ق",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول قمامه 50 * 55 1 ق",
"Product_EN": null,
"Product_Id": "00009593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9589,
"name": "رول اكياس سندوتشات دجرا باك - 130 كيس",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رول اكياس سندوتشات دجرا باك - 130 كيس",
"Product_EN": null,
"Product_Id": "00009594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9590,
"name": "رول اكياس سندوتشات دجرا باك - 100 كيس",
"price": 23.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رول اكياس سندوتشات دجرا باك - 100 كيس",
"Product_EN": null,
"Product_Id": "00009595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9591,
"name": "كوين رول مفرش سفرة - 1 كيلو 110 × 110 سم",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "كوين رول مفرش سفرة - 1 كيلو 110 × 110 سم",
"Product_EN": null,
"Product_Id": "00009596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9592,
"name": "رول مفرش سفرة دجرا باك - 30 مفرش",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 9,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 3,
"Subcategory": "منزليه",
"Product_AR": "رول مفرش سفرة دجرا باك - 30 مفرش",
"Product_EN": null,
"Product_Id": "00009597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9593,
"name": "دانون مشروب زبادى ماكس بالفراوله 220 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب زبادى ماكس بالفراوله 220 جم",
"Product_EN": "Danone Max Strawberry Yogurt Drink 220 gm",
"Product_Id": "00009598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9594,
"name": "دانون مشروب زبادى ماكس بالفراوله 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب زبادى ماكس بالفراوله 400 جم",
"Product_EN": "Danone Max Strawberry Yogurt Drink 400 gm",
"Product_Id": "00009599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9595,
"name": "دانون مشروب زبادى ماكس بالخوخ 220 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب زبادى ماكس بالخوخ 220 جم",
"Product_EN": "Danone Max Peach Yogurt Drink 200 gm",
"Product_Id": "00009600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9596,
"name": "دانون مشروب زبادى ماكس بالخوخ 400 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب زبادى ماكس بالخوخ 400 جم",
"Product_EN": "Danone Max Peach Yogurt Drink 400 gm",
"Product_Id": "00009601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9597,
"name": "دانون مشروب زبادى ماكس بالمانجو 220 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون مشروب زبادى ماكس بالمانجو 220 جم",
"Product_EN": "Danone Max Mango Yogurt Drink 220 gm",
"Product_Id": "00009602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9598,
"name": "لايف بوى سائل غسيل ايدى عنايه ناعمه 500 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى سائل غسيل ايدى عنايه ناعمه 500 مل",
"Product_EN": "Lifebuoy Hand Wash Liquid Soft Care 500 ml",
"Product_Id": "00009603 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9599,
"name": "كورونا ويفر اكستر شوكولاته 4 ق",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا ويفر اكستر شوكولاته 4 ق",
"Product_EN": null,
"Product_Id": "00009604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9600,
"name": "كورونا ويفر كاكاو جديد 4 ق",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا ويفر كاكاو جديد 4 ق",
"Product_EN": null,
"Product_Id": "00009605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9601,
"name": "كورونا شيكولاتة ساندو جوز الهند 37 جم",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة ساندو جوز الهند 37 جم",
"Product_EN": null,
"Product_Id": "00009606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9602,
"name": "كورونا مسحوق شيكولاته 77 جم 2ق + مج هدية",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا مسحوق شيكولاته 77 جم 2ق + مج هدية",
"Product_EN": null,
"Product_Id": "00009608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9603,
"name": "دولفين تونه مفتته سهلة الفتح حار 170 جم",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونه مفتته سهلة الفتح حار 170 جم",
"Product_EN": "Dolphin Tuna Crumble Easy To Open Hot 170 gm",
"Product_Id": "00009609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9604,
"name": "دولفين تونه مفتته سهله الفتح بارد 170جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونه مفتته سهله الفتح بارد 170جم",
"Product_EN": "Dolphin Tuna Crumble Easy To Open Cold 170 gm",
"Product_Id": "00009610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9605,
"name": "كيرى جبنه كريمى بلوك 1 كجم",
"price": 145,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه كريمى بلوك 1 كجم",
"Product_EN": "Kiri Block Cream Cheese 1 kg",
"Product_Id": "00009611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9606,
"name": "بريل سائل تنظيف اطباق 600 مل",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريل سائل تنظيف اطباق 600 مل",
"Product_EN": null,
"Product_Id": "00009613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9607,
"name": "دولفين تونة مفتتة سهلة الفتح حار 140 جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دولفين تونة مفتتة سهلة الفتح حار 140 جم",
"Product_EN": "Dolphin Tuna Crumble Easy To Open Hot 140 gm",
"Product_Id": "00009615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9608,
"name": "كوكى شيش طاووق مشوى 350 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى شيش طاووق مشوى 350 جم",
"Product_EN": "Koki Grilled Shish Tawook 350 gm",
"Product_Id": "00009616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9609,
"name": "كوكى شاورما دجاج 350 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كوكى شاورما دجاج 350 جم",
"Product_EN": "Koki Chicken Shawarma 350 gm",
"Product_Id": "00009617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9610,
"name": "زاهر عسل نحل مكسرات 430جم",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر عسل نحل مكسرات 430جم",
"Product_EN": "Zaher Honey w Nuts 430 g",
"Product_Id": "00009618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9611,
"name": "دومتى جبنه فيتا صفراء مشطشطه 250 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دومتى جبنه فيتا صفراء مشطشطه 250 جم",
"Product_EN": "Domty Cheese Feta Yellow Spicy 250 gm",
"Product_Id": "00009619 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9612,
"name": "الحلوه حلاوة طحينيه 750 جم",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الحلوه حلاوة طحينيه 750 جم",
"Product_EN": "El Helwa Halawa Tahini Chocolate 620 gm",
"Product_Id": "00009620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9613,
"name": "حلوانى معمول تمر 30 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى معمول تمر 30 جم",
"Product_EN": "Halwani Maamoul Dates 30 gm ",
"Product_Id": "00009621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9614,
"name": "باناسونيك حجر طرش 2 حجر",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "باناسونيك حجر طرش 2 حجر",
"Product_EN": null,
"Product_Id": "00009622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9615,
"name": "سونى حجر طرش 2 حجر",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "سونى حجر طرش 2 حجر",
"Product_EN": null,
"Product_Id": "00009623 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9616,
"name": "توبليرون شيكولاته دارك 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توبليرون شيكولاته دارك 100 جم",
"Product_EN": null,
"Product_Id": "00009624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9617,
"name": "كيت كات شوكولاتة ويفر مينى لوتس 122.5 جم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة ويفر مينى لوتس 122.5 جم",
"Product_EN": "Kitkat Chocolate Wafer Mini Lotus 122.5 gm",
"Product_Id": "00009625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9618,
"name": "اوزمو كونو شيكولاته 24 جم * 2 ق",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوزمو كونو شيكولاته 24 جم * 2 ق",
"Product_EN": null,
"Product_Id": "00009626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9619,
"name": "اوزمو هوبو شيكولاته",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اوزمو هوبو شيكولاته",
"Product_EN": "Ozmo Hoppo Chocolate ",
"Product_Id": "00009627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9620,
"name": "ريتر سبورت شوكولاتة برقائق الذره 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شوكولاتة برقائق الذره 100 جم",
"Product_EN": "Ritter Sport Chocolate with Corn Flakes 100 gm",
"Product_Id": "00009628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9621,
"name": "ريتر سبورت شيكولاته برلين 100 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته برلين 100 جم",
"Product_EN": null,
"Product_Id": "00009629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9622,
"name": "ريتر سبورت شيكولاته زبيب وبندق 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته زبيب وبندق 100 جم",
"Product_EN": "",
"Product_Id": "00009630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9623,
"name": "ريتر سبورت شوكولاته قمح وزبادى 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شوكولاته قمح وزبادى 100 جم",
"Product_EN": "Ritter Sport Chocolate Wheat & Yogurt 100 gm",
"Product_Id": "00009631 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9624,
"name": "ريتر سبورت شيكولاته بندق 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته بندق 100 جم",
"Product_EN": null,
"Product_Id": "00009632 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9625,
"name": "ريتر سبورت شيكولاته كراميل100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته كراميل100 جم",
"Product_EN": null,
"Product_Id": "00009633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9626,
"name": "ريتر سبورت شيكولاته موس الكاكاو 100 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريتر سبورت شيكولاته موس الكاكاو 100 جم",
"Product_EN": null,
"Product_Id": "00009634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9627,
"name": "ميلكا شوكولاتة اكسترا كاكاو 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة اكسترا كاكاو 100 جم",
"Product_EN": "Milka Extra Cocoa Chocolate 100 gm",
"Product_Id": "00009635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9628,
"name": "ميلكا شوكولاتة توت 85 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة توت 85 جم",
"Product_EN": "Milka Raspberry Chocolate 85 gm",
"Product_Id": "00009636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9629,
"name": "ميلكا شيكولاتة اوريو براوني 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شيكولاتة اوريو براوني 100 جم",
"Product_EN": "Milka OREO Chocolate 90 gm",
"Product_Id": "00009638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9630,
"name": "ميلكا شوكولاتة بندق & توت 90 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة بندق & توت 90 جم",
"Product_EN": "Milka Hazelnut & Raspberry Chocolate 90 gm",
"Product_Id": "00009639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9631,
"name": "ميلكا شوكولاتة دارك 90 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شوكولاتة دارك 90 جم",
"Product_EN": "Milka Dark Chocolate 90 gm",
"Product_Id": "00009640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9632,
"name": "شيكو هامتو اسبريد",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيكو هامتو اسبريد",
"Product_EN": null,
"Product_Id": "00009642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9633,
"name": "همتو تيكا كونو ايس كريم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "همتو تيكا كونو ايس كريم",
"Product_EN": null,
"Product_Id": "00009643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9634,
"name": "لمار عصير برتقال 230 مل",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "لمار عصير برتقال 230 مل",
"Product_EN": "Lamar Orange Juice - 230 ml",
"Product_Id": "00009644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9635,
"name": "كورنو كوب 12 اونز",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو كوب 12 اونز",
"Product_EN": null,
"Product_Id": "00009645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9636,
"name": "كورنو شاليموه سوسته",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو شاليموه سوسته",
"Product_EN": null,
"Product_Id": "00009646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9637,
"name": "كورنو سكينه ابيض شفاف",
"price": 0.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو سكينه ابيض شفاف",
"Product_EN": null,
"Product_Id": "00009647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9638,
"name": "كورنو شوكه ابيض شفاف",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "كورنو شوكه ابيض شفاف",
"Product_EN": null,
"Product_Id": "00009648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9639,
"name": "ميلكا شوكولاتة فراوله 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلكا شوكولاتة فراوله 100 جم",
"Product_EN": "Milka Strawberry Chocolate 100 gm",
"Product_Id": "00009649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9640,
"name": "الشرق سكر 1 كجم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشرق سكر 1 كجم",
"Product_EN": null,
"Product_Id": "00009650 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9641,
"name": "كاميل صويا صوص غامق 150 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كاميل صويا صوص غامق 150 مل",
"Product_EN": null,
"Product_Id": "00009651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9642,
"name": "كاميل صويا صوص فاتح 150 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كاميل صويا صوص فاتح 150 مل",
"Product_EN": null,
"Product_Id": "00009652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9643,
"name": "فروتى عصير برتقال بودر 25 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فروتى عصير برتقال بودر 25 جم",
"Product_EN": "Fruity Orange Juice Powder 25 gm",
"Product_Id": "00009653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9644,
"name": "فروتى عصير اناناس بودر 25 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فروتى عصير اناناس بودر 25 جم",
"Product_EN": "Fruity Pineapple Juice Powder 25 gm",
"Product_Id": "00009654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9645,
"name": "فريكو جبنه اولد ماستر وزن",
"price": 240,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "فريكو جبنه اولد ماستر وزن",
"Product_EN": "Frico Old Master Cheese - Scalable",
"Product_Id": "00009655 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9646,
"name": "ديتول سائل غسيل ايدى زبده الشيا والعسل 200 مل ",
"price": 37,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديتول سائل غسيل ايدى زبده الشيا والعسل 200 مل ",
"Product_EN": "Dettol Hand Wash Shea Butter & Honey 200 ml",
"Product_Id": "00009656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9647,
"name": "بيتى عصير مانجو 1 لتر",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيتى عصير مانجو 1 لتر",
"Product_EN": "Beyti Mango juice 1 L",
"Product_Id": "00009658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9648,
"name": "المراعى حليب كامل الدسم 200 مل",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "المراعى حليب كامل الدسم 200 مل",
"Product_EN": "Al Marai Full Cream Milk 200 ml",
"Product_Id": "00009659 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9649,
"name": "زاهر مخلل طبيعى مشكل بوليف 2 كجم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخلل طبيعى مشكل بوليف 2 كجم",
"Product_EN": null,
"Product_Id": "00009662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9650,
"name": "زاهر مخبوزات برازق سورى 500 جم",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر مخبوزات برازق سورى 500 جم",
"Product_EN": "Zaher Syrian Barazik 500 g",
"Product_Id": "00009663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9651,
"name": "شيفى ميكس صوص الجبنة 130 جم",
"price": 27.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس صوص الجبنة 130 جم",
"Product_EN": null,
"Product_Id": "00015370 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9652,
"name": "شيفى ميكس تسبيكة الطماطم 120 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس تسبيكة الطماطم 120 جم",
"Product_EN": null,
"Product_Id": "00015371 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9653,
"name": "شيفى ميكس بهارات طعم الشطة والليمون 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس بهارات طعم الشطة والليمون 90 جم",
"Product_EN": null,
"Product_Id": "00015372 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9654,
"name": "شيفى ميكس بهارات طعم الكباب 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس بهارات طعم الكباب 90 جم",
"Product_EN": null,
"Product_Id": "00015373 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9655,
"name": "شيفى ميكس بهارات طعم البيتزا 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس بهارات طعم البيتزا 90 جم",
"Product_EN": null,
"Product_Id": "00015374 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9656,
"name": "شيفى ميكس بهارات طعم الفراخ 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس بهارات طعم الفراخ 90 جم",
"Product_EN": null,
"Product_Id": "00015375 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9657,
"name": "شيفى ميكس بهارات طعم الطماطم 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس بهارات طعم الطماطم 90 جم",
"Product_EN": null,
"Product_Id": "00015376 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9658,
"name": "شيفى ميكس بهارات طعم الجبنة 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس بهارات طعم الجبنة 90 جم",
"Product_EN": null,
"Product_Id": "00015377 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9659,
"name": "شيفى ميكس توابل الشرق 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس توابل الشرق 90 جم",
"Product_EN": null,
"Product_Id": "00015378 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9660,
"name": "شيفى ميكس فلافى سجق 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس فلافى سجق 90 جم",
"Product_EN": null,
"Product_Id": "00015379 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9661,
"name": "شيفى ميكس فلافى جبنة حارة 90 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيفى ميكس فلافى جبنة حارة 90 جم",
"Product_EN": null,
"Product_Id": "00015380 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9662,
"name": "دانيت فراولة وكريمة 75 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانيت فراولة وكريمة 75 جم",
"Product_EN": "Danette Strawberry & Cream 75 gm",
"Product_Id": "00015382 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9663,
"name": "ستورك ريزن توفى بالشيكولاتة 45 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ريزن توفى بالشيكولاتة 45 جم",
"Product_EN": null,
"Product_Id": "00015383 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9664,
"name": "ماكسيون شوكولاتة فراولة باللبن 33 جم",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شوكولاتة فراولة باللبن 33 جم",
"Product_EN": null,
"Product_Id": "00015384 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9665,
"name": "ماكسيون شوكولاته مره 33 جم ",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماكسيون شوكولاته مره 33 جم ",
"Product_EN": null,
"Product_Id": "00015385 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9666,
"name": "مونارك مشروم كامل 400 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مونارك مشروم كامل 400 جم",
"Product_EN": null,
"Product_Id": "00015387 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9667,
"name": "جرينز بيكنج بودر 100 جم ",
"price": 11.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جرينز بيكنج بودر 100 جم ",
"Product_EN": null,
"Product_Id": "00015388 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9668,
"name": "بيبيتو مارشملو رينبو 60 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبيتو مارشملو رينبو 60 جم",
"Product_EN": null,
"Product_Id": "00015389 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9669,
"name": "بيبيتو مارشيملو بطيخ 60 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيبيتو مارشيملو بطيخ 60 جم",
"Product_EN": null,
"Product_Id": "00015390 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9670,
"name": "مونارك زبده فول سوداني كرانشي 510 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مونارك زبده فول سوداني كرانشي 510 جم",
"Product_EN": null,
"Product_Id": "00015392 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9671,
"name": "برسيل مسحوق غسيل يدوى لافندر 160 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق غسيل يدوى لافندر 160 جم",
"Product_EN": null,
"Product_Id": "00015393 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9672,
"name": "دانون اويكو زبادى لايت 170 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اويكو زبادى لايت 170 جم",
"Product_EN": "Danone Oiko Yogurt Light 170 gm",
"Product_Id": "00015394 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9673,
"name": "عطاره . فاصوليا حمراء وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فاصوليا حمراء وزن",
"Product_EN": "Red Beans - Scalable ",
"Product_Id": "00015396 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9674,
"name": "وايت مناديل سحب 750 منديل * 2 ق",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "وايت مناديل سحب 750 منديل * 2 ق",
"Product_EN": null,
"Product_Id": "00015397 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9675,
"name": "تيميز شوكو بيلو 450 جم ",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو بيلو 450 جم ",
"Product_EN": "Temmy's Choco Pillow 450 gm ",
"Product_Id": "00015400 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9676,
"name": "تيميز شوكو رايس 300 جم ",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو رايس 300 جم ",
"Product_EN": "Temmy's Choco Rice 300 gm ",
"Product_Id": "00015401 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9677,
"name": "تيميز شوكو بوبس 300 جم ",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز شوكو بوبس 300 جم ",
"Product_EN": "Temmy's Choco Pops 300 gm ",
"Product_Id": "00015402 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9678,
"name": "تيميز كورن فليكس 300 جم ",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز كورن فليكس 300 جم ",
"Product_EN": "Temmy's Corn Flakes 300 gm ",
"Product_Id": "00015403 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9679,
"name": "تيميز كورن فليكس 36 جم ",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز كورن فليكس 36 جم ",
"Product_EN": "Temmy's Corn Flakes 36 gm ",
"Product_Id": "00015404 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9680,
"name": "غطاء عبوة 750 او 1000 مستطيله",
"price": 0.64,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "غطاء عبوة 750 او 1000 مستطيله",
"Product_EN": null,
"Product_Id": "00015406 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9681,
"name": "عبوة 1000 ملى مستطيلة",
"price": 1.16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "عبوة 1000 ملى مستطيلة",
"Product_EN": null,
"Product_Id": "00015407 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9682,
"name": "تيميز كورن فليكس 600 جم ",
"price": 46,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز كورن فليكس 600 جم ",
"Product_EN": null,
"Product_Id": "00015408 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9683,
"name": "تايجر بطاطس شيبس فلفل حلو 38 - 42 جم - موقوف ",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس فلفل حلو 38 - 42 جم - موقوف ",
"Product_EN": "Tiger Potato Chips Sweet Pepper 38 - 42 gm",
"Product_Id": "00015409 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9684,
"name": "تايجر بطاطس شيبس فلفل حلو 68 - 78 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس فلفل حلو 68 - 78 جم",
"Product_EN": "Tiger Potato Chips Sweet Pepper 68 - 78 gm",
"Product_Id": "00015410 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9685,
"name": "تايجر بطاطس شيبس فلفل حلو 156 - 175 جم - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس فلفل حلو 156 - 175 جم - موقوف",
"Product_EN": "Tiger Potato Chips Sweet Pepper 156 - 175 gm",
"Product_Id": "00015411 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9686,
"name": "تايجر بطاطس شيبس بالطماطم 190 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالطماطم 190 جم",
"Product_EN": "Tiger Potato Chips Tomatoes 190 gm",
"Product_Id": "00015412 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9687,
"name": "تايجر بطاطس شيبس بالشطه 190 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالشطه 190 جم",
"Product_EN": "Tiger Potato Chips Chilli 190 gm",
"Product_Id": "00015413 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9688,
"name": "تايجر بطاطس شيبس بالجبنه متبله 190 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالجبنه متبله 190 جم",
"Product_EN": "Tiger Potato Chips Cheese Seasoned 190 gm",
"Product_Id": "00015414 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9689,
"name": "تايجر بطاطس شيبس بالطماطم 68 - 78 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالطماطم 68 - 78 جم",
"Product_EN": "Tiger Potato Chips Tomato 68 - 78 gm",
"Product_Id": "00015415 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9690,
"name": "تايجر بطاطس شيبس بالشطة والليمون 58 - 68 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالشطة والليمون 58 - 68 جم",
"Product_EN": "Tiger Potato Chips Chili & Lemon 58 - 68 gm",
"Product_Id": "00015416 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9691,
"name": "تايجر بطاطس شيبس بالجبنة متبلة 58 - 68 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالجبنة متبلة 58 - 68 جم",
"Product_EN": "Tiger Potato Chips Seasoned Cheese 58 - 68 gm",
"Product_Id": "00015417 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9692,
"name": "تايجر بطاطس شيبس بالكباب 58 - 68 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالكباب 58 - 68 جم",
"Product_EN": "Tiger Potato Chips Kebab 58 - 68 gm",
"Product_Id": "00015418 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9693,
"name": "تايجر بطاطس شيبس بالفراخ 58 - 68 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالفراخ 58 - 68 جم",
"Product_EN": "Tiger Potato Chips Chicken 58 - 68 gm",
"Product_Id": "00015419 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9694,
"name": "تايجر بطاطس شيبس بالكباب 68 - 78 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالكباب 68 - 78 جم",
"Product_EN": "Tiger Potato Chips Kebab 68 - 78 gm",
"Product_Id": "00015420 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9695,
"name": "فيبا سائل تنظيف اطباق ليمون اخضر 2 لتر",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فيبا سائل تنظيف اطباق ليمون اخضر 2 لتر",
"Product_EN": "Feba Liquid Dish Cleaner Green Limon 2 L",
"Product_Id": "00015421 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9696,
"name": "تايجر بطاطس شيبس بالفراخ 68 - 78 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالفراخ 68 - 78 جم",
"Product_EN": "Tiger Potato Chips Chicken 68 - 78 gm",
"Product_Id": "00015422 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9697,
"name": "تايجر بطاطس شيبس بالجبنه 68 - 78 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالجبنه 68 - 78 جم",
"Product_EN": "Tiger Potato Chips Cheese 68 - 78 gm",
"Product_Id": "00015424 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9698,
"name": "تايجر بطاطس شيبس بالشطة والليمون 68 - 78 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالشطة والليمون 68 - 78 جم",
"Product_EN": "Tiger Potato Chips Chili & Lemon 68 - 78 gm",
"Product_Id": "00015425 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9699,
"name": "تايجر بطاطس شيبس بالجبنة متبلة 68 - 78 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالجبنة متبلة 68 - 78 جم",
"Product_EN": "Tiger Potato Chips Cheese Seasoned 68 - 78 gm",
"Product_Id": "00015426 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9700,
"name": "كونو كونز بيتزا 77 - 88 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كونو كونز بيتزا 77 - 88 جم",
"Product_EN": "Konno Cones Pizza 77 - 88 gm",
"Product_Id": "00015427 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9701,
"name": "كونو بافس بالفلفل الحلو 70 - 80 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كونو بافس بالفلفل الحلو 70 - 80 جم",
"Product_EN": "Cono Puffs Sweet Chili 70 - 80 gm",
"Product_Id": "00015429 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9702,
"name": "كونو بافس بالطماطم 70 - 80 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كونو بافس بالطماطم 70 - 80 جم",
"Product_EN": "Cono Puffs With Tomato 70 - 80 gm",
"Product_Id": "00015430 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9703,
"name": "كونو كونز جبنه حريقه 78 - 88 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كونو كونز جبنه حريقه 78 - 88 جم",
"Product_EN": "Cone Cones Fire Cheese 79 - 88 gm",
"Product_Id": "00015431 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9704,
"name": "تايجر بطاطس شيبس بالطماطم 126 - 136 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالطماطم 126 - 136 جم",
"Product_EN": "Tiger Potato Chips Tomatoes 126 - 136 gm",
"Product_Id": "00015432 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9705,
"name": "تايجر بطاطس شيبس بالشطه والليمون 126 - 136 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالشطه والليمون 126 - 136 جم",
"Product_EN": "Tiger Potato Chips Chilli &Lemon 126 - 136 gm",
"Product_Id": "00015433 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9706,
"name": "تايجر بطاطس شيبس بالجبنه المتبله 126 - 136 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالجبنه المتبله 126 - 136 جم",
"Product_EN": "Tiger Potato Chips Seasoned Cheese 126 - 136 gm",
"Product_Id": "00015434 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9707,
"name": "تايجر بطاطس شيبس بالفلفل الحلو 126 - 136 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالفلفل الحلو 126 - 136 جم",
"Product_EN": "Tiger Potato Chips Sweet Chili 126 - 136 gm",
"Product_Id": "00015435 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9708,
"name": "تايجر بطاطس شيبس باربيكيو 38 - 42 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس باربيكيو 38 - 42 جم",
"Product_EN": "Tiger Potato Chips BBQ 38 - 42 gm",
"Product_Id": "00015436 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9709,
"name": "بيج بطاطس شيبس بالطماطم 44 - 49 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيج بطاطس شيبس بالطماطم 44 - 49 جم",
"Product_EN": "Big Potato Chips Tomato 44 - 49 gm",
"Product_Id": "00015437 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9710,
"name": "بيج بطاطس شيبس بالشطه والليمون 44 - 49 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيج بطاطس شيبس بالشطه والليمون 44 - 49 جم",
"Product_EN": "Big Potato Chips with Chilli & Lemon 44 - 49 gm",
"Product_Id": "00015438 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9711,
"name": "بيج بطاطس شيبس بالجبنه متبله 44 - 49 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيج بطاطس شيبس بالجبنه متبله 44 - 49 جم",
"Product_EN": "Big Potato Chips With Cheese Seasoned 44 - 49 gm",
"Product_Id": "00015439 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9712,
"name": "بيج بطاطس شيبس بالفلفل الحلو 44 - 49 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيج بطاطس شيبس بالفلفل الحلو 44 - 49 جم",
"Product_EN": "Big Potato Chips Sweet Chili 44 - 49 gm",
"Product_Id": "00015440 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9713,
"name": "تايجر كرانش شيبس تشيز برجر 35 - 39 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر كرانش شيبس تشيز برجر 35 - 39 جم",
"Product_EN": "Tiger Crunch Chips Cheeseburger 35 - 39 gm",
"Product_Id": "00015441 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9714,
"name": "تايجر كرانش شيبس جبنه ناتشو 35 - 39 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر كرانش شيبس جبنه ناتشو 35 - 39 جم",
"Product_EN": "Tiger Crunch Chips Nacho Cheese 35 - 39 gm",
"Product_Id": "00015442 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9715,
"name": "تايجر كرانش شيبس شطه مولعه 35 - 39 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر كرانش شيبس شطه مولعه 35 - 39 جم",
"Product_EN": "Tiger Crunchy Chips Hot Sauce 35 - 39 gm",
"Product_Id": "00015443 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9716,
"name": "بيج بطاطس شيبس بالطماطم 79 - 89 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيج بطاطس شيبس بالطماطم 79 - 89 جم",
"Product_EN": "Big Potato Chips Tomato 79 - 89 gm",
"Product_Id": "00015444 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9717,
"name": "بيج بطاطس شيبس بالشطه والليمون 79 - 89 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيج بطاطس شيبس بالشطه والليمون 79 - 89 جم",
"Product_EN": "Big Potato Chips with Chilli & Lemon 79 - 89 gm",
"Product_Id": "00015445 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9718,
"name": "بيج بطاطس شيبس بالجبنه المتبله 79 - 89 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيج بطاطس شيبس بالجبنه المتبله 79 - 89 جم",
"Product_EN": "Big Potato Chips With Seasoned Cheese 79 - 89 gm",
"Product_Id": "00015446 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9719,
"name": "بيج بطاطس شيبس بالفلفل الحلو 79 - 89 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيج بطاطس شيبس بالفلفل الحلو 79 - 89 جم",
"Product_EN": "Big Potato Chips Sweet Chili 79 - 89 gm",
"Product_Id": "00015447 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9720,
"name": "تايجر اكسترا شيبس تشيز برجر 65 - 75 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر اكسترا شيبس تشيز برجر 65 - 75 جم",
"Product_EN": "Tiger Extra Chips Cheeseburger 65 - 75 gm",
"Product_Id": "00015448 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9721,
"name": "تايجر اكسترا شيبس جبنه ناتشو 65 - 75 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر اكسترا شيبس جبنه ناتشو 65 - 75 جم",
"Product_EN": "Tiger Extra Chips Nacho Cheese 65 - 75 gm",
"Product_Id": "00015449 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9722,
"name": "تايجر اكسترا بطاطس شيبس بالشطه مولعه 65 - 75 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر اكسترا بطاطس شيبس بالشطه مولعه 65 - 75 جم",
"Product_EN": "Tiger Extra Potat Chips with Hot Sauce 65 - 75 gm",
"Product_Id": "00015450 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9723,
"name": "قلبظ مقرشات كاتشب نار 88 - 98 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قلبظ مقرشات كاتشب نار 88 - 98 جم",
"Product_EN": "Kalbaz Crisps ketchup Fire 88 - 98 gm",
"Product_Id": "00015451 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9724,
"name": "قلبظ مقرشات جبنه مشطشطه 88 - 98 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قلبظ مقرشات جبنه مشطشطه 88 - 98 جم",
"Product_EN": "Kalbaz Crisps Cheese Fire 88 - 98 gm",
"Product_Id": "00015452 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9725,
"name": "قلبظ مقرشات جبنه 88 - 98 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قلبظ مقرشات جبنه 88 - 98 جم",
"Product_EN": "Kalbaz CrispsCheese 88 - 98 gm",
"Product_Id": "00015453 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9726,
"name": "كونو بوب كورن بالجبنه 63 - 71 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كونو بوب كورن بالجبنه 63 - 71 جم",
"Product_EN": "Cono Pop Corn Cheese 63 - 71 gm",
"Product_Id": "00015454 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9727,
"name": "كونو بوب كورن باربيكيو حار 63 - 71 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كونو بوب كورن باربيكيو حار 63 - 71 جم",
"Product_EN": "Kono Pop Corn BBQ Hot 63 - 71 gm",
"Product_Id": "00015455 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9728,
"name": "تايجر بطاطس شيبس بالجبنة 38 - 42 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس بالجبنة 38 - 42 جم",
"Product_EN": "Tiger Potato Chips Cheese 38 - 42 gm",
"Product_Id": "00015456 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9729,
"name": "تايجر بطاطس شيبس باربيكو 38 - 42 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس باربيكو 38 - 42 جم",
"Product_EN": "Tiger Potato Chips BBQ 38 - 42 gm",
"Product_Id": "00015457 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9730,
"name": "تايجر بطاطس شيبس باربيكو 68 - 78 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تايجر بطاطس شيبس باربيكو 68 - 78 جم",
"Product_EN": "Tiger Potato Chips BBQ 68 - 78 gm",
"Product_Id": "00015458 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9731,
"name": "قلبظ مقرشات جبنة 28 - 34 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قلبظ مقرشات جبنة 28 - 34 جم",
"Product_EN": "Kalbaz Crisps Cheese 28 - 34 gm",
"Product_Id": "00015459 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9732,
"name": "قلبظ مقرشات كاتشب 28 - 34 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قلبظ مقرشات كاتشب 28 - 34 جم",
"Product_EN": "Kalbaz Crisps ketchup 28 - 34 gm",
"Product_Id": "00015460 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9733,
"name": "قلبظ مقرشات سجق حار 28 - 34 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "قلبظ مقرشات سجق حار 28 - 34 جم",
"Product_EN": "Kalbaz Crisps Sausage Spicy 28 - 34 g",
"Product_Id": "00015461 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9734,
"name": "كيرى جبنه مربعات بالقشطه 4 ق",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "كيرى جبنه مربعات بالقشطه 4 ق",
"Product_EN": "Kiri Cream Cheese 4 Pieces ",
"Product_Id": "00015462 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9735,
"name": "كورنو كونز فلفل حلو 78 - 88 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورنو كونز فلفل حلو 78 - 88 جم",
"Product_EN": "Corno Cones Sweet Pepper 78 - 88 gm",
"Product_Id": "00015463 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9736,
"name": "زاهر فلاتر لبن",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 14,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 8,
"Subcategory": "مستهلكات",
"Product_AR": "زاهر فلاتر لبن",
"Product_EN": null,
"Product_Id": "00015464 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9737,
"name": "هارفست فول مدمس بالليمون المعصفر 400 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "هارفست فول مدمس بالليمون المعصفر 400 جم",
"Product_EN": null,
"Product_Id": "00015465 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9738,
"name": "شيبسى عائلى بالباربيكيو الحلو 69 - 79 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى عائلى بالباربيكيو الحلو 69 - 79 جم",
"Product_EN": null,
"Product_Id": "00015466 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9739,
"name": "شيبسى عائلى فلفل اخضر حراق 69 - 79 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسى عائلى فلفل اخضر حراق 69 - 79 جم",
"Product_EN": null,
"Product_Id": "00015467 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9740,
"name": "نوفى تورتا اسفنجى مغطى بالشوكولاته 1 ق",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى تورتا اسفنجى مغطى بالشوكولاته 1 ق",
"Product_EN": "Novi Torta Sponge covered with Chocolate 1 Pieces ",
"Product_Id": "00015468 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9741,
"name": "نوفى تورتا اسفنجى XL مغطى بالشوكولاته البيضاء ",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى تورتا اسفنجى XL مغطى بالشوكولاته البيضاء ",
"Product_EN": "Novi Torta cake covered with white chocolate XL",
"Product_Id": "00015469 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9742,
"name": "نوفى تورتا XL كيك اسفنجى بالفراوله ",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى تورتا XL كيك اسفنجى بالفراوله ",
"Product_EN": "Novi Torta Sponge cake Strawberry XL ",
"Product_Id": "00015470 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9743,
"name": "نوفى بليزو ويفر بكريمه الشوكولاتة ",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى بليزو ويفر بكريمه الشوكولاتة ",
"Product_EN": "Novi Pleso Wafer With Chocolate Cream ",
"Product_Id": "00015471 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9744,
"name": "نوفى ستار شوكولاته 1 ق",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى ستار شوكولاته 1 ق",
"Product_EN": "Nova Star Chocolate 1 Pieces",
"Product_Id": "00015472 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9745,
"name": "جنجو جيلي كولا ساور 1 كيس",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جنجو جيلي كولا ساور 1 كيس",
"Product_EN": "Jingo Jelly Cola Sour 1 Bag",
"Product_Id": "00015473 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9746,
"name": "نوفى فنجرز مقرمشات مملحة بطعم البيتزا 40 - 44 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى فنجرز مقرمشات مملحة بطعم البيتزا 40 - 44 جم",
"Product_EN": "Novi Fingers Salted Crackers Pizza Flavor 40-44 gm",
"Product_Id": "00015474 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9747,
"name": "نوفى فنجرز مقرمشات بطعم جبنه ناتشو 40 - 44 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى فنجرز مقرمشات بطعم جبنه ناتشو 40 - 44 جم",
"Product_EN": "Novi Fingers Nacho Cheese Crackers 40-44 gm",
"Product_Id": "00015475 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9748,
"name": "نوفى سباجيتوس بطعم تفاح اخضر 1 ق",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى سباجيتوس بطعم تفاح اخضر 1 ق",
"Product_EN": "Novi Spaghetti With Green Apple 1 Pieces ",
"Product_Id": "00015477 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9749,
"name": "نوفى سباجيتوس بطعم الفراوله 1 ق",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى سباجيتوس بطعم الفراوله 1 ق",
"Product_EN": "Novi Spaghettos Strawberry 1 Pieces ",
"Product_Id": "00015478 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9750,
"name": "برسيل مسحوق غسيل عالي الرغوة برائحة اللافندر 2 ك",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق غسيل عالي الرغوة برائحة اللافندر 2 ك",
"Product_EN": null,
"Product_Id": "00015479 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9751,
"name": "كونو بافس جبنه من الاخر 70 - 80 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كونو بافس جبنه من الاخر 70 - 80 جم",
"Product_EN": "Cono puffs cheese from the other 70 - 80 gm",
"Product_Id": "00015480 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9752,
"name": "اوكسى سائل تنظيف اطباق ليمون اخضر2.5 لتر+2رول مطبخ",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اوكسى سائل تنظيف اطباق ليمون اخضر2.5 لتر+2رول مطبخ",
"Product_EN": null,
"Product_Id": "00015482 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9753,
"name": "هيربال ايسنز شامبو بزيت الارغان المغربي 400 مل",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيربال ايسنز شامبو بزيت الارغان المغربي 400 مل",
"Product_EN": null,
"Product_Id": "00015483 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9754,
"name": "بانتين شامبو وداعا لتغيرات الصيف 400 مل",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو وداعا لتغيرات الصيف 400 مل",
"Product_EN": null,
"Product_Id": "00015484 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9755,
"name": "بانتين شامبو وداعا لتغيرات الصيف 400 مل ",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "بانتين شامبو وداعا لتغيرات الصيف 400 مل ",
"Product_EN": null,
"Product_Id": "00015485 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9756,
"name": "هيد اند شولدرز انتعاش الجليد 400 مل",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "هيد اند شولدرز انتعاش الجليد 400 مل",
"Product_EN": null,
"Product_Id": "00015486 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9757,
"name": "الويز دبل طويل جدا نعومة الريش 16*18 فوطه",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز دبل طويل جدا نعومة الريش 16*18 فوطه",
"Product_EN": null,
"Product_Id": "00015487 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9758,
"name": "الويز ملمس قطنى فردى طويل نعومة الريش 16*8 فوطه",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ملمس قطنى فردى طويل نعومة الريش 16*8 فوطه",
"Product_EN": null,
"Product_Id": "00015488 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9759,
"name": "الويز ملمس قطنى دبل طويل نعومة الريش 16*8 فوطه",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز ملمس قطنى دبل طويل نعومة الريش 16*8 فوطه",
"Product_EN": null,
"Product_Id": "00015489 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9760,
"name": "اولويز ليلى فوط صحيه طويل جدا 12 فوطه",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز ليلى فوط صحيه طويل جدا 12 فوطه",
"Product_EN": null,
"Product_Id": "00015490 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9761,
"name": "اولويز الترا فوط صحيه طويل جدا 16 فوطه",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اولويز الترا فوط صحيه طويل جدا 16 فوطه",
"Product_EN": null,
"Product_Id": "00015491 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9762,
"name": "الويز فوط صحيه الترا دوبل طويل جدا 18 فوطه",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فوط صحيه الترا دوبل طويل جدا 18 فوطه",
"Product_EN": null,
"Product_Id": "00015492 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9763,
"name": "الويز فوط صحيه الترا الماسيه طويله 14 فوطه ",
"price": 35,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "الويز فوط صحيه الترا الماسيه طويله 14 فوطه ",
"Product_EN": null,
"Product_Id": "00015493 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9764,
"name": "زاهر تارت مغلف مانجو . نوتيلا بندق . بلح",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر تارت مغلف مانجو . نوتيلا بندق . بلح",
"Product_EN": null,
"Product_Id": "00015495 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9765,
"name": "زاهر تارت مغلف كراميل عين جمل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر تارت مغلف كراميل عين جمل",
"Product_EN": null,
"Product_Id": "00015496 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9766,
"name": "زاهر ديسباسيتو شفاف صغير بندق \/ لوتس \/ مكس",
"price": 19,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديسباسيتو شفاف صغير بندق \/ لوتس \/ مكس",
"Product_EN": null,
"Product_Id": "00015497 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9767,
"name": "زاهر ديسباسيتو شفاف صغير كرسبى",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 16,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 11,
"Subcategory": "زاهر اغذية جافة",
"Product_AR": "زاهر ديسباسيتو شفاف صغير كرسبى",
"Product_EN": null,
"Product_Id": "00015498 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9768,
"name": "سيجنال كومبليت بيكربونات الصوديوم 50 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال كومبليت بيكربونات الصوديوم 50 مل",
"Product_EN": "Signal Complete Baking Soda 50 ml",
"Product_Id": "00015500 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9769,
"name": "سيجنال كومبليت بيكربونات الصوديوم 100 مل",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "سيجنال كومبليت بيكربونات الصوديوم 100 مل",
"Product_EN": "Signal Complete Baking Soda 100 ml ",
"Product_Id": "00015501 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9770,
"name": "لايف بوى صابون انتعاش البرودة 125 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوى صابون انتعاش البرودة 125 جم",
"Product_EN": "Lifebuoy Soap Cool Fresh 125 gm",
"Product_Id": "00015502 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9771,
"name": "لايف بوي صابون انتعاش الليمون 125 جم",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي صابون انتعاش الليمون 125 جم",
"Product_EN": "Lifebuoy Lemon Fresh Soap Bar 125 gm ",
"Product_Id": "00015503 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9772,
"name": "لايف بوي صابون انتعاش الليمون 175 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي صابون انتعاش الليمون 175 جم",
"Product_EN": "Lifebuoy Lemon Fresh Soap Bar 175 gm ",
"Product_Id": "00015504 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9773,
"name": "لايف بوي صابون انتعاش البرودة 175 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي صابون انتعاش البرودة 175 جم",
"Product_EN": "Lifebuoy Soap Cool Fresh 175 gm",
"Product_Id": "00015505 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9774,
"name": "لايف بوي صابون العناية الناعمة ضد للبكتيريا 175 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "لايف بوي صابون العناية الناعمة ضد للبكتيريا 175 جم",
"Product_EN": "Lifebuoy Anti-Bacterial Soft Care Soap 175 gm",
"Product_Id": "00015506 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9775,
"name": "صن لايت مسحوق الزهور الفرنسي و الياسمين 2.5 جم",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:45:59",
"updated_at": "2021-11-01 19:45:59",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "صن لايت مسحوق الزهور الفرنسي و الياسمين 2.5 جم",
"Product_EN": "Sunlight Powder French Rose & Jasmine 2.5 gm",
"Product_Id": "00015507 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9776,
"name": "عطاره . بلكم وزن",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بلكم وزن",
"Product_EN": "Attara Bilakum - Scalable ",
"Product_Id": "00015508 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9777,
"name": "عطاره . فلارس وزن",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . فلارس وزن",
"Product_EN": "Attara Flalaris - Scalable ",
"Product_Id": "00015509 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9778,
"name": "عطاره . دنيبة وزن",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . دنيبة وزن",
"Product_EN": "Attara Deniba - Scalable ",
"Product_Id": "00015510 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9779,
"name": "داوني مركز منعم ملابس مضاد للبكتيريا 1.5 لتر",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "داوني مركز منعم ملابس مضاد للبكتيريا 1.5 لتر",
"Product_EN": "DOWNY ANTIBAC Concentrate Fabric Softener 1.5L",
"Product_Id": "00015511 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9780,
"name": "هاى جين مناديل مبلله برائحة الليمون 80 منديل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاى جين مناديل مبلله برائحة الليمون 80 منديل",
"Product_EN": "Hi-Jin Wet Wipes Lemon Scent 80 Wipes",
"Product_Id": "00015512 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9781,
"name": "هاى جين مناديل مبلله بيبى مركب للاطفال 80 منديل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاى جين مناديل مبلله بيبى مركب للاطفال 80 منديل",
"Product_EN": "Hygiene Baby Compound Wet Wipes 80 Wipes",
"Product_Id": "00015513 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9782,
"name": "هاى جين مناديل مبلله بيبى للبشره الحساسه 80 منديل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاى جين مناديل مبلله بيبى للبشره الحساسه 80 منديل",
"Product_EN": "Hygiene Wet Wipes Baby For Sensitive Skin 80 Wipes",
"Product_Id": "00015514 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9783,
"name": "هاى جين مناديل مبلله كول واتر 80 منديل",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاى جين مناديل مبلله كول واتر 80 منديل",
"Product_EN": "Hygiene Wet Wipes Cool Water 80 Wipes",
"Product_Id": "00015515 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9784,
"name": "حلوانى مربى مشمش 750 جم - عرض",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى مشمش 750 جم - عرض",
"Product_EN": null,
"Product_Id": "00015516 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9785,
"name": "حلوانى مربى تين 750 جم - عرض",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى تين 750 جم - عرض",
"Product_EN": null,
"Product_Id": "00015517 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9786,
"name": "حلوانى مربى فراوله 750 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "حلوانى مربى فراوله 750 جم",
"Product_EN": "Halawani Strawberry Jam 750 gm ",
"Product_Id": "00015518 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9787,
"name": "سن كولا مشروب 250 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سن كولا مشروب 250 مل",
"Product_EN": "Sun Cola Drink 250 ml ",
"Product_Id": "00015519 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9788,
"name": "نوفى شوتس شوكولاته 29 - 33 جم",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى شوتس شوكولاته 29 - 33 جم",
"Product_EN": "Novy Shots Chocolate 29 - 33 gm ",
"Product_Id": "00015520 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9789,
"name": "نوفى فنجرز مقرمشات مالحة بطعم الباربكيو 40 - 44 ج",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى فنجرز مقرمشات مالحة بطعم الباربكيو 40 - 44 ج",
"Product_EN": null,
"Product_Id": "00015521 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9790,
"name": "نوفى جيرو جوز هند مغطى بالشوكولاته 1 ق",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى جيرو جوز هند مغطى بالشوكولاته 1 ق",
"Product_EN": null,
"Product_Id": "00015522 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9791,
"name": "نوفى ويزو كرسبي مغطى بالشوكولاته 1 ق",
"price": 2,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نوفى ويزو كرسبي مغطى بالشوكولاته 1 ق",
"Product_EN": null,
"Product_Id": "00015523 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9792,
"name": "فيروز مشروب شعير اناناس زجاج 275 مل",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيروز مشروب شعير اناناس زجاج 275 مل",
"Product_EN": "Fayrouz Pineapple Malt Glass 275 ml ",
"Product_Id": "00015524 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9793,
"name": "بيريل مشروب شعير زجاج 275 مل",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيريل مشروب شعير زجاج 275 مل",
"Product_EN": "Birell Malt Drink Glass 275 ml",
"Product_Id": "00015525 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9794,
"name": "بريكس منظف و مطهر منزلى برائحة الليمون 730 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "بريكس منظف و مطهر منزلى برائحة الليمون 730 جم",
"Product_EN": null,
"Product_Id": "00015526 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9795,
"name": "عطاره . كحل الشريفين 1 ق",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . كحل الشريفين 1 ق",
"Product_EN": null,
"Product_Id": "00015527 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9796,
"name": "عطاره . بخور عود قمع 1 ق",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور عود قمع 1 ق",
"Product_EN": null,
"Product_Id": "00015528 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9797,
"name": "عطاره . بخور مسك قمع 1 ق",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور مسك قمع 1 ق",
"Product_EN": null,
"Product_Id": "00015529 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9798,
"name": "عطاره . بخور صندل قمع 1 ق",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور صندل قمع 1 ق",
"Product_EN": null,
"Product_Id": "00015530 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9799,
"name": "عطاره . بخور عنبر قمع 1 ق",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . بخور عنبر قمع 1 ق",
"Product_EN": null,
"Product_Id": "00015531 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9800,
"name": "سبايسي خلطة توابل الدجاج المقلي 90 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة توابل الدجاج المقلي 90 جم",
"Product_EN": "Spysi Seasoning Fried Chicken 90 gm",
"Product_Id": "00015532 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9801,
"name": "سبايسي خلطة توابل المقلى نصف الحارة 90 جم",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة توابل المقلى نصف الحارة 90 جم",
"Product_EN": "Spysi Medium Hot Fried Chicken Spice Mix 90 gm ",
"Product_Id": "00015533 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9802,
"name": "سبايسي خلطة توابل الدجاج المقلى الحارة 90 جم",
"price": 14,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة توابل الدجاج المقلى الحارة 90 جم",
"Product_EN": "Spysi Seasoning Spicy Fried Chicken 90 gm",
"Product_Id": "00015534 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9803,
"name": "سبايسي خلطة توابل للشاورما اللحم و الدجاج 90 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة توابل للشاورما اللحم و الدجاج 90 جم",
"Product_EN": "Spysi Seasoning Chicken & Meat Shawerma 90 gm",
"Product_Id": "00015535 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9804,
"name": "سبايسي خلطة الدجاج بالفرن أو المشوي 90 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة الدجاج بالفرن أو المشوي 90 جم",
"Product_EN": "Spysi Seasoning Grilled Chicken 90 gm",
"Product_Id": "00015536 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9805,
"name": "سبايسي خلطة البيف برجر 90 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة البيف برجر 90 جم",
"Product_EN": "Spysi Seasoning Beef Burger 90 gm",
"Product_Id": "00015537 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9806,
"name": "سبايسي خلطة توابل فاهيتا اللحم والدجاج 90 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة توابل فاهيتا اللحم والدجاج 90 جم",
"Product_EN": "Spysi Seasoning Fajita Mix Meat & Chicken 90 gm",
"Product_Id": "00015538 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9807,
"name": "سبايسى خلطة اجنحة الدجاج بصوص البافلو 90 جم",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسى خلطة اجنحة الدجاج بصوص البافلو 90 جم",
"Product_EN": "Spicy Seasoning Buffalo Wings 90 gm",
"Product_Id": "00015539 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9808,
"name": "سبايسي خلطة كفتة الحاتى 90 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة كفتة الحاتى 90 جم",
"Product_EN": "Spysi Seasoning Kofta 90 gm",
"Product_Id": "00015540 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9809,
"name": "سبايسي خلطة السمك المقلي او المشوي من 90 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة السمك المقلي او المشوي من 90 جم",
"Product_EN": "Spicy Seasoning Fried Or Grilled Fish 90 gm",
"Product_Id": "00015541 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9810,
"name": "سبايسي خلطة الشيش طاووق 90 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة الشيش طاووق 90 جم",
"Product_EN": "Spicy Seasoning Shish Tawook 90 gm ",
"Product_Id": "00015543 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9811,
"name": "سبايسي خلطة الدجاج الهندى 90 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسي خلطة الدجاج الهندى 90 جم",
"Product_EN": "Spysi Indian Chicken Mix 90 gm",
"Product_Id": "00015544 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9812,
"name": "سبايسى خلطة اجنحة الدجاج بصوص الباريكيو والعسل90جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبايسى خلطة اجنحة الدجاج بصوص الباريكيو والعسل90جم",
"Product_EN": "Spysi Seasoning Honey BBQ Wings & Ribs 90 gm",
"Product_Id": "00015545 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9813,
"name": "ميلرز خلطة توابل للأرز بطعم الدجاج 20 جم - كيس",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلرز خلطة توابل للأرز بطعم الدجاج 20 جم - كيس",
"Product_EN": "Miller's Chicken Rice Seasoning Mix 20 gm - Sack ",
"Product_Id": "00015546 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9814,
"name": "ميلرز خلطة توابل للأرز بطعم اللحم 20 جم - كيس",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلرز خلطة توابل للأرز بطعم اللحم 20 جم - كيس",
"Product_EN": "Miller's Rice Spice Beef Taste 20 gm - Sack ",
"Product_Id": "00015547 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9815,
"name": "ميلرز خلطة توابل للأرز بطعم الكاري 20 جم - كيس",
"price": 6.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلرز خلطة توابل للأرز بطعم الكاري 20 جم - كيس",
"Product_EN": "Miller's Curry Rice Spice Mix 20 gm - Sack ",
"Product_Id": "00015548 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9816,
"name": "دانون اكتيفيا حليب رايب لايت 220 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا حليب رايب لايت 220 جم",
"Product_EN": null,
"Product_Id": "00015549 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9817,
"name": "دانون اكتيفيا زبادى لايت 120 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا زبادى لايت 120 جم",
"Product_EN": null,
"Product_Id": "00015550 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9818,
"name": "دانون اكتيفيا زبادى طبيعى 120 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون اكتيفيا زبادى طبيعى 120 جم",
"Product_EN": null,
"Product_Id": "00015551 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9819,
"name": "روبارليس زبده فول سودانى ناعمه 227 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روبارليس زبده فول سودانى ناعمه 227 جم",
"Product_EN": null,
"Product_Id": "00015552 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9820,
"name": "روبارليس زبده فول سودانى خشنه 227 جم",
"price": 25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "روبارليس زبده فول سودانى خشنه 227 جم",
"Product_EN": null,
"Product_Id": "00015553 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9821,
"name": "ميلرز شوربة فورية نباتي بطعم الدجاج 100 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلرز شوربة فورية نباتي بطعم الدجاج 100 جم",
"Product_EN": null,
"Product_Id": "00015554 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9822,
"name": "ميلرز - شوربة فورية نباتي بطعم الدجاج 10 كيس",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلرز - شوربة فورية نباتي بطعم الدجاج 10 كيس",
"Product_EN": null,
"Product_Id": "00015555 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9823,
"name": "سبرينكـل خلطة توابـل لكـل الأكـلات عادي 90 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرينكـل خلطة توابـل لكـل الأكـلات عادي 90 جم",
"Product_EN": "Sprinkle Seasoning For All Purpose 90 gm",
"Product_Id": "00015556 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9824,
"name": "سبرينكـل خلطة توابـل لكـل الأكـلات حــار 90 جم",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرينكـل خلطة توابـل لكـل الأكـلات حــار 90 جم",
"Product_EN": "Sprinkle Hot All Purpose Seasoning 90 gm",
"Product_Id": "00015557 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9825,
"name": "سبرينكل توابل للبطاطس بطعم الكباب ملاحة 90 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سبرينكل توابل للبطاطس بطعم الكباب ملاحة 90 جم",
"Product_EN": "Sprinkle Kebab Seasoning For Fries 90 gm",
"Product_Id": "00015558 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9826,
"name": "برسيل جل اتوماتيك ورد 3.9 كجم ",
"price": 105,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اتوماتيك ورد 3.9 كجم ",
"Product_EN": null,
"Product_Id": "00015559 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9827,
"name": "عافية زيت عباد الشمس 2.200 لتر + الاسره سكر 500 جم",
"price": 79.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عافية زيت عباد الشمس 2.200 لتر + الاسره سكر 500 جم",
"Product_EN": null,
"Product_Id": "00015560 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9828,
"name": "اريال مسحوق اتوماتيك مضاد للبكتيريا 7 كجم",
"price": 235,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك مضاد للبكتيريا 7 كجم",
"Product_EN": null,
"Product_Id": "00015561 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9829,
"name": "اريال مسحوق اتوماتيك مضاد للبكتيريا 2 كجم",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك مضاد للبكتيريا 2 كجم",
"Product_EN": null,
"Product_Id": "00015562 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9830,
"name": "اريال مسحوق اتوماتيك مضاد للبكتيريا 5 كجم",
"price": 185,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "اريال مسحوق اتوماتيك مضاد للبكتيريا 5 كجم",
"Product_EN": null,
"Product_Id": "00015563 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9831,
"name": "توليدو ارز بسمتى هندى ابيض 2 كجم",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توليدو ارز بسمتى هندى ابيض 2 كجم",
"Product_EN": "Tolido white Indian Basmati Rice 2 kg",
"Product_Id": "00015564 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9832,
"name": "فنش سائل مزيل للبقع 900 جم * 2 قطعه",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فنش سائل مزيل للبقع 900 جم * 2 قطعه",
"Product_EN": null,
"Product_Id": "00015565 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9833,
"name": "ديتول سائل غسيل ايدى مغذى 200 مل 2+1 مجانا",
"price": 111,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول سائل غسيل ايدى مغذى 200 مل 2+1 مجانا",
"Product_EN": null,
"Product_Id": "00015566 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9834,
"name": "فلفيتا منعم منسوجات برائحه احلام سعيده 2 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفيتا منعم منسوجات برائحه احلام سعيده 2 كجم",
"Product_EN": null,
"Product_Id": "00015567 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9835,
"name": "فلفيتا منعم منسوجات برائحه اللافندر 2 كجم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فلفيتا منعم منسوجات برائحه اللافندر 2 كجم",
"Product_EN": null,
"Product_Id": "00015568 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9836,
"name": "جنرال سائل منظف ارضيات ياسمين 730 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "جنرال سائل منظف ارضيات ياسمين 730 جم",
"Product_EN": null,
"Product_Id": "00015569 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9837,
"name": "برسيل مسحوق اتوماتيك ابيض 2.5 كجم - عرض",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك ابيض 2.5 كجم - عرض",
"Product_EN": null,
"Product_Id": "00015571 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9838,
"name": "برسيل مسحوق برائحه اللافندر 6 كجم + جل 1 لتر",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق برائحه اللافندر 6 كجم + جل 1 لتر",
"Product_EN": null,
"Product_Id": "00015572 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9839,
"name": "برسيل مسحوق غسيل اتوماتيك لافندر 725 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق غسيل اتوماتيك لافندر 725 جم",
"Product_EN": null,
"Product_Id": "00015573 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9840,
"name": "برسيل مسحوق اتوماتيك برائحه الورد 6 كجم + جل 1 لتر",
"price": 170,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك برائحه الورد 6 كجم + جل 1 لتر",
"Product_EN": null,
"Product_Id": "00015574 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9841,
"name": "برسيل مسحوق اتوماتيك برائحه اللافندر 2.5 كجم -عرض ",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق اتوماتيك برائحه اللافندر 2.5 كجم -عرض ",
"Product_EN": null,
"Product_Id": "00015575 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9842,
"name": "فنش اقراص منظف غسالة الاطباق 13 قرص ثنائي خصم 40 %",
"price": 155,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فنش اقراص منظف غسالة الاطباق 13 قرص ثنائي خصم 40 %",
"Product_EN": null,
"Product_Id": "00015576 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9843,
"name": "هاربيك منظف تواليت برائحة الليمون 700 مل 2 قطعه",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "هاربيك منظف تواليت برائحة الليمون 700 مل 2 قطعه",
"Product_EN": null,
"Product_Id": "00015577 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9844,
"name": "فنش مسحوق غسيل اطباق برائحه الليمون 1 لتر 3 قطع",
"price": 275,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فنش مسحوق غسيل اطباق برائحه الليمون 1 لتر 3 قطع",
"Product_EN": null,
"Product_Id": "00015578 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9845,
"name": "ديتول سائل غسيل ايدى الاصلى 200 مل 2 +1 مجانا ",
"price": 111,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول سائل غسيل ايدى الاصلى 200 مل 2 +1 مجانا ",
"Product_EN": null,
"Product_Id": "00015579 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9846,
"name": "ديتول مناديل مبلله 20 منديل - عرض",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مناديل مبلله 20 منديل - عرض",
"Product_EN": null,
"Product_Id": "00015580 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9847,
"name": "رويال اعشاب نعناع 50 فلتر + مج",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب نعناع 50 فلتر + مج",
"Product_EN": null,
"Product_Id": "00015581 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9848,
"name": "رويال اعشاب ينسون 50 فلتر + مج",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب ينسون 50 فلتر + مج",
"Product_EN": null,
"Product_Id": "00015582 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9849,
"name": "رويال اعشاب ليمون و زنجبيل 50 فلتر + مج",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب ليمون و زنجبيل 50 فلتر + مج",
"Product_EN": null,
"Product_Id": "00015583 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9850,
"name": "رويال اعشاب كركديه 50 فلتر + مج",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "رويال اعشاب كركديه 50 فلتر + مج",
"Product_EN": null,
"Product_Id": "00015584 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9851,
"name": "جاجوار بافس كورن مقرمشات بطعم الجبنه 88 - 98 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جاجوار بافس كورن مقرمشات بطعم الجبنه 88 - 98 جم",
"Product_EN": null,
"Product_Id": "00015585 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9852,
"name": "جاجوار باف كورن مقرمشات بطعم الكاتشب 88 - 98 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جاجوار باف كورن مقرمشات بطعم الكاتشب 88 - 98 جم",
"Product_EN": null,
"Product_Id": "00015586 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9853,
"name": "برسيل مسحوق غسيل لافندر 75 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل مسحوق غسيل لافندر 75 جم",
"Product_EN": null,
"Product_Id": "00015587 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9854,
"name": "تمري فرخه كامله 900 - 950 جم",
"price": 53,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري فرخه كامله 900 - 950 جم",
"Product_EN": null,
"Product_Id": "00015588 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9855,
"name": "تمري فرخه كامله 900 - 1000 جم",
"price": 57,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري فرخه كامله 900 - 1000 جم",
"Product_EN": null,
"Product_Id": "00015589 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9856,
"name": "تمري فرخه كامله 1000 - 1100 جم",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري فرخه كامله 1000 - 1100 جم",
"Product_EN": null,
"Product_Id": "00015590 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9857,
"name": "تمري فرخه كامله 1100 - 1200 جم",
"price": 68,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري فرخه كامله 1100 - 1200 جم",
"Product_EN": null,
"Product_Id": "00015591 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9858,
"name": "تمري كبده و قوانص 500 جم",
"price": 27.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري كبده و قوانص 500 جم",
"Product_EN": null,
"Product_Id": "00015592 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9859,
"name": "تمري كبده فراخ 500 جم",
"price": 28,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري كبده فراخ 500 جم",
"Product_EN": null,
"Product_Id": "00015593 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9860,
"name": "تمري فيليه فراخ 1 كجم",
"price": 106,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري فيليه فراخ 1 كجم",
"Product_EN": null,
"Product_Id": "00015594 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9861,
"name": "تمري جناح فراخ 1 كجم",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري جناح فراخ 1 كجم",
"Product_EN": null,
"Product_Id": "00015595 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9862,
"name": "تمري اوراك فراخ 1 كجم",
"price": 49,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري اوراك فراخ 1 كجم",
"Product_EN": null,
"Product_Id": "00015596 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9863,
"name": "تمري دبوس فراخ 1 كجم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري دبوس فراخ 1 كجم",
"Product_EN": null,
"Product_Id": "00015597 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9864,
"name": "تمري شيش طاووك 1 كجم",
"price": 102,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "تمري شيش طاووك 1 كجم",
"Product_EN": null,
"Product_Id": "00015598 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9865,
"name": "دروو كيك مغطى بالشكولاته البيضاء",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دروو كيك مغطى بالشكولاته البيضاء",
"Product_EN": null,
"Product_Id": "00015599 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9866,
"name": "العملاق سوبر جل ارضيات 1 كجم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "العملاق سوبر جل ارضيات 1 كجم",
"Product_EN": null,
"Product_Id": "00015600 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9867,
"name": "العملاق سوبر جل ارضيات لافندر 1 كجم",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "العملاق سوبر جل ارضيات لافندر 1 كجم",
"Product_EN": null,
"Product_Id": "00015601 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9868,
"name": "نابولسى صابون زيت الزيتون 120 جم",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "نابولسى صابون زيت الزيتون 120 جم",
"Product_EN": null,
"Product_Id": "00015602 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9869,
"name": "ستاربكس كوفى مشروب قهوه اسبريسو كان 200 مل",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستاربكس كوفى مشروب قهوه اسبريسو كان 200 مل",
"Product_EN": null,
"Product_Id": "00015603 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9870,
"name": "لاكتيل زبادى طبيعى 3 ك",
"price": 67,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى طبيعى 3 ك",
"Product_EN": null,
"Product_Id": "00015604 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9871,
"name": "جاردينو كاتشب بارد اسطواني 500 جم",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جاردينو كاتشب بارد اسطواني 500 جم",
"Product_EN": null,
"Product_Id": "00015605 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9872,
"name": "ديفا سائل غسيل ايدى ياسمين 480 مل ",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 10,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 4,
"Subcategory": "تجميل",
"Product_AR": "ديفا سائل غسيل ايدى ياسمين 480 مل ",
"Product_EN": "Diva Hand Wash Liquid Jasmine 480 ml",
"Product_Id": "00015606 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9873,
"name": "هوكس جمبري لحم فاكيوم 200\/100 400 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "هوكس جمبري لحم فاكيوم 200\/100 400 جم",
"Product_EN": "Hawkes Shrimp Beef Vacuum 100\/200 400 gm",
"Product_Id": "00015607 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9874,
"name": "سافكول سردين بزيت دوار الشمس حار 120 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سافكول سردين بزيت دوار الشمس حار 120 جم",
"Product_EN": "Safcol Sardines in Sunflower Oil Hot 120 gm",
"Product_Id": "00015608 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9875,
"name": "سافكول سردين بزيت دوار الشمس بارد 120 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سافكول سردين بزيت دوار الشمس بارد 120 جم",
"Product_EN": "Safcol Sardines in Sunflower Oil Cold 120 gm",
"Product_Id": "00015609 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9876,
"name": "سافكول سردين بصلصة الطماطم البارده 120 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سافكول سردين بصلصة الطماطم البارده 120 جم",
"Product_EN": "Safcol Sardines In Tomato Sauce Cold 120 gm",
"Product_Id": "00015610 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9877,
"name": "سافكول سردين بصلصة الطماطم الحاره 120 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سافكول سردين بصلصة الطماطم الحاره 120 جم",
"Product_EN": "Safcol Sardines In Tomato Sauce Hot 120 gm",
"Product_Id": "00015611 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9878,
"name": "ويزرس توفى بالزبدة والكراميل مغطى شيكولاتة 100 جم",
"price": 38,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ويزرس توفى بالزبدة والكراميل مغطى شيكولاتة 100 جم",
"Product_EN": null,
"Product_Id": "00015612 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9879,
"name": "سنيكرز شوكولاته بزبده الفول السودانى 36.5 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سنيكرز شوكولاته بزبده الفول السودانى 36.5 جم",
"Product_EN": null,
"Product_Id": "00015613 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9880,
"name": "تيميز كورن فليكس بالفراوله 250 جم",
"price": 42,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيميز كورن فليكس بالفراوله 250 جم",
"Product_EN": null,
"Product_Id": "00015614 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9881,
"name": "مولبد فوط صحية ليلية طويل 16 فوطه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولبد فوط صحية ليلية طويل 16 فوطه",
"Product_EN": null,
"Product_Id": "00015615 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9882,
"name": "مولبد اكسترا هايجين طويل جدا 20 فوطه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولبد اكسترا هايجين طويل جدا 20 فوطه",
"Product_EN": null,
"Product_Id": "00015616 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9883,
"name": "مولبد اكسترا هايجين طويل 20 فوطه",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولبد اكسترا هايجين طويل 20 فوطه",
"Product_EN": null,
"Product_Id": "00015617 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9884,
"name": "مولبد اكسترا هايجين طويل 9 فوطه",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مولبد اكسترا هايجين طويل 9 فوطه",
"Product_EN": null,
"Product_Id": "00015618 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9885,
"name": "فانش سائل مزيل للبقع 900 جم * 2 قطعه",
"price": 110,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فانش سائل مزيل للبقع 900 جم * 2 قطعه",
"Product_EN": null,
"Product_Id": "00015620 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9886,
"name": "ديتول مناديل مبلله ضد البكتيريا 40 منديل",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ديتول مناديل مبلله ضد البكتيريا 40 منديل",
"Product_EN": null,
"Product_Id": "00015621 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9887,
"name": "لاكتيل زبادى يونانى بالتوت 180 جم",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى يونانى بالتوت 180 جم",
"Product_EN": null,
"Product_Id": "00015622 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9888,
"name": "برسيل جل اوتوماتيك برائحه الورد 2.6 كجم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل اوتوماتيك برائحه الورد 2.6 كجم",
"Product_EN": null,
"Product_Id": "00015624 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9889,
"name": "برسيل جل بريميوم 2.6 كجم",
"price": 72,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "برسيل جل بريميوم 2.6 كجم",
"Product_EN": null,
"Product_Id": "00015625 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9890,
"name": "زاهر خبز كيزر كبير حبوب متنوعة 4 ق",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر خبز كيزر كبير حبوب متنوعة 4 ق",
"Product_EN": null,
"Product_Id": "00015626 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9891,
"name": "ليز شيبس بطعم صلصه الشيبوتلى المكسيكى 58 - 64 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليز شيبس بطعم صلصه الشيبوتلى المكسيكى 58 - 64 جم",
"Product_EN": null,
"Product_Id": "00015627 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9892,
"name": "ليز شيبس بطعم الفلفل و ليمون تايلاندى 58 - 64 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليز شيبس بطعم الفلفل و ليمون تايلاندى 58 - 64 جم",
"Product_EN": null,
"Product_Id": "00015628 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9893,
"name": "ليز شيبس بطعم الباربكيو المدخن 58 - 64 جم",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ليز شيبس بطعم الباربكيو المدخن 58 - 64 جم",
"Product_EN": null,
"Product_Id": "00015629 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9894,
"name": "شيبسي عائلى بالصلصه حاره حلوه 67 - 77 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيبسي عائلى بالصلصه حاره حلوه 67 - 77 جم",
"Product_EN": null,
"Product_Id": "00015630 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9895,
"name": "كرانشى شيبس بالجبنة المتبلة 72 - 82 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كرانشى شيبس بالجبنة المتبلة 72 - 82 جم",
"Product_EN": null,
"Product_Id": "00015633 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9896,
"name": "دوريتوس مقرمشات حار نار 74 - 84 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس مقرمشات حار نار 74 - 84 جم",
"Product_EN": null,
"Product_Id": "00015634 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9897,
"name": "دوريتوس مقرمشات بالجبنه الناتشو 136 - 146 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس مقرمشات بالجبنه الناتشو 136 - 146 جم",
"Product_EN": null,
"Product_Id": "00015635 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9898,
"name": "دوريتوس مقرمشات بالفلفل الحلو 136 - 146 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوريتوس مقرمشات بالفلفل الحلو 136 - 146 جم",
"Product_EN": null,
"Product_Id": "00015636 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9899,
"name": "شيتوس فشار بالجبنه الخطيره 110 - 120 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس فشار بالجبنه الخطيره 110 - 120 جم",
"Product_EN": null,
"Product_Id": "00015637 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9900,
"name": "شيتوس سناكس بافس بالجبنه خطيره 136 - 146 جم",
"price": 8,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شيتوس سناكس بافس بالجبنه خطيره 136 - 146 جم",
"Product_EN": null,
"Product_Id": "00015638 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9901,
"name": "ويندكس ملمع زجاج بخاخ لافندر 500 ملل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ويندكس ملمع زجاج بخاخ لافندر 500 ملل",
"Product_EN": null,
"Product_Id": "00015639 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9902,
"name": "ويندكس ملمع زجاج بخاخ ياسمين 500 ملل",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ويندكس ملمع زجاج بخاخ ياسمين 500 ملل",
"Product_EN": null,
"Product_Id": "00015640 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9903,
"name": "ويندكس ملمع زجاج لافندر اقتصادى 500 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ويندكس ملمع زجاج لافندر اقتصادى 500 مل",
"Product_EN": null,
"Product_Id": "00015641 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9904,
"name": "ويندكس ملمع زجاج ازرق اقتصادى 500 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ويندكس ملمع زجاج ازرق اقتصادى 500 مل",
"Product_EN": null,
"Product_Id": "00015642 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9905,
"name": "ويندكس ملمع زجاج ياسمين اقتصادى 500 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ويندكس ملمع زجاج ياسمين اقتصادى 500 مل",
"Product_EN": null,
"Product_Id": "00015643 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9906,
"name": "مولتو مينى كرواسون فراوله وكريمه 6 قطع",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو مينى كرواسون فراوله وكريمه 6 قطع",
"Product_EN": "Molto Mini Croissant Strawberry & Cream 6 pieces",
"Product_Id": "00015644 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9907,
"name": "مولتو كرواسون جبنه فيتا 1 قطعه",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مولتو كرواسون جبنه فيتا 1 قطعه",
"Product_EN": "Molto Croissant Feta Cheese 1 Piece",
"Product_Id": "00015645 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9908,
"name": "نسكويك مشروب شيكولاته 13.5 جم",
"price": 21,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك مشروب شيكولاته 13.5 جم",
"Product_EN": null,
"Product_Id": "00015646 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9909,
"name": "ماجى مرقه لحم بقرى 12 مكعب",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى مرقه لحم بقرى 12 مكعب",
"Product_EN": null,
"Product_Id": "00015647 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9910,
"name": "ماجى مرقه حضروات 12 مكعب",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ماجى مرقه حضروات 12 مكعب",
"Product_EN": null,
"Product_Id": "00015648 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9911,
"name": "نسكويك مشروب شيكولاته 154 جم + Puzzle",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك مشروب شيكولاته 154 جم + Puzzle",
"Product_EN": null,
"Product_Id": "00015649 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9912,
"name": "نسكويك مشروب شيكولاته 880 جم + لانش بوكس",
"price": 80,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك مشروب شيكولاته 880 جم + لانش بوكس",
"Product_EN": null,
"Product_Id": "00015650 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9913,
"name": "نسكويك مشروب شيكولاته 330 جم + كوب",
"price": 33.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك مشروب شيكولاته 330 جم + كوب",
"Product_EN": null,
"Product_Id": "00015651 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9914,
"name": "فيتنس لواح شيكولاته 23.5 جم",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فيتنس لواح شيكولاته 23.5 جم",
"Product_EN": null,
"Product_Id": "00015652 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9915,
"name": "نسكويك لوح شيكولاته 25 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك لوح شيكولاته 25 جم",
"Product_EN": null,
"Product_Id": "00015653 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9916,
"name": "نسكويك كوكو كراش 360 جم",
"price": 50,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نسكويك كوكو كراش 360 جم",
"Product_EN": null,
"Product_Id": "00015654 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9917,
"name": "شوكابيك رقائق بشكل دبدوب 345 جم",
"price": 45,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شوكابيك رقائق بشكل دبدوب 345 جم",
"Product_EN": null,
"Product_Id": "00015655 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9918,
"name": "عطاره . مستكة يونانى برطمان 5 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مستكة يونانى برطمان 5 جم",
"Product_EN": null,
"Product_Id": "00015656 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9919,
"name": "سويت لايف خل بلسمك 250 مل",
"price": 32.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف خل بلسمك 250 مل",
"Product_EN": null,
"Product_Id": "00015657 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9920,
"name": "سويت لايف خل تفاح 250 مل",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سويت لايف خل تفاح 250 مل",
"Product_EN": null,
"Product_Id": "00015658 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9921,
"name": "ميلكا شيكولاتة بالحليب اوريو 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميلكا شيكولاتة بالحليب اوريو 100 جم",
"Product_EN": null,
"Product_Id": "00015660 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9922,
"name": "ريسيبى توابل سجق شرقى تقيل 4.2 كجم",
"price": 280,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ريسيبى توابل سجق شرقى تقيل 4.2 كجم",
"Product_EN": null,
"Product_Id": "00015661 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9923,
"name": "كنور مرقه دجاج فوريه 6 جم",
"price": 0.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنور مرقه دجاج فوريه 6 جم",
"Product_EN": null,
"Product_Id": "00015662 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9924,
"name": "كمفورت منعم ملابس وردى 1 لتر",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس وردى 1 لتر",
"Product_EN": null,
"Product_Id": "00015663 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9925,
"name": "كمفورت منعم ملابس ندى الربيع 1 لتر",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "كمفورت منعم ملابس ندى الربيع 1 لتر",
"Product_EN": null,
"Product_Id": "00015664 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9926,
"name": "فريدة معطر جو توت 560 جم",
"price": 27,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فريدة معطر جو توت 560 جم",
"Product_EN": null,
"Product_Id": "00015666 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9927,
"name": "سيبا نوسا شيكولاته سبريد بالبندق و الحليب 750 جم",
"price": 66,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سيبا نوسا شيكولاته سبريد بالبندق و الحليب 750 جم",
"Product_EN": null,
"Product_Id": "00015667 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9928,
"name": "ميلكى مان حليب بالتمر 850 مل",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلكى مان حليب بالتمر 850 مل",
"Product_EN": null,
"Product_Id": "00015670 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9929,
"name": "ميلكى مان حليب بالتمر 270 مل",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلكى مان حليب بالتمر 270 مل",
"Product_EN": null,
"Product_Id": "00015671 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9930,
"name": "ريفى حليب كامل الدسم 850 مل",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريفى حليب كامل الدسم 850 مل",
"Product_EN": null,
"Product_Id": "00015672 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9931,
"name": "ريفى حليب خالي الدسم 850 مل",
"price": 16.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريفى حليب خالي الدسم 850 مل",
"Product_EN": null,
"Product_Id": "00015673 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9932,
"name": "ميلكى مان زبادى كريمى كامل الدسم 170 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلكى مان زبادى كريمى كامل الدسم 170 جم",
"Product_EN": null,
"Product_Id": "00015674 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9933,
"name": "ميلكى مان زبادى كريمى خالى الدسم 170 جم",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ميلكى مان زبادى كريمى خالى الدسم 170 جم",
"Product_EN": null,
"Product_Id": "00015675 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9934,
"name": "كنوبرز بسكويت ويفر ستورك باللبن و البندق 25 جم",
"price": 7.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كنوبرز بسكويت ويفر ستورك باللبن و البندق 25 جم",
"Product_EN": null,
"Product_Id": "00015677 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9935,
"name": "عطاره . مينى بيستو لوتس وزن",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . مينى بيستو لوتس وزن",
"Product_EN": "Attara Mini Pesto Lotus - Scalable ",
"Product_Id": "00015678 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9936,
"name": "عطاره . سناكس روستيكا وزن",
"price": 34,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . سناكس روستيكا وزن",
"Product_EN": null,
"Product_Id": "00015679 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9937,
"name": "عطاره . شيكولاته شيبس سما وزن",
"price": 65,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . شيكولاته شيبس سما وزن",
"Product_EN": null,
"Product_Id": "00015680 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9938,
"name": "عطاره . سبرنكليز صغير وزن",
"price": 33,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . سبرنكليز صغير وزن",
"Product_EN": null,
"Product_Id": "00015681 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9939,
"name": "عطاره . جيل دايموند الوان 1 قطعة",
"price": 12.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "عطاره . جيل دايموند الوان 1 قطعة",
"Product_EN": null,
"Product_Id": "00015682 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9940,
"name": "بافاريا مشروب شعير تفاح زجاج 330 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير تفاح زجاج 330 مل",
"Product_EN": "Bavaria Malt Drink Apple Glass 330 ml",
"Product_Id": "00015683 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9941,
"name": "بافاريا مشروب شعير رمان زجاج 330 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير رمان زجاج 330 مل",
"Product_EN": "Bavaria Malt Drink Pomegranate Glass 330 ml",
"Product_Id": "00015684 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9942,
"name": "بافاريا مشروب شعير فراوله زجاج 330 مل",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بافاريا مشروب شعير فراوله زجاج 330 مل",
"Product_EN": "Bavaria Malt Drink Strawberry Glass 330 ml",
"Product_Id": "00015685 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9943,
"name": "بالم هيلز تمر مجدول 1 كجم - medium",
"price": 85,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بالم هيلز تمر مجدول 1 كجم - medium",
"Product_EN": null,
"Product_Id": "00015686 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9944,
"name": "بالم هيلز تمر مجدول 1 كجم - small",
"price": 75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بالم هيلز تمر مجدول 1 كجم - small",
"Product_EN": null,
"Product_Id": "00015687 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9945,
"name": "خير مصر سكر 1 كجم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "خير مصر سكر 1 كجم",
"Product_EN": null,
"Product_Id": "00015688 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9946,
"name": "لافاش جبنه مثلثات 88 ق",
"price": 138,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لافاش جبنه مثلثات 88 ق",
"Product_EN": null,
"Product_Id": "00015689 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9947,
"name": "دوبيلا دقيق سميد البسبوسه 1 كجم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "دوبيلا دقيق سميد البسبوسه 1 كجم",
"Product_EN": null,
"Product_Id": "00015690 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9948,
"name": "ويزرس توفى بالزبدة والكراميل مغطى بالشيكولاته 48جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ويزرس توفى بالزبدة والكراميل مغطى بالشيكولاته 48جم",
"Product_EN": null,
"Product_Id": "00015691 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9949,
"name": "ويزرس توفى بالزبدة والكراميل مغطى بالشيكولاته125جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ويزرس توفى بالزبدة والكراميل مغطى بالشيكولاته125جم",
"Product_EN": null,
"Product_Id": "00015692 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9950,
"name": "ميرسى شيكولاته كريمه الموسيه 400 جم",
"price": 190,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميرسى شيكولاته كريمه الموسيه 400 جم",
"Product_EN": "Merci Chocolate Cream Mousse 400 gm",
"Product_Id": "00015693 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9951,
"name": "ميرسى شيكولاته كريمه الموسيه 675 جم",
"price": 300,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ميرسى شيكولاته كريمه الموسيه 675 جم",
"Product_EN": "Merci Chocolate Cream Mousse 675 gm",
"Product_Id": "00015694 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9952,
"name": "مامبا توفى مشكل 125 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "مامبا توفى مشكل 125 جم",
"Product_EN": "Mamba Toffee Mix 125 gm",
"Product_Id": "00015695 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9953,
"name": "ستورك ريزن توفى بالشيكولاتة 150 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ريزن توفى بالشيكولاتة 150 جم",
"Product_EN": null,
"Product_Id": "00015696 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9954,
"name": "بنبون النعناع بحشوة الشكولاته 200 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بنبون النعناع بحشوة الشكولاته 200 جم",
"Product_EN": "Mint Bonbon With Chocolate Filling 200 gm",
"Product_Id": "00015697 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9955,
"name": "ستورك كامبينو فواكه 200 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك كامبينو فواكه 200 جم",
"Product_EN": "Stork Campino Fruits 200 gm",
"Product_Id": "00015698 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9956,
"name": "بنبون نعناع بستانى ايكو مانتول 200 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بنبون نعناع بستانى ايكو مانتول 200 جم",
"Product_EN": "Bonbon Garden Mint Eco Mannitol 200 gm",
"Product_Id": "00015699 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9957,
"name": "بنبون فواكة 200 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بنبون فواكة 200 جم",
"Product_EN": "Bonbon Fruit 200 gm",
"Product_Id": "00015700 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9958,
"name": "توفى بالشكولاته 325 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توفى بالشكولاته 325 جم",
"Product_EN": "Toffee Chocolate 325 gm",
"Product_Id": "00015701 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9959,
"name": "بنبون بالكراميل بحشوة الحليب 325 جم",
"price": 60,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بنبون بالكراميل بحشوة الحليب 325 جم",
"Product_EN": "Bonbon Caramel With Milk Filling 325 gm",
"Product_Id": "00015702 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9960,
"name": "كامبينو بنبون بالزبادى والفراولة 75 جم ",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كامبينو بنبون بالزبادى والفراولة 75 جم ",
"Product_EN": "Campino Bonbon Yogurt & Strawberry 75 gm",
"Product_Id": "00015703 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9961,
"name": "ستورك ويزرس بنبون بالزبدة والكراميل شوجر فري 70 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ويزرس بنبون بالزبدة والكراميل شوجر فري 70 جم",
"Product_EN": "Stork Weathers Bonbon Butter Caramel Sugar 70 gm",
"Product_Id": "00015704 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9962,
"name": "ستورك ويزرس بنبون بالزبدة والكراميل شوجر فري 42 جم",
"price": 12,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ويزرس بنبون بالزبدة والكراميل شوجر فري 42 جم",
"Product_EN": "Stork Weathers Benbon Butter Caramel Sugar 42 gm",
"Product_Id": "00015705 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9963,
"name": "ستورك ويزرس سوفت توفي 100 جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ويزرس سوفت توفي 100 جم",
"Product_EN": "Stork Weathers Soft Toffee 100 gm",
"Product_Id": "00015706 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9964,
"name": "ستورك ويزرس سوفت توفي 48 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ستورك ويزرس سوفت توفي 48 جم",
"Product_EN": "Stork Weathers Soft Toffee 100 gm",
"Product_Id": "00015707 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9965,
"name": "ويزرس اوريجينال سوفت اكلير 100جم",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ويزرس اوريجينال سوفت اكلير 100جم",
"Product_EN": "Withers Original Soft Eclair 100 gm",
"Product_Id": "00015708 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9966,
"name": "تيفانى بسكويت بتر كوكيز 40 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفانى بسكويت بتر كوكيز 40 جم",
"Product_EN": "Tiffany Biscuits Butter Cookies 40 gm",
"Product_Id": "00015709 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9967,
"name": "تيفاني بسكويت بتر كوكيز 405 جم",
"price": 84,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني بسكويت بتر كوكيز 405 جم",
"Product_EN": "Tiffany Biscuits Butter Cookies 405 gm",
"Product_Id": "00015710 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9968,
"name": "تيفاني بسكويت ساندويتش بكريمة الشوكولاته 100 جم",
"price": 8.7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني بسكويت ساندويتش بكريمة الشوكولاته 100 جم",
"Product_EN": "Tiffany Biscuits Chocolate Cream Sandwich 100 gm",
"Product_Id": "00015711 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9969,
"name": "شنكوز كوكيز بقطع الشيكولاته 24 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "شنكوز كوكيز بقطع الشيكولاته 24 جم",
"Product_EN": "Chunko cookies with chocolate chips 24 gm",
"Product_Id": "00015712 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9970,
"name": "تيفاني جوتشا ساندوتش بكريمة الحليب 37 جم",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تيفاني جوتشا ساندوتش بكريمة الحليب 37 جم",
"Product_EN": "Tiffany Gotcha Sandwich Milk Cream 37gm",
"Product_Id": "00015713 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9971,
"name": "بريزيدون جبنه براميلى تابس 700 جم",
"price": 62,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه براميلى تابس 700 جم",
"Product_EN": "President Baramily Cheese Taps 700 gm",
"Product_Id": "00002035 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9972,
"name": "طعمة جبنه مثلثات 40 ق",
"price": 32,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنه مثلثات 40 ق",
"Product_EN": "Teama Triangle Cheese 40 Pieces",
"Product_Id": "00002038 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9973,
"name": "بريزيدون جبنه بيضاء لايت تابس 500 جم",
"price": 43.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه بيضاء لايت تابس 500 جم",
"Product_EN": "President White Cheese Light Taps 500 gm",
"Product_Id": "00002039 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9974,
"name": "طعمه جبنة فيتا لايت 250 جم - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمه جبنة فيتا لايت 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00002040 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9975,
"name": "طعمة جبنة فيتا لايت 500 جم - موقوف",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمة جبنة فيتا لايت 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00002041 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9976,
"name": "بريزيدون جبنه سبريد مدخن بالزيتون كوب 240 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد مدخن بالزيتون كوب 240 جم",
"Product_EN": "President Smoked Cheese Spread Olives 240 gm",
"Product_Id": "00002043 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9977,
"name": "طعمه جبنة اسطنبولى 250 جم - موقوف",
"price": 6.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمه جبنة اسطنبولى 250 جم - موقوف",
"Product_EN": null,
"Product_Id": "00002045 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9978,
"name": "طعمه جبنة اسطنبولى 500 جم - موقوف",
"price": 13.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "طعمه جبنة اسطنبولى 500 جم - موقوف",
"Product_EN": null,
"Product_Id": "00002046 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9979,
"name": "عبورلاند جبنه اسطنمبولى 500 جم",
"price": 16,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "عبورلاند جبنه اسطنمبولى 500 جم",
"Product_EN": "Obour Land Istanbully Cheese 500 gm",
"Product_Id": "00002047 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9980,
"name": "بريزيدون جبنه سبريد لايت كوب 240 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد لايت كوب 240 جم",
"Product_EN": "President Spread Light Cheese 240 gm",
"Product_Id": "00002048 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9981,
"name": "كتاكيتو شيكولاتة ويفر علبه - موقوف",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كتاكيتو شيكولاتة ويفر علبه - موقوف",
"Product_EN": null,
"Product_Id": "00002049 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9982,
"name": "الشمعدان بسكويت شيكولاتة بيضاء",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "الشمعدان بسكويت شيكولاتة بيضاء",
"Product_EN": null,
"Product_Id": "00002050 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9983,
"name": "بريزيدون جبنه سبريد مدخن بالقشطة كوب 140 جم",
"price": 25.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد مدخن بالقشطة كوب 140 جم",
"Product_EN": "President Spread Smoked Cream Cheese 140 gm",
"Product_Id": "00002051 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9984,
"name": "بريزيدون جبنه سبريد مدخن بالقشطة كوب 240 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه سبريد مدخن بالقشطة كوب 240 جم",
"Product_EN": "President Spread Smoked Cream Cheese 240 gm",
"Product_Id": "00002053 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9985,
"name": "كورونا تراكس شيكولاتة",
"price": 4.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا تراكس شيكولاتة",
"Product_EN": null,
"Product_Id": "00002054 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9986,
"name": "كورونا شيكولاتة بالحليب 50 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة بالحليب 50 جم",
"Product_EN": null,
"Product_Id": "00002055 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9987,
"name": "كورونا شيكولاتة بالحليب 27 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة بالحليب 27 جم",
"Product_EN": null,
"Product_Id": "00002058 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9988,
"name": "كورونا شيكولاتة لايت 27 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة لايت 27 جم",
"Product_EN": null,
"Product_Id": "00002059 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9989,
"name": "كورونا شيكولاتة دارك 27 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة دارك 27 جم",
"Product_EN": null,
"Product_Id": "00002060 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9990,
"name": "كورونا شيكولاتة 12ق - موقوف",
"price": 58,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة 12ق - موقوف",
"Product_EN": null,
"Product_Id": "00002061 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9991,
"name": "كورونا كفرتورة شكولاتة طبخ 320 جم",
"price": 23,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا كفرتورة شكولاتة طبخ 320 جم",
"Product_EN": null,
"Product_Id": "00002062 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9992,
"name": "كورونا شكولاتة روكيت 50 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شكولاتة روكيت 50 جم",
"Product_EN": null,
"Product_Id": "00002063 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9993,
"name": "كورونا شيكولاتة ساندو برتقال 37 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة ساندو برتقال 37 جم",
"Product_EN": null,
"Product_Id": "00002065 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9994,
"name": "بريزيدون جبنه شرائح لايت 200 جم",
"price": 39,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "بريزيدون جبنه شرائح لايت 200 جم",
"Product_EN": "President Light Cheese Slices 200 gm",
"Product_Id": "00002066 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9995,
"name": "كورونا شيكولاتة ساندو فراولة 37 جم",
"price": 70,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كورونا شيكولاتة ساندو فراولة 37 جم",
"Product_EN": null,
"Product_Id": "00002067 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9996,
"name": "فلوتس شوكولاتة 22.5 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلوتس شوكولاتة 22.5 جم",
"Product_EN": "Flutes Chocolate 22.5 gm",
"Product_Id": "00002069 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9997,
"name": "فلوتس شيكولاتة علبة - موقوف",
"price": 22.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلوتس شيكولاتة علبة - موقوف",
"Product_EN": null,
"Product_Id": "00002071 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9998,
"name": "مناديل فاين 3 ق عرض",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "مناديل فاين 3 ق عرض",
"Product_EN": null,
"Product_Id": "00002072 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 9999,
"name": "ديمه بسويل بسكويت - موقوف",
"price": 3.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "ديمه بسويل بسكويت - موقوف",
"Product_EN": null,
"Product_Id": "00002073 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10000,
"name": "زينه مناديل 9 بكره",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل 9 بكره",
"Product_EN": null,
"Product_Id": "00002077 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10001,
"name": "جلاكسى شوكولاتة زبيب وبندق",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة زبيب وبندق",
"Product_EN": "Galaxy Chocolate Fruits & Nuts 36 gm",
"Product_Id": "00002078 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10002,
"name": "اندومى شعريه سريعه التحضير بالدجاج 70 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير بالدجاج 70 جم",
"Product_EN": null,
"Product_Id": "00002079 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10003,
"name": "فلوتس شوكولاتة 45 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "فلوتس شوكولاتة 45 جم",
"Product_EN": "Flutes Chocolate 45 gm",
"Product_Id": "00002080 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10004,
"name": "زاهر ريد فيلفيت كيك مثلث - موقوف",
"price": 20,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر ريد فيلفيت كيك مثلث - موقوف",
"Product_EN": null,
"Product_Id": "00002081 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10005,
"name": "اندومى شعريه سريعه التحضير بالجمبرى 75 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير بالجمبرى 75 جم",
"Product_EN": null,
"Product_Id": "00002082 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10006,
"name": "زاهر شوكلت كيك مثلث - موقوف",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 17,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 3,
"Category": "البان زاهر",
"Subcategory_code": 12,
"Subcategory": "زاهر اغذية طازجة",
"Product_AR": "زاهر شوكلت كيك مثلث - موقوف",
"Product_EN": null,
"Product_Id": "00002083 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10007,
"name": "جلاكسى شوكولاتة بالحليب و البندق 22جم",
"price": 56,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة بالحليب و البندق 22جم",
"Product_EN": "Galaxy Chocolate Milk Hazelnut 22 gm",
"Product_Id": "00002084 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10008,
"name": "جلاكسى شيكولاته حليب 36 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شيكولاته حليب 36 جم",
"Product_EN": "Galaxy Chocolate Milk 36 gm",
"Product_Id": "00002085 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10009,
"name": "جلاكسى شيكولاته بندق 36 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شيكولاته بندق 36 جم",
"Product_EN": "Galaxy Chocolate Hazelnut 36 gm",
"Product_Id": "00002087 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10010,
"name": "اندومى شعريه سريعه التحضير بالدجاج المتبل 70 جم",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير بالدجاج المتبل 70 جم",
"Product_EN": null,
"Product_Id": "00002088 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10011,
"name": "جلاكسى شيكولاته فواكه 36 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شيكولاته فواكه 36 جم",
"Product_EN": "Galaxy Chocolate Fruits 36 gm",
"Product_Id": "00002089 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10012,
"name": "ريتش بيك باوند كيك شيكولاتة ",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "ريتش بيك باوند كيك شيكولاتة ",
"Product_EN": null,
"Product_Id": "00002090 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10013,
"name": "اندومى شعريه سريعه التحضير لحم بقرى كوب 60 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اندومى شعريه سريعه التحضير لحم بقرى كوب 60 جم",
"Product_EN": null,
"Product_Id": "00002091 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10014,
"name": "تودو بومب كيك الشيكولاتة بحشو الفانيليا 1 قطعه ",
"price": 40,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "تودو بومب كيك الشيكولاتة بحشو الفانيليا 1 قطعه ",
"Product_EN": "Todo Bomb Chocolate Cake With Vanilla 1 Piece",
"Product_Id": "00002092 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10015,
"name": "توينكيز كيك ايسينج شيكولاته 1 قطعه ",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "توينكيز كيك ايسينج شيكولاته 1 قطعه ",
"Product_EN": "Twinkies Icing Cake Chocolate 1 Piece",
"Product_Id": "00002094 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10016,
"name": "زينه مناديل تواليت مضغوط 2 بكرة",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل تواليت مضغوط 2 بكرة",
"Product_EN": null,
"Product_Id": "00002095 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10017,
"name": "جهينة 4 عبوات وفر 1 جنيه",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة 4 عبوات وفر 1 جنيه",
"Product_EN": null,
"Product_Id": "00002103 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10018,
"name": "زينه مناديل سحب 100 منديل",
"price": 3,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل سحب 100 منديل",
"Product_EN": null,
"Product_Id": "00002106 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10019,
"name": "زينه مناديل جيب كلاسيك 10 مناديل",
"price": 17,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل جيب كلاسيك 10 مناديل",
"Product_EN": null,
"Product_Id": "00002108 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10020,
"name": "فاين مناديل جيب",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين مناديل جيب",
"Product_EN": null,
"Product_Id": "00002109 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10021,
"name": "فاين مناديل جيب _ موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين مناديل جيب _ موقوف",
"Product_EN": null,
"Product_Id": "00002112 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10022,
"name": "جهينة زبادى 8 عبوات وفر 3 جنيه",
"price": 18.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى 8 عبوات وفر 3 جنيه",
"Product_EN": null,
"Product_Id": "00002113 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10023,
"name": "دانون زبادو فاكهة استوائيه اب - موقوف",
"price": 4.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانون زبادو فاكهة استوائيه اب - موقوف",
"Product_EN": null,
"Product_Id": "00002116 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10024,
"name": "جهينة زبادى عرض",
"price": 15.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى عرض",
"Product_EN": null,
"Product_Id": "00002117 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10025,
"name": "دانجو فراولة عرض - موقوف",
"price": 15.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "دانجو فراولة عرض - موقوف",
"Product_EN": null,
"Product_Id": "00002119 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10026,
"name": "بيريل شراب شعير 330 مل ",
"price": 7,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بيريل شراب شعير 330 مل ",
"Product_EN": "Berell Malt Beverage 330 ml",
"Product_Id": "00002128 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10027,
"name": "لاكتيل دويتو مشروب زبادى بالفراولة 440 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو مشروب زبادى بالفراولة 440 مل",
"Product_EN": "Lactel Duetto Strawberry Yogurt Drink 440 ml",
"Product_Id": "00002133 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10028,
"name": "فاين مناديل جيب - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "فاين مناديل جيب - موقوف",
"Product_EN": null,
"Product_Id": "00002134 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10029,
"name": "سانيتا جيب مناديل - موقوف",
"price": 1,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "سانيتا جيب مناديل - موقوف",
"Product_EN": null,
"Product_Id": "00002136 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10030,
"name": "لاكتيل دويتو مشروب زبادى بالخوخ 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو مشروب زبادى بالخوخ 220 مل",
"Product_EN": "Lactel Duetto Peach Yogurt Drink 220 ml",
"Product_Id": "00002137 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10031,
"name": "بركة مياه 1.5 لتر - موقوف",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بركة مياه 1.5 لتر - موقوف",
"Product_EN": null,
"Product_Id": "00002140 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10032,
"name": "لاكتيل دويتو مشروب زبادى بالخوخ 440 مل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل دويتو مشروب زبادى بالخوخ 440 مل",
"Product_EN": "Lactel Duetto Peach Yogurt Drink 440 ml",
"Product_Id": "00002141 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10033,
"name": "اولكر البيلا ويفر صغير 17 جم",
"price": 22,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "اولكر البيلا ويفر صغير 17 جم",
"Product_EN": null,
"Product_Id": "00002142 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10034,
"name": "جهينة زبادو مشروب زبادي بالتوت 440 مل",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي بالتوت 440 مل",
"Product_EN": "Juhayna Zabado Berry Yogurt Drink 440 ml",
"Product_Id": "00002143 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10035,
"name": "جلاكسى شيكولاته كرسبى 36 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شيكولاته كرسبى 36 جم",
"Product_EN": "Galaxy Chocolate Crispy 36 gm",
"Product_Id": "00002145 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10036,
"name": "بركة مياه 600 مل - موقوف",
"price": 47.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "بركة مياه 600 مل - موقوف",
"Product_EN": null,
"Product_Id": "00002146 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10037,
"name": "جهينة زبادى 105 جم",
"price": 2.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى 105 جم",
"Product_EN": "Juhayna Natural Yogurt 105 gm",
"Product_Id": "00002148 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10038,
"name": "نستله مياة طبيعيه 1.5 لتر",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله مياة طبيعيه 1.5 لتر",
"Product_EN": "Nestle Natural Water 1.5 L ",
"Product_Id": "00002149 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10039,
"name": "سنيكرز شيكولاته بار دابل 80 جم",
"price": 15,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سنيكرز شيكولاته بار دابل 80 جم",
"Product_EN": "Snickers Chocolate Double 80 gm",
"Product_Id": "00002150 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10040,
"name": "زينه مناديل سحب 550 منديل",
"price": 36,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل سحب 550 منديل",
"Product_EN": null,
"Product_Id": "00002152 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10041,
"name": "جلاكسى جواهر شيكولاته 650 جم",
"price": 220,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى جواهر شيكولاته 650 جم",
"Product_EN": "Galaxy Chocolate Jewels 650 gm",
"Product_Id": "00002153 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10042,
"name": "جهينة زبادى مكس فراولة 105 جم",
"price": 3.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى مكس فراولة 105 جم",
"Product_EN": "Juhayna Mix Strawberry Yogurt 105 gm",
"Product_Id": "00002155 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10043,
"name": "جهينة زبادو مشروب زبادي فراوله & موز 220 مل",
"price": 4.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي فراوله & موز 220 مل",
"Product_EN": "Juhayna Zabado Strawberry & Banana Drink 220 ml",
"Product_Id": "00002158 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10044,
"name": "نستله مياة طبيعيه 600 مل",
"price": 48,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله مياة طبيعيه 600 مل",
"Product_EN": "Nestle Natural Water 600 ml",
"Product_Id": "00002160 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10045,
"name": "جلاكسى ريبل شوكولاتة 25جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى ريبل شوكولاتة 25جم",
"Product_EN": "Galaxy Ripple Chocolate 25 gm",
"Product_Id": "00002161 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10046,
"name": "نستله مياه طبيعيه جالون 19 لتر",
"price": 43,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "نستله مياه طبيعيه جالون 19 لتر",
"Product_EN": "Nestle Natural Water Gallon 19 L ",
"Product_Id": "00002163 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10047,
"name": "جهينة زبادو مشروب زبادي خوخ & توت 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي خوخ & توت 220 مل",
"Product_EN": "Juhayna Zabado Peach & Berry Drink 220 ml",
"Product_Id": "00002164 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10048,
"name": "زينه مناديل مطبخ اقتصادى عادى 2 بكرة",
"price": 9,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل مطبخ اقتصادى عادى 2 بكرة",
"Product_EN": null,
"Product_Id": "00002166 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10049,
"name": "جلاكسى جواهر شيكولاته 400 جم",
"price": 140,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى جواهر شيكولاته 400 جم",
"Product_EN": "Galaxy Chocolate Jewels 400 gm",
"Product_Id": "00002169 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10050,
"name": "ايزى كير مناديل مبللة 20 منديل - موقوف",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل مبللة 20 منديل - موقوف",
"Product_EN": null,
"Product_Id": "00002170 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10051,
"name": "لاكتيل زبادى طبيعى 1 ك",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى طبيعى 1 ك",
"Product_EN": "Lactel Natural Yogurt 1 kg",
"Product_Id": "00002171 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10052,
"name": "ايزى كير مناديل مبللة 20 منديل ( موقوف )",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل مبللة 20 منديل ( موقوف )",
"Product_EN": null,
"Product_Id": "00002173 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10053,
"name": "لاكتيل زبادى طبيعى 2 ك",
"price": 47,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى طبيعى 2 ك",
"Product_EN": "Lactel Natural Yogurt 2 kg",
"Product_Id": "00002174 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10054,
"name": "جهينة زبادو مشروب زبادي خوخ & توت 440 مل",
"price": 9.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادي خوخ & توت 440 مل",
"Product_EN": "Juhayna Zabado Peach & Berry Drink 440 ml",
"Product_Id": "00002175 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10055,
"name": "ايزى كير مناديل مبللة 40 منديل - موقوف",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل مبللة 40 منديل - موقوف",
"Product_EN": null,
"Product_Id": "00002176 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10056,
"name": "ايزى كير مناديل مبللة 80 منديل",
"price": 18,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل مبللة 80 منديل",
"Product_EN": "Easy Care Wet Wipes - 80 Wipes",
"Product_Id": "00002177 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10057,
"name": "جهينة زبادى مكس فراولة وفر 1 جنية",
"price": 9.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادى مكس فراولة وفر 1 جنية",
"Product_EN": null,
"Product_Id": "00002178 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10058,
"name": "جلاكسى شوكولاتة جواهر 200جم",
"price": 90,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة جواهر 200جم",
"Product_EN": "Galaxy Chocolate Jewels 200 gm",
"Product_Id": "00002179 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10059,
"name": "لاكتيل زبادى لايت 105 جم",
"price": 4,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لاكتيل زبادى لايت 105 جم",
"Product_EN": "Lactel Light Yogurt 105 gm",
"Product_Id": "00002181 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10060,
"name": "جلاكسى شوكولاتة دارك 40 جم",
"price": 11.99,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة دارك 40 جم",
"Product_EN": "Galaxy Chocolate Dark 40 gm",
"Product_Id": "00002184 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10061,
"name": "سنيكرز شيكولاته بار 25 جم",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "سنيكرز شيكولاته بار 25 جم",
"Product_EN": "Snickers Chocolate Bar 25 gm",
"Product_Id": "00002188 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10062,
"name": "زبادى طبيعى هيلثى 110 جم - موقوف",
"price": 2.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "زبادى طبيعى هيلثى 110 جم - موقوف",
"Product_EN": null,
"Product_Id": "00002191 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10063,
"name": "جلاكسى شوكولاتة بالحليب بار صغيره 22 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة بالحليب بار صغيره 22 جم",
"Product_EN": "Galaxy Milk Chocolate Small Bar 22 gm",
"Product_Id": "00002192 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10064,
"name": "لورباك زبده طبيعى 100 جم",
"price": 26,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لورباك زبده طبيعى 100 جم",
"Product_EN": "Lurpak Butter Natural 100 gm",
"Product_Id": "00002195 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10065,
"name": "جلاكسى شوكولاتة كراميل 40 جم ",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة كراميل 40 جم ",
"Product_EN": "Galaxy Chocolate Caramel 40 gm",
"Product_Id": "00002196 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10066,
"name": "جلاكسى شوكولاتة ساده 90جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة ساده 90جم",
"Product_EN": "Galaxy Chocolate Plain 90 gm",
"Product_Id": "00002198 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10067,
"name": "ايزى كلير 500 منديل",
"price": 44,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كلير 500 منديل",
"Product_EN": "Easy Care 500 Wipes",
"Product_Id": "00002199 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10068,
"name": "جلاكسى شوكولاتة بندق 90 جم",
"price": 30,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة بندق 90 جم",
"Product_EN": "Galaxy Chocolate Hazelnut 90 gm",
"Product_Id": "00002200 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10069,
"name": "جهينة زبادو مشروب زبادى فراولة بالعسل 220 مل",
"price": 5.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة زبادو مشروب زبادى فراولة بالعسل 220 مل",
"Product_EN": "Juhayna Zabado Strawberry Honey Drink 220 ml",
"Product_Id": "00002201 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10070,
"name": "لورباك زبده غير مملحة 50 جم",
"price": 13,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لورباك زبده غير مملحة 50 جم",
"Product_EN": "Lurpak Butter Unsalted 50 gm",
"Product_Id": "00002202 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10071,
"name": "لورباك زبده طبيعى 200 جم",
"price": 55,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "لورباك زبده طبيعى 200 جم",
"Product_EN": "Lurpak Butter Natural 200 gm",
"Product_Id": "00002203 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10072,
"name": "ايزى كير مناديل مبللة 40 منديل",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل مبللة 40 منديل",
"Product_EN": "Easy Care Wet Wipes - 40 Wipes",
"Product_Id": "00002206 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10073,
"name": "ايزى كير بيبى مناديل مبللة 20 منديل",
"price": 11,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير بيبى مناديل مبللة 20 منديل",
"Product_EN": "Easy Care Baby Wet Wipes - 20 Wipes",
"Product_Id": "00002208 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10074,
"name": "جهينة كريمة خفق 500 جم",
"price": 52,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة كريمة خفق 500 جم",
"Product_EN": "Juhayna Whipping Cream 500 ml",
"Product_Id": "00002209 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10075,
"name": "جلاكسى شوكولاتة بيضاء كوكيز 38جم",
"price": 10.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "جلاكسى شوكولاتة بيضاء كوكيز 38جم",
"Product_EN": "Galaxy White Chocolate Cookies 38 gm",
"Product_Id": "00002210 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10076,
"name": "ايزى كير مناديل مبللة 20 منديل",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:00",
"updated_at": "2021-11-01 19:46:00",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل مبللة 20 منديل",
"Product_EN": "Easy Care Wet Wipes - 20 Wipes",
"Product_Id": "00002211 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10077,
"name": "كيت كات شانكى شوكولاتة احمر 40 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شانكى شوكولاتة احمر 40 جم",
"Product_EN": "Kit Kat Chunky Red Chocolate 40 gm",
"Product_Id": "00002212 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10078,
"name": "ايزى كير بيبى 40 منديل",
"price": 14.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير بيبى 40 منديل",
"Product_EN": "Easy Care Baby 20 Wipes",
"Product_Id": "00002213 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10079,
"name": "كيت كات شانكى شوكولاتة كراميل 42 جم",
"price": 10,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شانكى شوكولاتة كراميل 42 جم",
"Product_EN": "Kit Kat Chunky Chocolate Caramel 42 gm",
"Product_Id": "00002214 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10080,
"name": "ايزى كير مناديل ضد الجراثيم 8 منديل",
"price": 4.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "ايزى كير مناديل ضد الجراثيم 8 منديل",
"Product_EN": "Easy Care Antiseptic Wipes - 8 Wipes",
"Product_Id": "00002215 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10081,
"name": "جهينة كريمة طهى 1 لتر",
"price": 89.25,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "جهينة كريمة طهى 1 لتر",
"Product_EN": "Juhayna Cooking Cream 1 L",
"Product_Id": "00002216 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10082,
"name": "كيت كات شوكولاتة 4 اصابع",
"price": 7.95,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة 4 اصابع",
"Product_EN": "Kit Kat Chocolate 4 Fingers",
"Product_Id": "00002217 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10083,
"name": "زينه مناديل مطبخ مضغوط 2 بكرة - موقوف",
"price": 13.75,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 11,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 5,
"Subcategory": "منظفات وورقيات",
"Product_AR": "زينه مناديل مطبخ مضغوط 2 بكرة - موقوف",
"Product_EN": null,
"Product_Id": "00002219 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10084,
"name": "كيت كات شوكولاتة 2 اصابع",
"price": 180,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 1,
"Subcategory": "اغذيه جافه",
"Product_AR": "كيت كات شوكولاتة 2 اصابع",
"Product_EN": "Kit Kat Chocolate 2 Fingers",
"Product_Id": "00002222 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10085,
"name": "المراعى كريمة خفق 200 جم",
"price": 24,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 8,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائى",
"Subcategory_code": 2,
"Subcategory": "اغذيه طازجه",
"Product_AR": "المراعى كريمة خفق 200 جم",
"Product_EN": "Almarai Whipping Cream 200 gm",
"Product_Id": "00002224 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10086,
"name": "كبريت سويدى كبير 240 عود - موقوف",
"price": 5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "كبريت سويدى كبير 240 عود - موقوف",
"Product_EN": null,
"Product_Id": "00002234 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10087,
"name": "كبريت سويدى كبير 240 عود",
"price": 6,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 15,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 2,
"Category": "لا غذائى",
"Subcategory_code": 9,
"Subcategory": "اخرى",
"Product_AR": "كبريت سويدى كبير 240 عود",
"Product_EN": null,
"Product_Id": "00002236 ",
"custom_fields": [],
"has_media": false,
"market": null,
"media": []
},
{
"id": 10088,
"name": "كيت كات شوكولاتة 2 اصابع - موقوف",
"price": 2.5,
"discount_price": 0,
"description": null,
"capacity": 0,
"package_items_count": 0,
"unit": "",
"featured": false,
"deliverable": true,
"market_id": null,
"category_id": 7,
"created_at": "2021-11-01 19:46:01",
"updated_at": "2021-11-01 19:46:01",
"sells_count": 0,
"Category_Code": 1,
"Category": "غذائ